示例#1
0
 /**
  * @param ProfileEvent $event
  */
 public function updateResourceAccess(ProfileEvent $event)
 {
     if (null !== ($profile = ProfileQuery::create()->findPk($event->getId()))) {
         ProfileResourceQuery::create()->filterByProfileId($event->getId())->delete();
         foreach ($event->getResourceAccess() as $resourceCode => $accesses) {
             $manager = new AccessManager(0);
             $manager->build($accesses);
             $profileResource = new ProfileResource();
             $profileResource->setProfileId($event->getId())->setResource(ResourceQuery::create()->findOneByCode($resourceCode))->setAccess($manager->getAccessValue());
             $profileResource->save();
         }
         $event->setProfile($profile);
     }
 }
示例#2
0
 public function getPermissions()
 {
     $profileId = $this->getProfileId();
     if (null === $profileId || 0 === $profileId) {
         return AdminResources::SUPERADMINISTRATOR;
     }
     $userResourcePermissionsQuery = ProfileResourceQuery::create()->joinResource("resource", Criteria::LEFT_JOIN)->withColumn('resource.code', 'code')->filterByProfileId($profileId)->find();
     $userModulePermissionsQuery = ProfileModuleQuery::create()->joinModule("module", Criteria::LEFT_JOIN)->withColumn('module.code', 'code')->filterByProfileId($profileId)->find();
     $userPermissions = array();
     foreach ($userResourcePermissionsQuery as $userResourcePermission) {
         $userPermissions[$userResourcePermission->getVirtualColumn('code')] = new AccessManager($userResourcePermission->getAccess());
     }
     foreach ($userModulePermissionsQuery as $userModulePermission) {
         $userPermissions['module'][strtolower($userModulePermission->getVirtualColumn('code'))] = new AccessManager($userModulePermission->getAccess());
     }
     return $userPermissions;
 }
示例#3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Resource is new, it will return
  * an empty collection; or if this Resource has previously
  * been saved, it will retrieve related ProfileResources from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Resource.
  *
  * @param      Criteria $criteria optional Criteria object to narrow the query
  * @param      ConnectionInterface $con optional connection object
  * @param      string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return Collection|ChildProfileResource[] List of ChildProfileResource objects
  */
 public function getProfileResourcesJoinProfile($criteria = null, $con = null, $joinBehavior = Criteria::LEFT_JOIN)
 {
     $query = ChildProfileResourceQuery::create(null, $criteria);
     $query->joinWith('Profile', $joinBehavior);
     return $this->getProfileResources($query, $con);
 }
示例#4
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see ProfileResource::setDeleted()
  * @see ProfileResource::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(ProfileResourceTableMap::DATABASE_NAME);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ChildProfileResourceQuery::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;
     }
 }
 /**
  * Performs an INSERT on the database, given a ProfileResource or Criteria object.
  *
  * @param mixed               $criteria Criteria or ProfileResource 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(ProfileResourceTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from ProfileResource object
     }
     // Set the correct dbName
     $query = ProfileResourceQuery::create()->mergeWith($criteria);
     try {
         // use transaction because $criteria could contain info
         // for more than one table (I guess, conceivably)
         $con->beginTransaction();
         $pk = $query->doInsert($con);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
     return $pk;
 }