Ejemplo n.º 1
0
 protected function updatePermissions()
 {
     if ($this->data["permission"] != 3) {
         $this->sendFlashMessage("You do not have permission to update pack with ID " . $this->data["pack"]->getId() . ".", "error");
         $this->redirect("/");
     }
     if (isset($_POST["user"])) {
         foreach ($_POST["user"] as $user) {
             if (!isset($user["username"]) || $user["username"] == "") {
                 continue;
             }
             $u = UserQuery::create()->findOneByUsername($user["username"]);
             if ($u) {
                 if ($u == $this->data["loggedUser"]) {
                     $this->sendFlashMessage("You can not add permission to yourself.", "error");
                     continue;
                 }
                 $permission = PackPermissionQuery::create()->filterByUser($u)->filterByPack($this->data["pack"])->findOneOrCreate();
                 if (isset($user["permission"])) {
                     $permission->setValue($user["permission"]);
                 } else {
                     $permission->delete();
                     continue;
                 }
                 $permission->setPack($this->data["pack"]);
                 $permission->setUser($u);
                 $permission->save();
             } else {
                 $this->sendFlashMessage("User " . $user["username"] . " does not exist.", "error");
             }
         }
     }
     if (isset($_POST["group"])) {
         foreach ($_POST["group"] as $group) {
             if (!isset($group["name"]) || $group["name"] == "") {
                 continue;
             }
             $g = GroupQuery::create()->filterByOwner($this->data["loggedUser"])->filterByName($group["name"])->findOne();
             if ($g && $g->getOwnerId() == $this->data["loggedUser"]->getId()) {
                 $permission = PackPermissionQuery::create()->filterByGroup($g)->filterByPack($this->data["pack"])->findOneOrCreate();
                 if (isset($group["permission"])) {
                     $permission->setValue($group["permission"]);
                 } else {
                     $permission->delete();
                     continue;
                 }
                 $permission->setPack($this->data["pack"]);
                 $permission->setGroup($g);
                 $permission->save();
             } else {
                 $this->sendFlashMessage("Group with name" . $group["name"] . " is not your or does not exist.", "error");
             }
         }
     }
     $this->sendFlashMessage("Permissions was updated.", "info");
     $this->redirect("/pack/" . $this->data["pack"]->getId() . "/settings");
 }
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 = ChildGroupQuery::create();
     $criteria->add(GroupTableMap::COL_ID, $this->id);
     return $criteria;
 }
Ejemplo n.º 3
0
 /**
  * Get the associated ChildGroup object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildGroup The associated ChildGroup object.
  * @throws PropelException
  */
 public function getGroup(ConnectionInterface $con = null)
 {
     if ($this->aGroup === null && $this->group_id !== null) {
         $this->aGroup = ChildGroupQuery::create()->findPk($this->group_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->aGroup->addPackPermissions($this);
            */
     }
     return $this->aGroup;
 }
Ejemplo n.º 4
0
 /**
  * Returns a new ChildGroupQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildGroupQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildGroupQuery) {
         return $criteria;
     }
     $query = new ChildGroupQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Ejemplo n.º 5
0
 /**
  * Gets the number of Group objects related by a many-to-many relationship
  * to the current object by way of the user_group cross-reference table.
  *
  * @param      Criteria $criteria Optional query object to filter the query
  * @param      boolean $distinct Set to true to force count distinct
  * @param      ConnectionInterface $con Optional connection object
  *
  * @return int the number of related Group objects
  */
 public function countGroups(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collGroupsPartial && !$this->isNew();
     if (null === $this->collGroups || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collGroups) {
             return 0;
         } else {
             if ($partial && !$criteria) {
                 return count($this->getGroups());
             }
             $query = ChildGroupQuery::create(null, $criteria);
             if ($distinct) {
                 $query->distinct();
             }
             return $query->filterByUser($this)->count($con);
         }
     } else {
         return count($this->collGroups);
     }
 }
Ejemplo n.º 6
0
 protected function load($args)
 {
     $params = $args["params"];
     $this->data["group"] = GroupQuery::create()->findPK($params["id"]);
     if (!$this->data["group"]) {
         $this->sendFlashMessage("Group with ID " . $params["id"] . " does not exist.", "error");
         $this->redirect("/404");
     }
     return true;
 }
Ejemplo n.º 7
0
 /**
  * Performs an INSERT on the database, given a Group or Criteria object.
  *
  * @param mixed               $criteria Criteria or Group 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(GroupTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Group object
     }
     if ($criteria->containsKey(GroupTableMap::COL_ID) && $criteria->keyContainsValue(GroupTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . GroupTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = GroupQuery::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);
     });
 }