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. */ require_once('common.inc.php'); require_once('xml.inc.php'); require_once('user.inc.php'); require_once('project.inc.php'); require_once('awards.inc.php'); require_once('form.inc.php'); require_once('stats.inc.php'); $mysqli = sfiab_init('committee'); $page_id = "c_ysc_stats"; $fair = array(); $stats = stats_get_export($mysqli, $fair, $config['year']); function s($a, $i) { global $stats; if(array_key_exists($i, $stats[$a])) { return $stats[$a][$i]; } return 0; } $q = $mysqli->query("SELECT COUNT(`id`) FROM `schools` WHERE year='{$config['year']}'"); $r = $q->fetch_row(); $total_schools = $r[0]; $ysc_stats = array(); $ysc_stats ["numschoolstotal"]=$total_schools; $ysc_stats ["numschoolsactive"]=$stats['schools']; $ysc_stats ["numstudents"]=$stats['students_public'] + $stats['students_private']; $ysc_stats ["numk6m"]=s('male',1) + s('male',2) + s('male',3) + s('male',4) + s('male',5) + s('male',6) ; $ysc_stats ["numk6f"]=s('female',1) + s('female',2) + s('female',3) + s('female',4) + s('female',5) + s('female',6) ; $ysc_stats ["num78m"]=s('male',7) + s('male',8); $ysc_stats ["num78f"]=s('female',7) + s('female',8); $ysc_stats ["num910m"]=s('male',9) + s('male',10); $ysc_stats ["num910f"]=s('female',9) + s('female',10); $ysc_stats ["num11upm"]=s('male',12) + s('male',12) + s('male',13); $ysc_stats ["num11upf"]=s('female',12) + s('female',12) + s('female',13); $ysc_stats ["projk6"]=s('project',1) + s('project',2) + s('project',3) + s('project',4) + s('project',5) + s('project',6) ; $ysc_stats ["proj78"]=s('project',7) + s('project',8); $ysc_stats ["proj910"]=s('project',9) + s('project',10); $ysc_stats ["proj11up"]=s('project',12) + s('project',12) + s('project',13); $ysc_stats ["committee"]=$stats['committee_members']; $ysc_stats ["judges"]=$stats['judges']; $ysc_region_id = NULL; $ysc_region_password = NULL; $ysc_name = ''; $q = $mysqli->query("SELECT * FROM fairs WHERE abbrv='YSC'"); if($q->num_rows >= 1) { $f = $q->fetch_assoc(); $ysc_region_id = $f['username']; $ysc_region_password = $f['password']; $ysc_name = $f['name']; } $xml_data=array("affiliation"=>array( "ysf_region_id"=>$ysc_region_id, "ysf_region_password"=>$ysc_region_password, 'year'=>$config['year'], 'stats'=>$ysc_stats ) ); /* xmlcreaterecurse uses $output and $indent as a global variable */ $output=""; $indent = 0; xmlCreateRecurse($xml_data); $xml = $output; $action = array_key_exists('action', $_POST) ? $_POST['action'] : ''; switch($action) { case 'send': if($ysc_region_id === NULL) exit(); if(!function_exists('curl_init')) { form_ajax_response(array('status'=>1, 'error'=>'Your PHP installation does not support CURL. You will need to login to the YSC system as the regional coodinator and upload the XML data manually')); exit(); } // print_r($_POST['xml']); $ch = curl_init(); /// initialize a cURL session curl_setopt ($ch, CURLOPT_URL,"https://secure.youthscience.ca/registration/xmlaffiliation.php"); curl_setopt ($ch, CURLOPT_HEADER, 0); /// Header control curl_setopt ($ch, CURLOPT_POST, 1); /// tell it to make a POST, not a GET curl_setopt ($ch, CURLOPT_POSTFIELDS, "xml=".$xml); /// put the query string here starting with "?" curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); /// This allows the output to be set into a variable $datastream // curl_setopt ($ch, CURLOPT_POSTFIELDSIZE, 0); curl_setopt ($ch, CURLOPT_TIMEOUT, 360); curl_setopt ($ch, CURLOPT_SSLVERSION, 3); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, false); // $datastream = "deadbeef"; $datastream = curl_exec ($ch); /// execute the curl session and return the output to a variable $datastream $datastream = str_replace(" standalone=\"yes\"","",$datastream); // echo "curl close
"; curl_close ($ch); /// close the curl session // $response=xml_parsexml($datastream); $ret = array(); $ret['status'] = 0; if(strstr($datastream, 'successfully updated')) { $ret['status'] = 1; $ret['happy'] = 'Statistics successfully updated'; } else { $ret['error'] = 'Update failed'; } sfiab_log_sync_stats($mysqli, $f['id'], $ret['status']); $ret['info'] = "The YSC Registration Server said: ".$datastream; form_ajax_response($ret); exit(); } $help = '

'; sfiab_page_begin($u, "$ysc_name Affiliation Statistics", $page_id, $help); ?>

You have not yet specified a username for $ysc_name (your Region ID). Go to the Science Fair Management page to set it"; $ok=false; } if($ysc_region_password == '') { $error .= "
  • You have not yet specified a password for $ysc_name (your Region Password). Go to the Science Fair Management page to set it"; $ok=false; } form_page_begin($page_id, array(), $ok?'':'Found some problems preventing uploading YSC statistics:'); if(!$ok) { ?>
  • Upload Statistics to

    The following data will be sent to $v) { ?>

    Raw XML to be Sent to Server