Ejemplo n.º 1
0
        $clue->doUpdate('Edited clue successfully.');
        break;
    case 'delete':
        $clue = Clue::getClue($clue_id);
        foreach ($clue->getClueStates() as $clueState) {
            $clueState->doRemove();
        }
        $clue->doRemove('Deleted clue successfully.');
        break;
    case 'answer':
        $team = Session::currentTeam();
        if ($team) {
            if ($latitude && $longitude) {
                $clue = Clue::getClue($clue_id);
                if ($clue) {
                    CheckIn::doCheckIn($team, $latitude, $longitude, $guess);
                    $team->doGuessAnswer($clue, $guess);
                }
            } else {
                add_notification('You must have location turned on to submit clue answers.');
            }
        } else {
            add_notification('You must have a team to submit clue answers.');
        }
}
// VIEW
$page = new UIPage();
$position = Session::defaultPosition();
function answerForm($clueID, $clueSalt, $hashedAnswers, $serialized)
{
    return <<<EOT
Ejemplo n.º 2
0
<?php

/**
 * @author Matt Bush
 * (c) 2011 Stanford CS198 program. All rights reserved.
 */
ini_set('include_path', ini_get('include_path') . ':../php/data:../php/ui/:../php/misc');
require_once 'Session.php';
require_once 'Person.php';
require_once 'Date.php';
require_once 'CheckIn.php';
if (Session::currentPerson() && Session::currentPerson()->getTeam() && key_exists('latitude', $_POST) && key_exists('longitude', $_POST)) {
    $team = Session::currentPerson()->getTeam();
    $momentsAgo = id(new Date())->augment(-30)->toMySQLDate();
    $recentCheckIns = CheckIn::getCheckIns($team, $momentsAgo);
    // recent check-ins, so break the cycle
    if (count($recentCheckIns) > 0) {
        echo 0;
    } else {
        CheckIn::doCheckIn($team, $_POST['latitude'], $_POST['longitude']);
        // TODO: check to see if there is anything new, and if so, send back refresh code
        $refresh = $team->shouldRefreshClueStates();
        $changes = $refresh ? 1 : 0;
        echo $changes;
    }
} else {
    echo -1;
}