Exemple #1
0
 /**
  * Returns a set of allowed action ids
  *
  * @param User $user
  * @return Set
  */
 private function getPermissionTable(User $user)
 {
     $userId = $user->getId();
     if ($this->permissionTable->has($userId)) {
         return $this->permissionTable->get($userId);
     }
     // always allow what guests can do
     $guestGroup = GroupQuery::create()->findOneByIsGuest(true);
     // collect groups from user
     $groups = GroupQuery::create()->filterByUser($user)->find();
     $userGroup = GroupQuery::create()->filterByOwnerId($userId)->findOne();
     if ($userGroup) {
         $groups[] = $userGroup;
     }
     $groups[] = $guestGroup;
     // ... structure them
     $permissionTable = new Set();
     foreach ($groups as $group) {
         foreach ($group->getActions() as $action) {
             $permissionTable->add($action->getId());
         }
     }
     $this->permissionTable->set($userId, $permissionTable);
     return $this->permissionTable->get($userId);
 }
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $id = $this->getParam('id');
     $group = GroupQuery::create()->findOneById($id);
     // run response
     return $this->response->run($request, $group);
 }
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $body = $request->getContent();
     if (!isset($body['data'])) {
         throw new InvalidParameterException();
     }
     $data = $body['data'];
     $id = $this->getParam('id');
     $group = GroupQuery::create()->findOneById($id);
     if ($group === null) {
         throw new ResourceNotFoundException('group with id ' . $id . ' does not exist');
     }
     // remove all relationships before
     UserGroupQuery::create()->filterByGroup($group)->deleteAll();
     // add them
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             throw new InvalidParameterException();
         }
         $user = UserQuery::create()->findOneById($entry['id']);
         $group->addUser($user);
         $group->save();
     }
     // run response
     return $this->response->run($request, $group);
 }
Exemple #4
0
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $user = $this->getServiceContainer()->getAuthManager()->getUser();
     // always allow what guests can do
     $guestGroup = GroupQuery::create()->findOneByIsGuest(true);
     // collect groups from user
     $groups = GroupQuery::create()->filterByUser($user)->find();
     $userGroup = GroupQuery::create()->filterByOwnerId($user->getId())->findOne();
     if ($userGroup) {
         $groups[] = $userGroup;
     }
     $groups[] = $guestGroup;
     // ... structure them
     $permissions = [];
     foreach ($groups as $group) {
         foreach ($group->getActions() as $action) {
             $moduleName = $action->getModule()->getName();
             if (!isset($permissions[$moduleName])) {
                 $permissions[$moduleName] = [];
             }
             $permissions[$moduleName][] = $action->getName();
         }
     }
     return $this->responder->run($request, new Found(['permissions' => $permissions]));
 }
Exemple #5
0
 /**
  * @param User $user
  */
 protected function postCreate(User $user)
 {
     $userGroup = GroupQuery::create()->filterByIsDefault(true)->findOne();
     if ($userGroup) {
         $user->addGroup($userGroup);
         $user->save();
     }
 }
Exemple #6
0
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     // read
     $page = $this->getParam('page');
     $perPage = $this->getParam('per_page');
     $group = GroupQuery::create()->paginate($page, $perPage);
     // run response
     return $this->response->run($request, $group);
 }
Exemple #7
0
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     // read
     $id = $this->getParam('id');
     $group = GroupQuery::create()->findOneById($id);
     // check existence
     if ($group === null) {
         throw new ResourceNotFoundException('group not found.');
     }
     // run response
     return $this->response->run($request, $group);
 }
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     // read
     $id = $this->getParam('id');
     $group = GroupQuery::create()->findOneById($id);
     // check existence
     if ($group === null) {
         throw new ResourceNotFoundException('group not found.');
     }
     // hydrate
     $data = json_decode($request->getContent(), true);
     $group = HydrateUtils::hydrate($data, $group, ['id', 'owner_id', 'name', 'is_guest', 'is_default', 'is_active', 'is_system']);
     // validate
     if (!$group->validate()) {
         throw new ValidationException($group->getValidationFailures());
     } else {
         return $this->response->run($request, $group);
     }
 }
Exemple #9
0
 /**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $body = $request->getContent();
     if (!isset($body['data'])) {
         throw new InvalidParameterException();
     }
     $data = $body['data'];
     $id = $this->getParam('id');
     $group = GroupQuery::create()->findOneById($id);
     if ($group === null) {
         throw new ResourceNotFoundException('group with id ' . $id . ' does not exist');
     }
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             throw new InvalidParameterException();
         }
         $action = ActionQuery::create()->findOneById($entry['id']);
         $group->addAction($action);
         $group->save();
     }
     // run response
     return $this->response->run($request, $group);
 }
Exemple #10
0
 /**
  * Internal update mechanism of Groups on User
  * 
  * @param User $model
  * @param mixed $data
  */
 protected function doUpdateGroups(User $model, $data)
 {
     // remove all relationships before
     UserGroupQuery::create()->filterByUser($model)->delete();
     // add them
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for Group';
         } else {
             $related = GroupQuery::create()->findOneById($entry['id']);
             $model->addGroup($related);
         }
     }
     if (count($errors) > 0) {
         throw new ErrorsException($errors);
     }
 }
Exemple #11
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;
 }
Exemple #12
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->addUserGroups($this);
            */
     }
     return $this->aGroup;
 }
Exemple #13
0
 /**
  * Gets the number of Group objects related by a many-to-many relationship
  * to the current object by way of the kk_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);
     }
 }
Exemple #14
0
 /**
  * Returns one Group with the given id from cache
  * 
  * @param mixed $id
  * @return Group|null
  */
 protected function get($id)
 {
     if ($this->pool === null) {
         $this->pool = new Map();
     } else {
         if ($this->pool->has($id)) {
             return $this->pool->get($id);
         }
     }
     $model = GroupQuery::create()->findOneById($id);
     $this->pool->set($id, $model);
     return $model;
 }
Exemple #15
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);
     });
 }
Exemple #16
0
 /**
  * @param string $name
  * @return Group
  */
 private function getGroup($name)
 {
     switch ($name) {
         case 'guest':
             if ($this->guestGroup === null) {
                 $this->guestGroup = GroupQuery::create()->filterByIsGuest(true)->findOne();
             }
             return $this->guestGroup;
         case 'user':
             if ($this->userGroup === null) {
                 $this->userGroup = GroupQuery::create()->filterByIsDefault(true)->findOne();
             }
             return $this->userGroup;
         case 'admin':
             if ($this->adminGroup === null) {
                 $this->adminGroup = GroupQuery::create()->findOneById(3);
             }
             return $this->adminGroup;
     }
 }
Exemple #17
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;
 }