Implement project creation

ToDo: Enable uploading of configuration files and 3d models
This commit is contained in:
Karsten Heiken
2011-07-28 20:01:31 +02:00
parent a3a5225143
commit 50a551da7a

View File

@@ -11,6 +11,7 @@ class Projects extends CI_Controller {
public function __construct() { public function __construct() {
parent::__construct(); parent::__construct();
$this->load->model('project'); $this->load->model('project');
$this->load->model('trial');
$this->load->helper('tree'); $this->load->helper('tree');
// load language file // load language file
@@ -18,68 +19,79 @@ class Projects extends CI_Controller {
} }
/** /**
* Lists all projects the user has access to. * Create a new project.
*/ */
public function getAvailable() { public function create() {
$path = $this->input->get_post('node'); $this->load->library('form_validation');
$this->form_validation->set_error_delimiters('<span class="error">', '</span>');
switch($path) { $config = array(
case '/projects/own':
$projects = $this->project->getOwn();
array_walk($projects, 'set_tree_icons', base_url() . 'assets/images/icons/document.png');
break;
case '/projects/shared':
$projects = $this->project->getShared();
array_walk($projects, 'set_tree_icons', base_url() . 'assets/images/icons/document.png');
break;
case '/projects/public':
$projects = $this->project->getPublic();
array_walk($projects, 'set_tree_icons', base_url() . 'assets/images/icons/document.png');
break;
default:
$projects = array(
array( array(
'id' => '/projects/own', 'field' => 'name',
'cls' => 'folder', 'label' => 'Projektname',
'text' => lang('projects_own'), 'rules' => 'trim|required|min_length[3]|max_length[100]|xss_clean',
'icon' => base_url() . 'assets/images/icons/folder.png',),
array(
'id' => '/projects/shared',
'cls' => 'leaf',
'text' => lang('projects_shared'),
'icon' => base_url() . 'assets/images/icons/folder-share.png',
), ),
array( array(
'id' => '/projects/public', 'field' => 'description',
'cls' => 'folder', 'label' => 'Beschreibung',
'text' => lang('projects_public'), 'rules' => 'trim|required|xss_clean',
'icon' => base_url() . 'assets/images/icons/folder-network.png', ),
array(
'field' => 'defaultmodel',
'label' => '3D-Modell',
),
array(
'field' => 'defaultconfig',
'label' => 'Standard-Konfiguration',
), ),
); );
$this->form_validation->set_rules($config);
if ($this->form_validation->run() == FALSE)
{
$this->load->view('project/new');
}
else
{
// TODO: handle file upload
$data = array(
'name' => $this->input->post('name'),
'description' => $this->input->post('description'),
'defaultmodel' => "todo",
'defaultconfig' => "todo",
);
$result = $this->project->create($data);
if($result)
redirect('/projects/detail/' . $result, 'refresh');
else {
$tpl['error'][] = "Das Projekt konnte nicht gespeichert werden.";
$this->load->view('project/new', $tpl);
}
} }
$this->output
->set_content_type('application/json')
->set_output(json_encode($projects));
// ->set_output(json_encode(array('count' => $count, 'projects' => $projects)));
} }
public function detail($project_id) { public function index() {
$project = $this->project->get($id); $projects = new Project();
$this->output $projects->where('id', 'c5ca461679712e6e6f24784a79b5511199da1a35')->get();
->set_content_type('application/json')
->set_output(json_encode($project)); //$tpl['notice'][] = print_r($projects->all, true);
$tpl['projects'] = $projects->all;
$this->load->view('project/list', $tpl);
} }
/** public function detail($prj_id) {
* Search for a specific project and return a list of possible results. $project = $this->project->getById($prj_id);
* $trials = $this->trial->getByProjectId($prj_id);
* @param type $needle The needle to look for in the haystack. foreach($trials as $trial) {
*/ $jobsDone = $this->job->getJobsByTrial($trial_id, $status='done');
public function search($needle) { }
$results = $this->project->search($needle); $tpl['project'] = $project;
$this->output $tpl['trials'] = $trials;
->set_content_type('application/json') $this->load->view('project/detail', $tpl);
->set_output(json_encode(array('count' => count($results), 'results' => $results)));
} }
} }