Oops - removed debug output from the project/new api.

Updated getProject to take userId as a parameter, rather than the registration number.
This commit is contained in:
jacob 2011-02-18 20:48:56 +00:00
parent 40e139b7a1
commit f785a71be2
3 changed files with 25 additions and 7 deletions

View File

@ -874,7 +874,6 @@ switch($request[0]) {
case 'add': case 'add':
// be logged in as a student in order to create a project // be logged in as a student in order to create a project
$user = user_load($_SESSION['users_id']); $user = user_load($_SESSION['users_id']);
$ret['userdat'] = $user;
if(!$user || !in_array('participant', $_SESSION['roles'])){ if(!$user || !in_array('participant', $_SESSION['roles'])){
$ret['status'] = 'error'; $ret['status'] = 'error';
$ret['error'] = "You must be logged in as a participant to create a project"; $ret['error'] = "You must be logged in as a participant to create a project";
@ -899,7 +898,7 @@ switch($request[0]) {
// 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
$ret['status'] = 'ok'; $ret['status'] = 'ok';
$ret['project'] = getProject($regId); $ret['project'] = getProject($_SESSION['users_id']);
break; break;
/* APIDOC: project/view /* APIDOC: project/view
@ -908,7 +907,7 @@ switch($request[0]) {
*/ */
case 'view': case 'view':
if($u=user_load($_SESSION['users_id'])) { if($u=user_load($_SESSION['users_id'])) {
$p=getProject(getRegistrationsId($_SESSION['users_id'])); $p=getProject($_SESSION['users_id']);
if(is_array($p)) { if(is_array($p)) {
$ret['status'] = 'ok'; $ret['status'] = 'ok';
$ret['project'] = $p; $ret['project'] = $p;

View File

@ -677,15 +677,32 @@ function getRegistrationsId($user){
return $result['registrations_id']; return $result['registrations_id'];
} }
function getProject($registrations_id){ function getProject($userId){
global $conference; global $conference;
$userid = intval($userId);
$result = mysql_fetch_assoc(mysql_query("SELECT registrations_id FROM users WHERE id = $userId"));
if(!is_array($result)){
return "register_participants.inc.php::getProject -> User not found";
}
$regId = $result['registrations_id'];
// FIXME - in the future, this should be able to handle a many-to-many // FIXME - in the future, this should be able to handle a many-to-many
// 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(
'id', 'projectdivisions_id', 'title', 'language', 'req_electricity', 'projects.id',
'registrations_id', 'req_table', 'req_special', 'summary' 'registrations.num',
'projects.projectdivisions_id',
'projects.title',
'projects.language',
'projects.req_electricity',
'projects.registrations_id',
'projects.req_table',
'projects.req_special',
'projects.summary'
)); ));
$q = mysql_query("SELECT $fields FROM projects WHERE registrations_id='$registrations_id' AND conferences_id='".$conference['id']."' LIMIT 1"); $q = mysql_query("SELECT $fields FROM projects
JOIN registrations ON registrations.id = projects.registrations_id
WHERE projects.registrations_id='$regId' AND projects.conferences_id='".$conference['id']."' LIMIT 1");
if(mysql_error()) { if(mysql_error()) {
$returnval = "register_participants.inc.php::getProject -> " . $returnval; $returnval = "register_participants.inc.php::getProject -> " . $returnval;
}else{ }else{

View File

@ -107,6 +107,8 @@ email address: <input type="text" name="email"></input><br/>
</form> </form>
<h2>Project related commands</h2> <h2>Project related commands</h2>
<h3>Start a new project</h3>
<a href="api/project/add">start a new project</a><br/>
<h3>Join a project</h3> <h3>Join a project</h3>
<form method = "post" action = "api/project/join"> <form method = "post" action = "api/project/join">
<label>project e-mail address:<input type="text" name="email"></input></label><br/> <label>project e-mail address:<input type="text" name="email"></input></label><br/>