2005-02-23 14:55:01 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
2025-02-10 19:54:20 +00:00
* Science - ation Website : https :// science - ation . ca /
2025-01-29 03:30:48 +00:00
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
2025-02-10 19:54:20 +00:00
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
2025-01-29 03:30:48 +00:00
*
* 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 .
*/
2005-02-23 14:55:01 +00:00
?>
< ?
2025-02-10 19:54:20 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'admin' );
2025-02-10 19:54:20 +00:00
require ( '../lpdf.php' );
require ( '../lcsv.php' );
require ( '../questions.inc.php' );
2025-01-29 03:30:48 +00:00
if ( ! $_GET [ 'type' ])
$type = 'csv' ;
else
$type = $_GET [ 'type' ];
if ( $type == 'pdf' ) {
2025-02-10 19:54:20 +00:00
$rep = new lpdf (
i18n ( $config [ 'fairname' ]),
2025-01-29 03:30:48 +00:00
i18n ( 'Judge List' ),
2025-02-10 19:54:20 +00:00
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo-200.gif'
);
2005-02-23 14:55:01 +00:00
$rep -> newPage ();
$rep -> setFontSize ( 11 );
2025-01-29 03:30:48 +00:00
} else if ( $type == 'csv' ) {
$rep = new lcsv ( i18n ( 'Judge List' ));
2005-02-23 14:55:01 +00:00
}
2025-01-29 03:30:48 +00:00
$table = array ();
$table [ 'header' ] = array (
i18n ( 'ID' ),
i18n ( 'Unique ID' ),
i18n ( 'Last Name' ),
i18n ( 'First Name' ),
i18n ( 'Email' ),
i18n ( 'Phone Home' ),
i18n ( 'Phone Work' ),
i18n ( 'Phone Work Ext' ),
i18n ( 'Phone Cell' ),
i18n ( 'Languages' ),
i18n ( 'Organization' ),
i18n ( 'Address 1' ),
i18n ( 'Address 2' ),
i18n ( 'City' ),
i18n ( $config [ 'provincestate' ]),
i18n ( $config [ 'postalzip' ]),
i18n ( 'Highest PostSecDeg' ),
i18n ( 'Professional Quals' ),
i18n ( 'Expertise Other' )
);
2005-02-23 14:55:01 +00:00
2006-07-11 20:22:42 +00:00
/* Append headers for all the custom questions */
2025-01-29 03:30:48 +00:00
$qs = questions_load_questions ( 'judgereg' , $config [ 'FAIRYEAR' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2006-07-11 20:22:42 +00:00
$table [ 'header' ][] = i18n ( $qs [ $qid ][ 'db_heading' ]);
}
2025-01-29 03:30:48 +00:00
// grab the list of divisions, because the last fields of the table will be the sub-divisions
$q = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=' " . $config [ 'FAIRYEAR' ] . " ' ORDER BY id " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-29 03:30:48 +00:00
$numcats = $q -> rowCount ();
$catheadings = array ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$cats [] = $r -> id ;
$catheadings [] = " $r->category (out of 5) " ;
2006-02-07 20:19:56 +00:00
}
2025-01-29 03:30:48 +00:00
// grab the list of divisions, because the last fields of the table will be the sub-divisions
$q = $pdo -> prepare ( " SELECT * FROM projectdivisions WHERE year=' " . $config [ 'FAIRYEAR' ] . " ' ORDER BY id " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-29 03:30:48 +00:00
$divheadings = array ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$divs [] = $r -> id ;
$divheadings [] = " $r->division (out of 5) " ;
$divheadings [] = " $r->division subdivisions " ;
2005-03-30 16:04:32 +00:00
}
2025-01-29 03:30:48 +00:00
// now append the arrays together
$table [ 'header' ] = array_merge ( $table [ 'header' ], array_merge ( $catheadings , $divheadings ));
2013-02-20 21:18:52 +00:00
2025-01-29 03:30:48 +00:00
$times = array ();
$datetimeheadings = array ();
2013-02-20 21:18:52 +00:00
2025-01-29 03:30:48 +00:00
/* Load the judging rounds */
$q = $pdo -> prepare ( " SELECT date,starttime,endtime,name FROM judges_timeslots WHERE round_id='0' AND year=' { $config [ 'FAIRYEAR' ] } ' ORDER BY starttime,type " );
$q -> execute ();
$x = 0 ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$found = false ;
foreach ( $times as $xx => $t ) {
if ( $t [ 'date' ] == $r -> date && $t [ 'starttime' ] == $r -> starttime && $t [ 'endtime' ] == $r -> endtime ) {
$times [ $xx ][ 'name' ] .= " , { $r -> name } " ;
$found = true ;
break ;
}
}
if ( ! $found ) {
2025-02-10 19:54:20 +00:00
$times [ $x ] = array (
'date' => $r -> date ,
2025-01-29 03:30:48 +00:00
'starttime' => $r -> starttime ,
'endtime' => $r -> endtime ,
2025-02-10 19:54:20 +00:00
'name' => $r -> name
);
2025-01-29 03:30:48 +00:00
$datetimeheadings [] = $r -> name ;
$x ++ ;
}
}
2013-02-20 21:18:52 +00:00
2025-01-29 03:30:48 +00:00
$table [ 'header' ] = array_merge ( $table [ 'header' ], $datetimeheadings );
2005-03-30 16:04:32 +00:00
2025-01-29 03:30:48 +00:00
// fill these in if we ever make this PDFable
$table [ 'widths' ] = array ();
$table [ 'dataalign' ] = array ();
2005-02-23 14:55:01 +00:00
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT
2010-01-22 17:43:43 +00:00
users .* ,
users_judge .*
2005-03-29 20:44:28 +00:00
FROM
2010-01-22 17:43:43 +00:00
users
JOIN users_judge ON users . id = users_judge . users_id
2005-03-29 20:44:28 +00:00
WHERE
2010-01-22 17:43:43 +00:00
users . deleted = 'no' AND
2025-01-29 03:30:48 +00:00
users . year = '" . $config[' FAIRYEAR '] . "'
2010-01-22 17:43:43 +00:00
AND users . types LIKE '%judge%'
2005-03-29 20:44:28 +00:00
ORDER BY
lastname ,
firstname " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-02 10:54:18 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$u = user_load ( $r -> id );
$expertise_other = str_replace ( " \n " , ' ' , $r -> expertise_other );
$expertise_other = str_replace ( " \r " , '' , $expertise_other );
if ( isset ( $divdata ))
unset ( $divdata );
$divdata = array ();
if ( isset ( $catdata ))
unset ( $catdata );
$catdata = array ();
$languages = '' ;
2025-02-10 19:54:20 +00:00
foreach ( $u [ 'cat_prefs' ] as $c ) {
2025-01-29 03:30:48 +00:00
$catdata [] = $c + 2 ;
2005-03-30 16:04:32 +00:00
}
2025-02-10 19:54:20 +00:00
foreach ( $u [ 'div_prefs' ] as $d ) {
2025-01-29 03:30:48 +00:00
$divdata [] = $d ;
// FIXME: 2010-01-22 - James - get the sub divisions for now we use a placeholder
$divdata [] = '' ;
2005-03-30 16:04:32 +00:00
}
2025-02-10 19:54:20 +00:00
foreach ( $u [ 'languages' ] as $k => $v ) {
2025-01-29 03:30:48 +00:00
$languages .= " $v / " ;
2006-02-07 20:19:56 +00:00
}
2025-01-29 03:30:48 +00:00
$languages = substr ( $languages , 0 , - 1 );
2006-03-28 23:48:08 +00:00
2006-07-11 20:22:42 +00:00
$qarray = array ();
$qans = questions_load_answers ( 'judgereg' , $r -> id , $config [ 'FAIRYEAR' ]);
$keys = array_keys ( $qans );
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2006-07-11 20:22:42 +00:00
$qarray [] = $qans [ $qid ];
}
2013-02-20 21:18:52 +00:00
2025-01-29 03:30:48 +00:00
$tq = $pdo -> prepare ( 'SELECT * FROM judges_availability WHERE users_id="' . $r -> id . '" ORDER BY `start`' );
2024-12-08 02:42:00 -05:00
$tq -> execute ();
2013-02-20 21:18:52 +00:00
$sel = array ();
2025-01-29 03:30:48 +00:00
$timedata = array ();
while ( $tr = $tq -> fetch ( PDO :: FETCH_OBJ )) {
foreach ( $times as $x => $t ) {
if ( $tr -> start == $t [ 'starttime' ] && $tr -> end == $t [ 'endtime' ] && $tr -> date == $t [ 'date' ]) {
2013-02-20 21:18:52 +00:00
$sel [ $x ] = true ;
}
}
}
2025-01-29 03:30:48 +00:00
foreach ( $times as $x => $t ) {
if ( get_value_from_array ( $sel , $x ) == true ) {
$timedata [] = 'yes' ;
2013-02-20 21:18:52 +00:00
} else {
2025-01-29 03:30:48 +00:00
$timedata [] = 'no' ;
2013-02-20 21:18:52 +00:00
}
}
2025-01-29 03:30:48 +00:00
$tmp = array (
2005-03-09 20:33:16 +00:00
$r -> id ,
2010-01-22 17:43:43 +00:00
$r -> uid ,
2005-02-23 14:55:01 +00:00
$r -> lastname ,
$r -> firstname ,
$r -> email ,
$r -> phonehome ,
$r -> phonework ,
2025-01-02 10:54:18 -05:00
get_value_property_or_default ( $r , 'phoneworkext' ),
2005-02-23 14:55:01 +00:00
$r -> phonecell ,
2006-03-28 23:48:08 +00:00
$languages ,
2005-02-23 14:55:01 +00:00
$r -> organization ,
2005-03-29 20:44:28 +00:00
$r -> address ,
2005-02-23 14:55:01 +00:00
$r -> address2 ,
$r -> city ,
$r -> province ,
$r -> postalcode ,
$r -> highest_psd ,
2025-01-02 10:54:18 -05:00
get_value_property_or_default ( $r , 'professional_quals' ),
2005-03-29 21:08:47 +00:00
$expertise_other
2025-01-29 03:30:48 +00:00
);
2006-07-11 20:22:42 +00:00
$tmp = array_merge ( $tmp , $qarray );
2005-03-30 16:04:32 +00:00
2025-01-29 03:30:48 +00:00
$extradata = array_merge ( $catdata , $divdata );
$table [ 'data' ][] = array_merge ( array_merge ( $tmp , $extradata ), $timedata );
2005-02-23 14:55:01 +00:00
}
$rep -> addTable ( $table );
$rep -> output ();
?>