query("SELECT time,result FROM log WHERE `year`='{$config['year']}' AND `type`='sync_stats' AND fair_id='$fair_id' ORDER BY `time` DESC LIMIT 1");
if($q->num_rows != 1) {
$text = 'never';
} else {
$r = $q->fetch_assoc();
$text = date("F j, Y h:ia", strtotime($r['time'])).'
';
if($r['result'] == 1) {
$text .= 'OK';
} else {
$text .= 'failed';
}
}
return $text;
}
$action = '';
if(array_key_exists('action', $_POST)) {
$action = $_POST['action'];
}
switch($action) {
case 'add':
$fair_id = fair_create($mysqli);
/* Print the id so the caller can jump to the edit page with the right id */
print("$fair_id");
exit();
case 'pass':
$id = (int)$_POST['id'];
$f = fair_load($mysqli, $id);
$f['password'] = base64_encode(mcrypt_create_iv(96, MCRYPT_DEV_URANDOM));
fair_save($mysqli, $f);
form_ajax_response(array('status'=>0, 'val' => array('password' => $f['password']))) ;
exit();
case 'check':
$id = (int)$_POST['id'];
$f = fair_load($mysqli, $id);
post_text($f['url'], 'url');
if($f['password'] === NULL) $f['password'] = '';
$ret = remote_ping($mysqli, $f);
if($ret['error'] == 0) {
$val = array();
if($f['name'] == '') {
$f['name'] = $ret['name'];
$val['name'] = $ret['name'];
}
if($f['abbrv'] == '') {
$f['abbrv'] = $ret['abbrv'];
$val['abbrv'] = $ret['abbrv'];
}
$f['password'] = $f['original']['password'];
fair_save($mysqli, $f);
form_ajax_response(array('status'=>0, 'happy'=>"Server Responded: {$ret['name']}. Use the \"Check Authentication\" button to verify the secret key works", 'val' => $val)) ;
exit();
}
form_ajax_response(array('status'=>1, 'error'=>"Server couldn't be contacted"));
exit();
case 'auth':
$id = (int)$_POST['id'];
$f = fair_load($mysqli, $id);
$ret = remote_auth_ping($mysqli, $f);
if($ret['error'] == 0) {
form_ajax_response(array('status'=>0, 'happy'=>"Server Responded: {$ret['name']}. Everything seems to be working")) ;
exit();
}
form_ajax_response(array('status'=>1, 'error'=>"Authentication failed. Make sure the remote fair is using the same secret key"));
exit();
case 'saveback':
case 'save':
$id = (int)$_POST['id'];
$f = fair_load($mysqli, $id);
post_text($f['name'], 'name');
post_text($f['abbrv'], 'abbrv');
post_text($f['type'], 'type');
post_text($f['url'], 'url');
post_text($f['website'], 'website');
post_text($f['password'], 'password');
if($f['type'] == 'ysc') {
post_text($f['username'], 'username');
} else {
$f['username'] = '';
}
fair_save($mysqli, $f);
$ret = array('status'=>0);
if($action == 'saveback') {
$ret['location'] = 'c_config_fairs.php';
}
form_ajax_response($ret);
exit();
case 'del':
/* Delete by id (not cid) and year just to be safe */
$id = (int)$_POST['id'];
$mysqli->real_query("DELETE FROM fairs WHERE `id`='$id'");
form_ajax_response(array('status'=>1, 'location' => 'c_config_fairs.php'));
exit();
case 'allstats':
remote_queue_get_stats_from_all_fairs($mysqli, $config['year']);
form_ajax_response(0);
exit();
case 'sync':
$id = (int)$_POST['id'];
$f = fair_load($mysqli, $id);
if($f['type'] == 'sfiab_upstream') {
/* Push our stats to upstream */
$response = remote_push_stats_to_fair($mysqli, $f, $config['year']);
} else if($f['type'] == 'old_sfiab2_feeder') {
/* Get stats from an old sfiab 2 */
$response = remote_get_stats_from_fair_old_sfiab2($mysqli, $f, $config['year']);
} else {
/* Get stats from upstream */
$response = remote_get_stats_from_fair($mysqli, $f, $config['year']);
}
$text = get_last_sync($mysqli, $id);
print($text);
exit();
}
if(array_key_exists('edit', $_GET)) {
$page = 'edit';
} else {
$page = '';
}
switch($page) {
case 'edit':
$id = (int)$_GET['edit'];
$page_id = 'c_config_edit_fair';
$help = '
'; sfiab_page_begin($u, "Edit Fairs", $page_id, $help); ?>
For creating a new fair: Enter the Server Address, then press "Check Server", that will verify the server and populate the Name and Abbreviation Cancel, Go Back
Use this button to check that your secret key is working after you have saved all the information above
On the Feeder Fair:
Fair Types:
Fair name | Type | Last Stats Sync | |
---|---|---|---|
=$f['name']?> | =$fair_types[$f['type']]?> | =$sync_text?> |