2009-09-09 00:26:12 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
* Copyright ( C ) 2009 David Grant < dave @ lightbox . org >
*
* 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 .
*/
2009-09-09 00:26:12 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
$preferencechoices = array (
- 2 => 'Very Low' ,
- 1 => 'Low' ,
0 => 'Indifferent' ,
1 => 'Medium' ,
2 => 'High'
2009-09-09 00:26:12 +00:00
);
function judge_status_expertise ( & $u )
{
2024-12-19 22:29:06 -05:00
global $config , $pdo ;
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
/*
* If the judging special awards are active , and the judge has
* selected " I am a special awards judge " , then disable
* expertise checking
*/
if ( $config [ 'judges_specialaward_only_enable' ] == 'yes' ) {
if ( $u [ 'special_award_only' ] == 'yes' )
2009-09-09 00:26:12 +00:00
return 'complete' ;
}
/* Check to see if they have ranked all project age categories, and all divisions */
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT COUNT(id) AS num FROM projectcategories WHERE year=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
$numcats = $r -> num ;
if ( $numcats != count ( get_value_from_array ( $u , 'cat_prefs' , [])))
return 'incomplete' ;
2009-09-09 00:26:12 +00:00
2025-02-03 03:04:15 +00:00
$q = $pdo -> prepare ( " SELECT COUNT(id) AS num FROM projectdivisions WHERE year=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
$numdivisions = $r -> num ;
if ( $numdivisions != count ( $u [ 'div_prefs' ]))
return 'incomplete' ;
2009-09-09 00:26:12 +00:00
return 'complete' ;
}
function judge_status_other ( & $u )
{
global $config ;
/* They must select a language to judge in */
2025-01-29 03:30:48 +00:00
if ( count ( $u [ 'languages' ]) < 1 )
return 'incomplete' ;
2013-03-05 22:10:50 +00:00
return judge_status_questions ( $u );
2009-09-09 00:26:12 +00:00
}
2025-01-29 03:30:48 +00:00
function judge_status_questions ( $u )
{
/*
* Logic :
* - count the number of required questions and get their id ' s .
* - count the questions answered by the user which match those id ' s
* - if those counts are not the same , then the user has not answered all required questions
*/
2024-12-19 22:29:06 -05:00
global $config , $pdo ;
2013-03-05 22:10:50 +00:00
// get the questions we're looking for
2025-02-05 02:25:53 +00:00
$q = $pdo -> prepare ( 'SELECT id FROM questions WHERE year=? AND required=yes' );
2025-02-04 06:51:38 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2013-03-05 22:10:50 +00:00
$idList = array ();
2025-01-29 03:30:48 +00:00
while ( $row = $q -> fetch ( PDO :: FETCH_ASSOC ))
$idList [] = $row [ 'id' ];
2013-03-05 22:10:50 +00:00
$rval = 'complete' ;
2025-01-29 03:30:48 +00:00
if ( count ( $idList )) {
2025-02-07 03:46:17 +00:00
$q = $pdo -> prepare ( 'SELECT COUNT(*) AS tally FROM question_answers WHERE questions_id IN(' . implode ( ',' , $idList ) . ') AND users_id=? AND answer IS NOT NULL' );
$q -> execute ([ $u [ 'id' ]]);
2024-12-10 19:40:23 -05:00
$row = $q -> fetch ( PDO :: FETCH_ASSOC );
2025-01-29 03:30:48 +00:00
if ( intval ( $row [ 'tally' ]) != count ( $idList ))
$rval = 'incomplete' ;
2013-03-05 22:10:50 +00:00
}
return $rval ;
}
2009-09-09 00:26:12 +00:00
function judge_status_special_awards ( & $u )
{
2025-01-28 17:33:03 -05:00
global $config , $pdo ;
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'judges_specialaward_enable' ] == 'no' && $u [ 'special_award_only' ] == 'no' )
2010-01-15 15:20:11 +00:00
return 'complete' ;
2025-01-29 03:30:48 +00:00
/*
* Complete if :
2009-09-09 00:26:12 +00:00
* - judge has selected ( none ) " no special award preferences "
2025-01-29 03:30:48 +00:00
* - judge has selected between min and max preferences
2009-09-09 00:26:12 +00:00
*/
2024-12-10 19:40:23 -05:00
$qq = $pdo -> prepare ( " SELECT COUNT(id) AS num FROM judges_specialaward_sel
2025-02-03 03:04:15 +00:00
WHERE users_id = ? " );
$qq -> execute ([ $u [ 'id' ]]);
2024-12-10 19:40:23 -05:00
$rr = $qq -> fetch ( PDO :: FETCH_OBJ );
2009-09-09 00:26:12 +00:00
$awards_selected = $rr -> num ;
2025-01-29 03:30:48 +00:00
// echo "$awards_selected awards selected, ({$config['judges_specialaward_min']} - {$config['judges_specialaward_max']})";
2009-09-09 00:26:12 +00:00
2025-01-29 03:30:48 +00:00
if ( $u [ 'special_award_only' ] == 'yes' ) {
2009-09-09 00:26:12 +00:00
/* Judge for special award */
2025-01-29 03:30:48 +00:00
/*
* They may judge more than one award , so don ' t limit them
* to one
*/
if ( $awards_selected >= 1 )
return 'complete' ;
2009-09-09 00:26:12 +00:00
return 'incomplete' ;
}
2025-01-29 03:30:48 +00:00
if (( $awards_selected >= $config [ 'judges_specialaward_min' ]) &&
( $awards_selected <= $config [ 'judges_specialaward_max' ])) {
return 'complete' ;
2009-09-09 00:26:12 +00:00
}
2025-01-29 03:30:48 +00:00
2009-09-09 00:26:12 +00:00
return 'incomplete' ;
}
function judge_status_availability ( & $u )
{
2025-01-28 17:33:03 -05:00
global $config , $pdo ;
2025-01-29 03:30:48 +00:00
if ( $config [ 'judges_availability_enable' ] == 'no' )
return 'complete' ;
2009-09-09 00:26:12 +00:00
2025-02-07 03:46:17 +00:00
$q = $pdo -> prepare ( " SELECT id FROM judges_availability WHERE users_id=? " );
$q -> execute ([ $u [ 'id' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () > 0 )
return 'complete' ;
2009-09-09 00:26:12 +00:00
return 'incomplete' ;
}
function judge_status_update ( & $u )
{
global $config ;
2025-01-29 03:30:48 +00:00
if ( user_personal_info_status ( $u ) == 'complete' &&
judge_status_expertise ( $u ) == 'complete' &&
judge_status_other ( $u ) == 'complete' &&
judge_status_availability ( $u ) == 'complete' &&
judge_status_special_awards ( $u ) == 'complete' )
2009-09-09 00:26:12 +00:00
$u [ 'judge_complete' ] = 'yes' ;
else
$u [ 'judge_complete' ] = 'no' ;
user_save ( $u );
return ( $u [ 'judge_complete' ] == 'yes' ) ? 'complete' : 'incomplete' ;
}
?>