Ejemplo n.º 1
0
 protected function loadUser()
 {
     $user = null;
     if (isset($_SESSION["userId"])) {
         $user = UserQuery::create()->findPK($_SESSION["userId"]);
     } else {
         if (isset($_COOKIE["identityId"]) && isset($_COOKIE["identityToken"])) {
             $identity = IdentityQuery::create()->findPK($_COOKIE["identityId"]);
             if ($identity && $identity->checkToken($_COOKIE["identityToken"])) {
                 $user = UserQuery::create()->filterByIdentity($identity)->findOne();
                 if ($user) {
                     $_SESSION["userId"] = $user->getId();
                     $token = generateRandomString(32);
                     $identity->setToken($token)->setExpiresAt(time() + 86400 * 120)->save();
                     setcookie("identityId", $identity->getId(), time() + 86400 * 120);
                     setcookie("identityToken", $token, time() + 86400 * 120);
                 }
             }
         }
     }
     if ($user && !$user->getEmailConfirmedAt()) {
         unset($_SESSION["userId"]);
         if (isset($_COOKIE["identityId"])) {
             $identity = IdentityQuery::create()->findPK($_COOKIE["identityId"]);
             if ($identity) {
                 $identity->delete();
                 setcookie("identityId", "", time() - 86400);
                 setcookie("identityToken", "", time() - 86400);
             }
         }
         $this->sendFlashMessage('You email adress has not been confirmed yet. <a class="link" href="/user/' . $user->getUsername() . '/send-email-confirm-email">Send new email confirm link?</a>', "error");
         $this->redirect("/");
     }
     $this->data["loggedUser"] = $user;
     return true;
 }
Ejemplo n.º 2
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildIdentityQuery::create();
     $criteria->add(IdentityTableMap::COL_ID, $this->id);
     return $criteria;
 }
Ejemplo n.º 3
0
 /**
  * Returns a new ChildIdentityQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildIdentityQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildIdentityQuery) {
         return $criteria;
     }
     $query = new ChildIdentityQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Ejemplo n.º 4
0
 /**
  * Returns the number of related Identity objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related Identity objects.
  * @throws PropelException
  */
 public function countIdentities(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collIdentitiesPartial && !$this->isNew();
     if (null === $this->collIdentities || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collIdentities) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getIdentities());
         }
         $query = ChildIdentityQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByUser($this)->count($con);
     }
     return count($this->collIdentities);
 }
Ejemplo n.º 5
0
 /**
  * Performs an INSERT on the database, given a Identity or Criteria object.
  *
  * @param mixed               $criteria Criteria or Identity object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(IdentityTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Identity object
     }
     if ($criteria->containsKey(IdentityTableMap::COL_ID) && $criteria->keyContainsValue(IdentityTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . IdentityTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = IdentityQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }
Ejemplo n.º 6
0
 protected function signOut()
 {
     unset($_SESSION["userId"]);
     if (isset($_COOKIE["identityId"])) {
         $identity = IdentityQuery::create()->findPK($_COOKIE["identityId"]);
         if ($identity) {
             $identity->delete();
             setcookie("identityId", "", time() - 86400);
             setcookie("identityToken", "", time() - 86400);
         }
     }
     $this->redirect("/");
 }