* Copyright (C) 2005 James Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php', 'Judges' => 'admin/judges.php')); ?> 0) { // first check if this team exists. $q = $pdo->prepare("SELECT id,name FROM judges_teams WHERE num=? AND year=?"); $q->execute([$_POST['team_num'],$config['FAIRYEAR']]); if ($q->rowCount()) { $r = $q->fetch(PDO::FETCH_OBJ); $team_id = $r->id; $team_name = $r->name; // if the team is empty, we'll add the first person as the captain $team = getJudgingTeam($team_id); if (count(get_value_from_array($team, 'members', []))) $captain = 'no'; else $captain = 'yes'; } $added = 0; foreach ($_POST['judgelist'] AS $selectedjudge) { // before we insert them, we need to make sure they dont already belong to this team. We can not have the same judge assigned to the same team multiple times. $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE users_id=? AND judges_teams_id=?"); $q->execute([$selectedjudge,$team_id]); if ($q->rowCount()) { echo notice(i18n('Judge (%1) already belongs to judging team: %2', array($selectedjudge, $team_name))); } else { // lets make the first one we add a captain, the rest, non-captains :) $stmt = $pdo->prepare("INSERT INTO judges_teams_link (users_id,judges_teams_id,captain,year) VALUES (?,?,?,?)"); $stmt->execute([$selectedjudge,$team_id,$captain,$config['FAIRYEAR']]); $added++; } // if this is alreayd no, then who cares, but if its the first one that is going into the new team, then // captain will be yes, and we only want the first one assigned to a new team to be the captain // sno now we can set this back to no $captain = 'no'; } if ($added == 1) $j = i18n('judge'); else $j = i18n('judges'); echo happy(i18n('%1 %2 added to team #%3 (%4)', array($added, $j, $_POST['team_num'], $team_name))); } if (get_value_from_array($_GET, 'action') == 'del' && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id') && get_value_from_array($_GET, 'users_id')) { $stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE users_id=? AND judges_teams_id=? AND year=?"); $stmt->execute([$_GET['users_id'],$_GET['team_id'],$config['FAIRYEAR']]); echo happy(i18n('Removed judge from team #%1 (%2)', array($_GET['team_num'], $_GET['team_name']))); // if there is still members left in the team, make sure we have a captain still $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE judges_teams_id=? AND year=?"); $q->execute([$_GET['team_id'],$config['FAIRYEAR']]); if ($q->rowCount()) { // make sure the team still has a captain! // FIXME: this might best come from the "i am willing to be a team captain" question under the judges profile $gotcaptain = false; $first = true; while ($r = $q->fetch(PDO::FETCH_OBJ)) { if ($first) { $firstjudge = $r->users_id; $first = false; } if ($r->captain == 'yes') { $gotcaptain = true; break; } } if (!$gotcaptain) { // make the first judge the captain $stmt = $pdo->prepare("UPDATE judges_teams_link SET captain='yes' WHERE judges_teams_id=? AND users_id=? AND year=?"); $stmt->execute([$_GET['team_id'],$firstjudge,$config['FAIRYEAR']]); echo notice(i18n('Team captain was removed. A new team captain has been automatically assigned')); } } } if (get_value_from_array($_GET, 'action') == 'empty' && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id')) { $stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE judges_teams_id=? AND year=?"); $stmt->execute([$_GET['team_id'],$config['FAIRYEAR']]); echo happy(i18n('Emptied all judges from team #%1 (%2)', array($_GET['team_num'], $_GET['team_name']))); } if (get_value_from_array($_POST, 'action') == 'saveteamnames') { if (count($_POST['team_names'])) { foreach ($_POST['team_names'] AS $team_id => $team_name) { $stmt = $pdo->prepare("UPDATE judges_teams SET name=? WHERE id=?"); $stmt->execute([stripslashes($team_name),$team_id]); } echo happy(i18n('Team names successfully saved')); } } if (get_value_from_array($_GET, 'action') == 'addcaptain') { // teams can have as many captains as they want, so just add it. $stmt = $pdo->prepare("UPDATE judges_teams_link SET captain='yes' WHERE judges_teams_id=? AND users_id=?"); $stmt->execute([ $_GET['team_id'],$_GET['judge_id']]); echo happy(i18n('Team captain assigned')); } if (get_value_from_array($_GET, 'action') == 'removecaptain') { // teams must always have at least one captain, so if we only have one, and we are trying to remove it, dont let them! $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE captain='yes' AND judges_teams_id=?"); $q->execute([$_GET['team_id']]); if ($q->rowCount() < 2) { echo error(i18n('A judge team must always have at least one captain')); } else { $pdo->prepare("UPDATE judges_teams_link SET captain='no' WHERE judges_teams_id=? AND users_id=?"); $pdo->execute([$_GET['team_id'],$_GET['judge_id']]); echo happy(i18n('Team captain removed')); } } if (get_value_from_array($_GET, 'action') == 'autoassignspecial') { /* Load all the judges (judge_complete=yes, deleted=no, year=fairyear) */ $judgelist = judges_load_all(); /* Load all the teams */ $teams = array(); $q = $pdo->prepare("SELECT * FROM judges_teams WHERE year=?"); $q->execute([$config['FAIRYEAR']]); while ($i = $q->fetch(PDO::FETCH_ASSOC)) { $teams[$i['id']] = $i; } /* And the links */ $links = array(); $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE year=?"); $q->execute([$config['FAIRYEAR']]); while ($i = $q->fetch(PDO::FETCH_ASSOC)) { $judgelist[$i['users_id']]['teams_links'][] = $i; } $jlist = array(); /* Remove all judges that have a link */ foreach ($judgelist as $j) { if (count($j['teams_links']) == 0 && $j['special_award_only'] == 'yes') $jlist[] = $j['id']; } echo 'We have ' . count($jlist) . ' special awards judges to assign'; foreach ($jlist AS $jid) { $j = $judgelist[$jid]; if (is_array($j['special_award_selected']) && count($j['special_award_selected'])) { // assing them to ALL teams for ALL awards foreach ($j['special_award_selected'] AS $awardid) { echo "Looking for a team for award $awardid
"; // find the award id linked to a team $q = $pdo->prepare("SELECT * FROM judges_teams_awards_link WHERE award_awards_id=? AND year=?"); $q->execute([$awardid,$config['FAIRYEAR']]); if ($q->rowCount()) { while ($r = $q->fetch(PDO::FETCH_OBJ)) { $stmt = $pdo->prepare("INSERT INTO judges_teams_link (users_id,judges_teams_id,captain,year) VALUES (?,?,'yes',?)"); $stmt->execute([$jid,$r->judges_teams_id,$config['FAIRYEAR']]); echo happy(i18n('%1 %2 to their special award(s) team(s)', array($j['firstname'], $j['lastname']))); } } else { echo error(i18n('%1 %2 not assigned - No team found that is judging award id %1', array($awardid))); } } } else { echo error(i18n('%1 %2 has indicated special awards only, but didnt selected any awards', array($j['firstname'], $j['lastname']))); } } } if (!$_SESSION['viewstate']['judges_teams_list_show']) $_SESSION['viewstate']['judges_teams_list_show'] = 'unassigned'; // now update the judges_teams_list_show viewstate if (get_value_from_array($_GET, 'judges_teams_list_show')) $_SESSION['viewstate']['judges_teams_list_show'] = $_GET['judges_teams_list_show']; echo '
'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
' . i18n('Judges List'); echo '
'; echo ''; echo '
' . i18n('Judge Teams') . '
'; echo ''; if ($_SESSION['viewstate']['judges_teams_list_show'] == 'all') { echo ''; echo ''; } else { echo ''; echo ''; } echo '
' . i18n('show unassigned') . '' . i18n('show all') . '' . i18n('show unassigned') . '' . i18n('show all') . '
'; /* Load all the judges (judge_complete=yes, deleted=no, year=fairyear) */ $judgelist = judges_load_all(); /* Load all the teams */ $teams = array(); $q = $pdo->prepare("SELECT * FROM judges_teams WHERE year=?"); $q->execute([$config['FAIRYEAR']]); while ($i = $q->fetch(PDO::FETCH_ASSOC)) { $teams[$i['id']] = $i; } /* And the links */ $links = array(); $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE year=?"); $q->execute([$config['FAIRYEAR']]); while ($i = $q->fetch(PDO::FETCH_ASSOC)) { $judgelist[$i['users_id']]['teams_links'][] = $i; } $jlist = array(); if ($_SESSION['viewstate']['judges_teams_list_show'] == 'unassigned') { /* Remove all judges that have a link */ foreach ($judgelist as $j) { if (count(get_value_from_array($j, 'teams_links', [])) == 0) $jlist[] = $j['id']; } } else { $jlist = array_keys($judgelist); } echo '
'; echo i18n('Listing %1 judges', array(count($jlist))); echo '
'; echo '
'; show_pdo_errors_if_any($pdo); echo ''; echo '
'; echo "Auto-Assign Special Awards Judges to Special Awards Teams\n"; echo '
'; $teams = getJudgingTeams(); foreach ($teams AS $team) { echo '
'; echo ''; echo '
'; echo ''; echo ''; echo "\n"; echo '\n"; echo ''; if (count(get_value_from_array($team, 'members', []))) { foreach ($team['members'] AS $member) { $j = &$judgelist[$member['id']]; echo ''; } echo ''; } else { echo ''; } echo '
#' . $team['num'] . ': '; echo $team['name']; echo "
'; foreach ($team['rounds'] as $ts) { echo "{$ts['name']}: " . format_time($ts['starttime']) . ' - ' . format_time($ts['endtime']) . '
'; } echo '
'; /* * if($team['num']=="89") { * echo "
";
			 * 	print_r($team);
			 * 	print_r($j);
			 * 	echo "
"; * } */ $langerr = false; $judgeerr = false; foreach ($team['languages'] AS $teamlang) { if (is_array($j['languages'])) { if (!in_array($teamlang, $j['languages'])) { $langerr = true; break; } } else { $langerr = true; } } if (!$j['id']) { $judgeerr = true; } echo ''; echo '
'; if ($langerr || $judgeerr) echo ''; if ($judgeerr) { echo 'ERROR: this judge is assigned to the team, but they are not an active/complete judge!
'; } if ($member['captain'] == 'yes') { echo ''; echo ''; echo ' '; } else { echo ''; echo ''; echo ' '; } echo ''; echo $member['firstname'] . ' ' . $member['lastname']; if (is_array($j['languages'])) $l = is_array($j['languages']) ? join(' ', $j['languages']) : ''; echo " ($l)\n"; if ($langerr || $judgeerr) echo "
\n"; echo '
'; echo ''; echo ' ' . i18n('Empty All Members') . ' '; echo ''; echo ''; echo '
'; echo error(i18n('Team has no members'), 'inline'); echo '
'; echo '
'; } echo '
'; echo '
'; echo '
'; echo ''; echo '
'; send_footer(); ?>