2007-12-20 01:14:21 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the Science - ation project
* Science - ation Website : https :// science - ation . ca
*
* This file was part of the 'Science Fair In A Box' project
*
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
*
* 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 .
*/
2007-12-20 01:14:21 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( '../common.inc.php' );
require_once ( '../user.inc.php' );
require_once ( '../config_editor.inc.php' );
user_auth_required ( 'committee' , 'admin' );
if ( get_value_from_array ( $_GET , 'action' ) == 'launch' ) {
exec ( 'nice php tours_sa.php >/dev/null 2>&1 &' );
usleep ( 1000000 ); // 1 second to allow the judges_sa to update the % status to 0% otherwise the status page will think its not running if it gets there too soon
header ( 'Location: tours_sa_status.php' );
2007-12-20 01:14:21 +00:00
exit ;
2025-01-29 03:30:48 +00:00
}
2007-12-20 08:20:29 +00:00
2025-01-29 03:30:48 +00:00
$action = config_editor_handle_actions ( 'Tour Assigner' , $config [ 'FAIRYEAR' ], 'var' );
if ( $action == 'update' ) {
header ( 'Location: tours_sa_config.php' );
exit ;
}
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
send_header ( 'Automatic Tour Assignment Configuration' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Tours' => 'admin/tours.php' ));
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
config_editor ( 'Tour Assigner' , $config [ 'FAIRYEAR' ], 'var' , $_SERVER [ 'PHP_SELF' ]);
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
echo '<hr />' ;
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
function tours_check_tours ()
{
global $config ;
2025-01-06 21:21:11 -05:00
global $pdo ;
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM tours WHERE year=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2024-12-08 02:42:00 -05:00
return $q -> rowCount ();
2025-01-29 03:30:48 +00:00
}
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
function tours_check_students ()
{
global $config ;
2025-01-06 21:21:11 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT students.id
2007-12-20 01:14:21 +00:00
FROM students
LEFT JOIN tours_choice ON ( tours_choice . students_id = students . id )
LEFT JOIN registrations ON ( registrations . id = students . registrations_id )
WHERE
2025-02-09 17:24:37 +00:00
students . year = ?
AND tours_choice . year = ?
2007-12-20 01:14:21 +00:00
AND registrations . status = 'complete'
ORDER BY
students . id , tours_choice . rank
" );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ]]);
2024-12-08 02:42:00 -05:00
return $q -> rowCount ();
2025-01-29 03:30:48 +00:00
}
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'reset' ) {
$stmt = $pdo -> prepare ( " UPDATE config SET `val`='-1' WHERE `var`='tours_assigner_percent' AND `year`=0 " );
2024-12-08 02:42:00 -05:00
$stmt -> execute ();
2025-01-29 03:30:48 +00:00
$config [ 'tours_assigner_percent' ] == '-1' ;
echo happy ( i18n ( 'Judge assigner status forcibly reset' ));
}
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'tours_assigner_percent' ] == '-1' ) {
$ok = 1 ;
2007-12-20 01:14:21 +00:00
$tours = tours_check_tours ();
2025-01-29 03:30:48 +00:00
if ( $tours > 0 ) {
echo happy ( i18n ( 'There are %1 tours defined, good' , array ( $tours )));
2007-12-20 01:14:21 +00:00
} else {
2025-01-29 03:30:48 +00:00
echo error ( i18n ( 'There are no tours defined.' ));
2007-12-20 01:14:21 +00:00
$ok = 0 ;
}
$x = tours_check_students ();
2025-01-29 03:30:48 +00:00
if ( $x > 0 ) {
echo happy ( i18n ( 'There are %1 student-tour rankings, good' , array ( $x )));
2007-12-20 01:14:21 +00:00
} else {
2025-01-29 03:30:48 +00:00
echo error ( i18n ( 'There are no student-tour rankings.' ));
2007-12-20 01:14:21 +00:00
$ok = 0 ;
}
2025-01-29 03:30:48 +00:00
if ( $ok ) {
2007-12-20 01:14:21 +00:00
echo i18n ( " Everything looks in order, we're ready to automatically
assign the students to the tours . Click link below to start the process .
Please be patient as it may take several minutes find a good solution . " );
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<br />' ;
2007-12-20 01:14:21 +00:00
2025-01-29 03:30:48 +00:00
echo '<a href="tours_sa_config.php?action=launch">' . i18n ( 'Automatically Assign Students to Tours' ) . '</a>' ;
2007-12-20 01:14:21 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
echo '<br />' ;
echo '<b>' ;
2025-02-22 02:29:20 +00:00
echo i18n ( 'Automatic assignments are currently in progress' );
2025-01-29 03:30:48 +00:00
echo '</b>' ;
echo '<br />' ;
echo '<br />' ;
echo '<a href="tours_sa_status.php">' . i18n ( 'Click here to check the tour assignment progress' ) . '</a>' ;
echo '<br />' ;
echo '<br />' ;
echo '<br />' ;
echo i18n ( 'If it is not running (and you are 100% sure that it is not!) click the link below to reset the status' );
echo '<br />' ;
echo '<a href="tours_sa_config.php?action=reset">' . i18n ( 'Reset automatic tour assignment status' ) . '</a>' ;;
}
echo '<br />' ;
echo '<br />' ;
echo '<br />' ;
send_footer ();
2007-12-20 01:14:21 +00:00
?>