query("SELECT uid,firstname,lastname,username FROM users WHERE `s_pid`='{$p['pid']}'"); $students_in_project = $q_in_project->num_rows; $students_missing = $p['num_students'] - $students_in_project; $q_sent = $mysqli->query("SELECT * FROM partner_requests WHERE `from_uid`='{$u['uid']}'"); $invites_sent = $q_sent->num_rows; $invite_error = ""; $need_sent_reload = false; $need_missing_reload = false; switch($action) { case 'save': if($closed) exit(); post_int($p['num_students'], 'num_students'); /* How many students are actually attached to the project? */ if($students_in_project > $p['num_students']) { $p['num_students'] = $students_in_project; } project_save($mysqli, $p); incomplete_check($mysqli, $ret, $u, $page_id, true); form_ajax_response(array('status'=>0, 'missing'=>$ret, 'location'=>'s_partner.php')); exit(); case 'invite': if($closed) exit(); $un = $mysqli->real_escape_string($_POST['un']); $invite_error = 'Username not found'; if(strlen($un) > 0) { /* Find this user */ /* To send a request the user must have a project with num_students set to zero (or NULL), or * must have num_students set > 1 with fewer students attached tot he project and no * partner requests sent at all (let's avoid creating accept loops) */ $q = $mysqli->query("SELECT uid FROM users WHERE username='$un' AND year='{$config['year']}' AND FIND_IN_SET('student',`roles`)>0 AND `enabled`='1' AND `new`='0'" ); $request_ok = true; if($q->num_rows == 1) { $r = $q->fetch_assoc(); $invite_uid = (int)$r['uid']; /* Make sure it's not ourself */ if($invite_uid == $u['uid']) { /* Can't invite self to project */ form_ajax_response_error(0, "Congratulations, you just invited yourself to the project. I took the liberty of accepting your invitation from you on your behalf. Perhaps you should also invite someone else to the project."); exit(); } /* Found, is there still room in this project (the user isn't reloading the post)? */ if(($students_missing - $invites_sent) > 0) { /* Load the remote user and get the remote project */ $u_partner = user_load($mysqli, $invite_uid); $p_partner = project_load($mysqli, $u_partner['s_pid']); if($p_partner['num_students'] == 1) { $request_ok = false; $invite_error = "Unable to send partner request because that user has specified there is only one student in his/her project. If that really is your partner, have them go into their Partner settings, and change the number of students to 2."; } if($request_ok && $p_partner['num_students'] > 1) { /* Make sure the project isn't full */ $q1 = $mysqli->query("SELECT uid FROM users WHERE `s_pid`='{$p_partner['pid']}'"); if($q1->num_rows != 1) { $request_ok = false; $invite_error = "Unable to send partner request because that user is already in a project with more than one student. Have the user send you a partner request."; } } if($request_ok) { /* Check that the user has no pending sent requests */ $q1 = $mysqli->query("SELECT id FROM partner_requests WHERE `from_uid`='{$u_partner['uid']}'"); if($q1->num_rows != 0) { $request_ok = false; $invite_error = "Unable to send partner request because that user has pending partner requests already. Have the user send you a partner request or cancel the requests they have sent."; } } if($request_ok == true) { $mysqli->real_query("INSERT INTO partner_requests (`from_uid`,`to_uid`) VALUES ('{$u['uid']}', '{$r['uid']}')"); form_ajax_response(array('status'=>0, 'location'=>'s_partner.php')); exit(); /* Redo invites query */ // $need_sent_reload = true; } } } else { $invite_error = "Username not found"; $request_ok = false; } } incomplete_check($mysqli, $ret, $u, $page_id, true); form_ajax_response(array('status'=>0, 'error'=>$invite_error, 'missing'=>$ret)); exit(); case 'cancel': if($closed) exit(); $id = (int)$_POST['id']; print("Cancel id $id"); /* Add the from_uid to the reqest so users can't delete any ID */ $mysqli->query("DELETE FROM partner_requests WHERE id='$id' AND from_uid='{$u['uid']}'"); /* Reload the partners */ $need_sent_reload = true; break; case 'remove': if($closed) exit(); $uid = (int)$_POST['uid']; $new_pid = project_remove_student($mysqli, $p, $uid); if($new_pid === NULL) { /* Remove unsuccessful */ break; } $need_missing_reload = true; if($uid == $u['uid']) { /* Remove us from the project - reload our new project into $p and update our copy of the * pid in $u so we don't have to reload the entire user from SQL */ $p = project_load($mysqli, $new_pid); $u['s_pid'] = $new_pid; } break; case 'accept_request': if($closed) exit(); $id = (int)$_POST['id']; $q = $mysqli->query("SELECT from_uid,to_uid FROM partner_requests WHERE `id`='$id' AND `to_uid`='{$u['uid']}'"); if($q->num_rows != 1) { print("Error 1012: $id\n"); exit(); } $r = $q->fetch_assoc(); $from_uid = $r['from_uid']; $u_partner = user_load($mysqli, $from_uid); $new_pid = $u_partner['s_pid']; $p_partner = project_load($mysqli, $new_pid); $old_pid = $u['s_pid']; $u['s_pid'] = $new_pid; user_save($mysqli, $u); /* Set to the new project */ $p = $p_partner; $mysqli->real_query("DELETE FROM projects WHERE pid='$old_pid'"); // $mysqli->real_query("DELETE FROM mentors WHERE pid='$old_pid'"); $mysqli->real_query("DELETE FROM partner_requests WHERE id='$id' AND to_uid='{$u['uid']}'"); $need_missing_reload = true; /* Update incomplete status of everything related to the project */ $fields = array(); incomplete_check($mysqli, $fields, $u, false, true); break; case 'reject_request': if($closed) exit(); $id = (int)$_POST['id']; $mysqli->real_query("DELETE FROM partner_requests WHERE id='$id' AND to_uid='{$u['uid']}'"); break; } /* Reload the number of invites sent */ if($need_sent_reload) { $q_sent = $mysqli->query("SELECT * FROM partner_requests WHERE `from_uid`='{$u['uid']}'"); $invites_sent = $q_sent->num_rows; } /* Reload the number of students and missing students in the project */ if($need_missing_reload) { $q_in_project = $mysqli->query("SELECT uid,firstname,lastname,username FROM users WHERE `s_pid`='{$p['pid']}'"); $students_in_project = $q_in_project->num_rows; $students_missing = $p['num_students'] - $students_in_project; } $help = '
You have a partner request from =$from_u['name']?> (Username: =$from_u['username']?>).
If you accept this request, the same project will be linked to both your accounts. All information you have entered in the Project Info, Project Ethics, Project Safety, Mentor Info, and Awards pages will be lost and replaced with the information from =$from_u['name']?>.
If you have already entered all this information, you should reject this request and send a parter request to =$from_u['name']?> (Username: =$from_u['username']?>).
If you reject this request, nothing will happen except that the request will be deleted.
Enter the Number of Students who worked on this project.
0) { ?>Enter your partner's username to invite them to this project. Their account must already exist for this to work. If your partner hasn't created an account yet, have them do that first.
0) { ?>You have invited these student(s) to your project. You may cancel invitations here if they were sent to the wrong person.
fetch_assoc()) { $i++; $id = $r['id']; $to_uid = $r['to_uid']; $this_u = user_load($mysqli, $to_uid); $this_form_id = $page_id.'_cancel_'.$i; $button_id = "cancel_submit_$i"; $v = "{$this_u['name']}