コード例 #1
0
ファイル: api.php プロジェクト: nhallpot/CSCrew2015-back
    $app->post('/submit', function () use($app) {
        if (!require_authenticated()) {
            return;
        }
        $data = json_decode($app->request->getBody());
        $who = get_loggedin_info();
        $data->UserId = $who['user']['Id'];
        $obj = new helpHour();
        $obj->fromJSON(json_encode($data));
        $obj->setStartTime(convert_timezone($obj->getStartTime()));
        $obj->setEndTime(convert_timezone($obj->getEndTime()));
        $obj->save();
        render_json($obj->toArray());
    });
    $app->get('/signin/:id', function ($id) use($app) {
        $helphour = helpHourQuery::create()->findPk($id);
        if (!require_authenticated(false, $helphour->getUser()->getNetid())) {
            return;
        }
        if (signin_helphour($helphour)) {
            render_json("Signed in correctly.");
        } else {
            render_json("Already signed in or other error.");
        }
    });
});
$app->get('/whoami', function () use($app) {
    $who = get_loggedin_info();
    $who['profile'] = get_user_profile($who['username'])->toArray();
    render_json($who);
});
コード例 #2
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(helpHourPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = helpHourQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
コード例 #3
0
 /**
  * Get the associated helpHour object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return helpHour The associated helpHour object.
  * @throws PropelException
  */
 public function gethelpHour(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->ahelpHour === null && $this->helphour_id !== null && $doQuery) {
         $this->ahelpHour = helpHourQuery::create()->findPk($this->helphour_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->ahelpHour->addhelpHourSignins($this);
            */
     }
     return $this->ahelpHour;
 }
コード例 #4
0
 /**
  * Returns a new helpHourQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   helpHourQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return helpHourQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof helpHourQuery) {
         return $criteria;
     }
     $query = new helpHourQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }