\n";
echo " ";
diff --git a/admin/curl.inc.php b/admin/curl.inc.php
new file mode 100644
index 00000000..ffebc9f8
--- /dev/null
+++ b/admin/curl.inc.php
@@ -0,0 +1,84 @@
+
+/*
+ This file is part of the 'Science Fair In A Box' project
+ SFIAB Website: http://www.sfiab.ca
+
+ Copyright (C) 2007 James Grant
+ Copyright (C) 2009 David 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('../user.inc.php');
+ user_auth_required('committee', 'admin');
+ require_once('xml.inc.php');
+
+
+ function curl_query($fair, $data, $ysf_url='')
+ {
+ global $output;
+ switch($fair['type']) {
+ case 'sfiab':
+ $url = $fair['url'].'/xmltransport.php';
+ $var = 'json';
+ $d = array();
+ $d['auth'] = array('username' => $fair['username'],
+ 'password' => $fair['password']);
+ $str = json_encode(array_merge($d, $data));
+ break;
+ case 'ysf':
+ if($ysf_url == '')
+ $url = $fair['url'];
+ else
+ $url = $ysf_url;
+ $var = 'xml';
+ $output="";
+ xmlCreateRecurse($data);
+ $str = $output;
+ break;
+ }
+
+ $ch = curl_init(); /// initialize a cURL session
+ curl_setopt ($ch, CURLOPT_URL, $url);
+ 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, "$var=".urlencode($str)); /// 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);
+ $datastream = curl_exec ($ch); /// execute the curl session and return the output to a variable $datastream
+ curl_close ($ch); /// close the curl session
+
+// echo "
$datastream
";
+
+ switch($fair['type']) {
+ case 'sfiab':
+ $ret=json_decode(urldecode($datastream), true);
+ break;
+ case 'ysf':
+ $datastream = str_replace(" standalone=\"yes\"","",$datastream);
+ /* Return is plaintext, make a return array */
+ $ret['error'] = 0;
+ $ret['message'] = $datastream;
+ break;
+ }
+// echo "ret: ";print_r($ret);echo " ";
+ return $ret;
+ }
+?>
diff --git a/admin/fair_stats.php b/admin/fair_stats.php
index 0e40f638..6fa55e50 100644
--- a/admin/fair_stats.php
+++ b/admin/fair_stats.php
@@ -27,6 +27,7 @@
user_auth_required('committee', 'admin');
require_once('xml.inc.php');
require_once('stats.inc.php');
+ require_once('curl.inc.php');
function stats_to_ysf($fair, $stats)
{
@@ -75,63 +76,6 @@
$server_config['fair_stats_scholarships'] = 'no';
$server_config['fair_stats_delegates'] = 'no';
- function curl_query($fair, $data)
- {
- global $output;
- switch($fair['type']) {
- case 'sfiab':
- $url = $fair['url'].'/xmltransport.php';
- $var = 'json';
- $d = array();
- $d['auth'] = array('username' => $fair['username'],
- 'password' => $fair['password']);
- $str = json_encode(array_merge($d, $data));
- break;
- case 'ysf':
- $url = "https://secure.ysf-fsj.ca/registration/xmlaffiliation.php";
- $var = 'xml';
- $d = array();
- $d['affiliation'] = array(
- "ysf_region_id"=>$fair['username'],
- "ysf_region_password"=>$fair['password'],
- "year"=>$year);
- foreach($data as $k=>$v) $d['affiliation'][$k] = $v;
- $output="";
- xmlCreateRecurse($d);
- $str = $output;
- break;
- }
-
- $ch = curl_init(); /// initialize a cURL session
- curl_setopt ($ch, CURLOPT_URL, $url);
- 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, "$var=".urlencode($str)); /// 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);
- $datastream = curl_exec ($ch); /// execute the curl session and return the output to a variable $datastream
- curl_close ($ch); /// close the curl session
-
-// echo "
$datastream
";
-
- switch($fair['type']) {
- case 'sfiab':
- $ret=json_decode(urldecode($datastream), true);
- break;
- case 'ysf':
- $datastream = str_replace(" standalone=\"yes\"","",$datastream);
- /* Return is plaintext, make a return array */
- $ret['error'] = 0;
- $ret['message'] = $datastream;
- break;
- }
-// echo "ret: ";print_r($ret);echo " ";
- return $ret;
- }
-
if($_GET['year']) $year=intval($_GET['year']);
else $year=$config['FAIRYEAR'];
@@ -153,12 +97,19 @@
$stats['year'] = $year;
if($fair['type'] == 'ysf') {
$st = stats_to_ysf($fair, $stats);
+ $req = array('affiliation' => array(
+ "ysf_region_id"=>$fair['username'],
+ "ysf_region_password"=>$fair['password'],
+ "year"=>$year,
+ 'stats'=>$st)
+ );
} else {
- $st = $stats;
+ $req = array('stats'=>$stats);
}
if(function_exists('curl_init')) {
- $r = curl_query($fair, array('stats'=>$st));
+ $r = curl_query($fair, $req,
+ 'https://secure.ysf-fsj.ca/registration/xmlaffiliation.php');
if($r['error'] == 0)
echo happy(i18n("The %1 Server said:", array($fair['name'])).' '.$r['message']);
else
@@ -203,20 +154,22 @@
exit;
}
+ if($fair['type'] == 'ysf') {
+ $data['statconfig'] = array('fair_stats_participation');
+ } else {
+ echo notice(i18n('Getting stats request and downloading existing stats from server %1', array($fair['url'])));
+ /* Query the server to see what stats we need */
+ $q=array('getstats' => array('year' => $year));
- echo notice(i18n('Getting stats request and downloading existing stats from server %1', array($fair['url'])));
- /* Query the server to see what stats we need */
- $q=array('getstats' => array('year' => $year));
+ $data = curl_query($fair, $q);
- $data = curl_query($fair, $q);
-
- if($data['error'] != 0) {
- echo error("Server said: {$data['message']} ");
- send_footer();
- exit;
+ if($data['error'] != 0) {
+ echo error("Server said: {$data['message']} ");
+ send_footer();
+ exit;
+ }
+ echo notice(i18n('Server said: Success'));
}
-
- echo notice(i18n('Server said: Success'));
echo '';
echo i18n('This server has requested the following stats for your %1 fair:', array($year));
echo '