0,'location'=>'c_jteam_edit.php')); exit(); case 'jdel': /* Remove a judge from a judging team */ $jteam_id = (int)$_POST['jteam_id']; $j_uid = (int)$_POST['uid']; $jteam = jteam_load($mysqli, $jteam_id); /* Need to fix this, deleting timeslot assignments can leave holds in the timeslot, we need a way to automatically fix them , * what we need is an incremental way to build a judge timeslot schedule that doesn't depend on running the full * timeslot scheduler */ // $mysqli->query("DELETE FROM timeslot_assignments WHERE judging_team_id='$jteam_id' AND judge_id='$j_uid'"); $new_uids = array(); foreach($jteam['user_ids'] as $uid) { if($uid == $j_uid) continue; $new_uids[] = $uid; } $jteam['user_ids'] = $new_uids; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>$jteam['round'])); exit(); case 'jadd': /* Add a judge to a jduging team */ $jteam_id = (int)$_POST['jteam_id']; $j_uid = (int)$_POST['uid']; $jteam = jteam_load($mysqli, $jteam_id); $jteam['user_ids'][] = $j_uid; jteam_save($mysqli, $jteam); /* Pass back the jteam round so the JS can setup the proper links * and mvoe table elements around from the right unused judge list */ form_ajax_response(array('status'=>$jteam['round'])); exit(); case 'jautoadd': $projects = projects_load_all($mysqli); /* Add a best-match single free judge to a judging team */ $jteam_id = (int)$_POST['jteam_id']; $jteam = jteam_load($mysqli, $jteam_id); $j_uid = false; /* Build a list of divs for this jteam */ $jteam_divs = array(); foreach($jteam['project_ids'] as $pid) { $p = &$projects[$pid]; $pref = $p['isef_id']; if($isef_divs[$pref]['parent'] != false) $div = $isef_divs[$pref]['parent']; else $div = $isef_divs[$pref]['div']; if(!array_key_exists($div, $jteam_divs)) { $jteam_divs[$div] = 0; } $jteam_divs[$div] += 1; } $best_matches = -1; $best_judge_id = 0; foreach($judges as $uid=>&$j) { if(!in_array($jteam['round'], $j['j_rounds'])) continue; if(!$j['attending'] || !$j['j_complete'] || !$j['enabled']) continue; /* Make sure this judge isn't assigned to a slot already */ $q = $mysqli->query("SELECT * FROM judging_teams WHERE FIND_IN_SET('$uid',`user_ids`)>0 AND round='{$jteam['round']}'"); if($q->num_rows > 0) { /* Judge is already assigned in this round */ continue; } /* This judge is free in this round, see how their expertise matches */ $matches = 0; foreach($j['j_div_pref'] as $pref) { if($pref > 0) { if($isef_divs[$pref]['parent'] != false) $d = $isef_divs[$pref]['parent']; else $d = $isef_divs[$pref]['div']; if(array_key_exists($d, $jteam_divs) && $jteam_divs[$d] > 0) { $matches += 1; } } } if($matches > $best_matches) { $best_matches = $matches; $best_judge_id = $uid; } } if($best_matches > -1) { $jteam['user_ids'][] = $best_judge_id; jteam_save($mysqli, $jteam); } form_ajax_response(array('status'=>$jteam['round'], 'info'=>$best_judge_id)); exit(); case 'pdel': /* Remove a project from a judging team */ $jteam_id = (int)$_POST['jteam_id']; $del_pid = (int)$_POST['pid']; $jteam = jteam_load($mysqli, $jteam_id); $mysqli->query("DELETE FROM timeslot_assignments WHERE judging_team_id='$jteam_id' AND pid='$del_pid'"); $new_pids = array(); foreach($jteam['project_ids'] as $pid) { if($pid == $del_pid) continue; $new_pids[] = $pid; } $jteam['project_ids'] = $new_pids; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>0)); exit(); case 'padd': /* Add a project to a jduging team */ $jteam_id = (int)$_POST['jteam_id']; $pid = (int)$_POST['pid']; $jteam = jteam_load($mysqli, $jteam_id); $jteam['project_ids'][] = $pid; jteam_save($mysqli, $jteam); form_ajax_response(array('status'=>0)); exit(); } $projects = projects_load_all($mysqli, $config['year']); $jteams = jteams_load_all($mysqli, $config['year']); $rounds = timeslots_load_rounds($mysqli); $page_id = 'c_jteam_list'; $help = '
ISEF divisions:
Project | Title | Cat | Div | Lang |
INVALID PROJECT Project ID =$pid?> |