コード例 #1
0
ファイル: Auth.php プロジェクト: RadioCampusFrance/airtime
 private function generateToken($action, $user_id)
 {
     $salt = md5("pro");
     $token = self::generateRandomString();
     $info = new CcSubjsToken();
     $info->setDbUserId($user_id);
     $info->setDbAction($action);
     $info->setDbToken(sha1($token . $salt));
     $info->setDbCreated(gmdate('Y-m-d H:i:s'));
     $info->save();
     Logging::debug("generated token {$token}");
     return $token;
 }
コード例 #2
0
ファイル: BaseCcSubjsQuery.php プロジェクト: nidzix/Airtime
 /**
  * Filter the query by a related CcSubjsToken object
  *
  * @param     CcSubjsToken $ccSubjsToken  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcSubjsQuery The current query, for fluid interface
  */
 public function filterByCcSubjsToken($ccSubjsToken, $comparison = null)
 {
     return $this->addUsingAlias(CcSubjsPeer::ID, $ccSubjsToken->getDbUserId(), $comparison);
 }
コード例 #3
0
 /**
  * Exclude object from result
  *
  * @param     CcSubjsToken $ccSubjsToken Object to remove from the list of results
  *
  * @return    CcSubjsTokenQuery The current query, for fluid interface
  */
 public function prune($ccSubjsToken = null)
 {
     if ($ccSubjsToken) {
         $this->addUsingAlias(CcSubjsTokenPeer::ID, $ccSubjsToken->getDbId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
コード例 #4
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      CcSubjsToken $value A CcSubjsToken object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(CcSubjsToken $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getDbId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }