allow project/add and project/mentor/add to pass in an corresponding input array, and save that into the newly created project/mentor

This commit is contained in:
james 2011-02-28 19:00:24 +00:00
parent 2eeff8d688
commit 69bc561055
2 changed files with 57 additions and 16 deletions

66
api.php
View File

@ -919,7 +919,8 @@ switch($request[0]) {
*/ */
switch($request[1]){ switch($request[1]){
/* APIDOC: project/add /* APIDOC: project/add
description(add a project) post(project array optional)
description(add a project. Will create a blank project if there's no input, otherwise, creates a project based on the project array passed in)
return(project array) return(project array)
*/ */
case 'add': case 'add':
@ -940,18 +941,40 @@ switch($request[0]) {
} }
// now we add a project to that registration // now we add a project to that registration
$project = addProject($regdat['registrations_id']); $newproject = addProject($regdat['registrations_id']);
if(!is_array($project)){ if(!is_array($newproject)){
$ret['status'] = 'error'; $ret['status'] = 'error';
$ret['error'] = $project; $ret['error'] = $newproject;
break; break;
} }
// if we got this far, then all's good and we can return the project data // if we got this far, then all's good and we can return the project data
$_SESSION['registration_id'] = $regdat['registrations_id']; $_SESSION['registration_id'] = $regdat['registrations_id'];
$_SESSION['registration_number'] = $regdat['registration_number']; $_SESSION['registration_number'] = $regdat['registration_number'];
$ret['status'] = 'ok';
$ret['project'] = getProject($_SESSION['users_id']); if($_POST['project']) {
$project=json_decode($_POST['project'],true);
if(!is_array($project)) {
$ret['status']="error";
$ret['error']="project needs to be a project array";
break;
}
$project['id']=$newproject['id'];
$message = saveProjectData($project);
if($message == 'success'){
$ret['status'] = 'ok';
$ret['project'] = getProject($_SESSION['users_id']);
}else{
$ret['status'] = 'error';
$ret['error'] = $message;
}
}
else {
$ret['status'] = 'ok';
$ret['project'] = getProject($_SESSION['users_id']);
}
break; break;
/* APIDOC: project/view /* APIDOC: project/view
@ -1045,7 +1068,8 @@ switch($request[0]) {
switch($request[2]){ switch($request[2]){
/* APIDOC: project/mentor/add /* APIDOC: project/mentor/add
description(add a project mentor to the current project) description(add a project mentor to the current project)
return(mentor array) post(mentor array optional)
return(mentor array (if none passed in, otherwise nothing))
*/ */
case 'add': case 'add':
if(!array_key_exists('registration_id', $_SESSION)){ if(!array_key_exists('registration_id', $_SESSION)){
@ -1055,23 +1079,35 @@ switch($request[0]) {
} }
$result = addMentor($_SESSION['registration_id']); $result = addMentor($_SESSION['registration_id']);
if(is_array($result)){ if($_POST['mentor']) {
$ret['status'] = 'ok'; $md=json_decode($_POST['mentor']);
$ret['mentor'] = $result; $md['id']=$result['id'];
}else{ $result = saveMentorData($md);
$ret['status'] = 'error'; if($result == 'ok'){
$ret['error'] = $result; $ret['status'] = 'ok';
}else{
$ret['status'] = 'error';
$ret['error'] = $result;
}
} else {
if(is_array($result)){
$ret['status'] = 'ok';
$ret['mentor'] = $result;
}else{
$ret['status'] = 'error';
$ret['error'] = $result;
}
} }
break; break;
/* APIDOC: project/mentor/edit /* APIDOC: project/mentor/edit
post(mentor object) post(mentor array)
description(edit a project mentor) description(edit a project mentor)
*/ */
case 'edit': case 'edit':
if(!array_key_exists('mentor', $_POST)){ if(!array_key_exists('mentor', $_POST)){
$ret['status'] = "error"; $ret['status'] = "error";
$ret['error'] = "mentor object parameter required"; $ret['error'] = "mentor array parameter required";
break; break;
} }
$result = saveMentorData(json_decode($_POST['mentor'])); $result = saveMentorData(json_decode($_POST['mentor']));

View File

@ -245,6 +245,10 @@ This section is for project/registration related functions **/
function saveProjectData($data){ function saveProjectData($data){
global $conference, $config; global $conference, $config;
//inconsistency here, we give the objecet to them with an "id" but we expect a "project_id" back
if($data['id'] && !$data['project_id']) $data['project_id']=$data['id'];
$requiredFields = array('project_id', 'title', 'projectdivisions_id', 'language'); $requiredFields = array('project_id', 'title', 'projectdivisions_id', 'language');
if($config['participant_short_title_enable'] == 'yes') if($config['participant_short_title_enable'] == 'yes')
$requiredFields[] = 'shorttitle'; $requiredFields[] = 'shorttitle';
@ -423,7 +427,8 @@ function getProject($userId){
// relationship in projects to registrations (so remove that LIMIT 1) // relationship in projects to registrations (so remove that LIMIT 1)
$fields = implode(',', array( $fields = implode(',', array(
'projects.id', 'projects.id',
'registrations.num', 'projects.id AS project_id',
'registrations.num AS registration_number',
'projects.projectdivisions_id', 'projects.projectdivisions_id',
'projects.title', 'projects.title',
'projects.language', 'projects.language',