src/Security/Authorization/Voter/ModuleVoter.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Security\Authorization\Voter;
  3. use App\Entity\Module;
  4. use App\Entity\UserGroup;
  5. use App\Entity\UserGroupModule;
  6. use Doctrine\ORM\EntityManagerInterface;
  7. class ModuleVoter implements \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
  8. {
  9.     /**
  10.      *
  11.      * @var \Doctrine\ORM\EntityManager
  12.      */
  13.     protected $em;
  14.     protected $modules;
  15.     const VIEW 'view';
  16.     const CREATE 'create';
  17.     const EDIT 'edit';
  18.     const EDIT_ALL 'edit_all';
  19.     const SETTINGS 'settings';
  20.     public function __construct(EntityManagerInterface $em)
  21.     {
  22.         $this->em $em;
  23.     }
  24.     public function supportsAttribute($attribute)
  25.     {
  26.         return in_array($attribute, array(
  27.             self::VIEW,
  28.             self::CREATE,
  29.             self::EDIT,
  30.             self::EDIT_ALL,
  31.             self::SETTINGS,
  32.         ));
  33.     }
  34.     public function supportsClass($module)
  35.     {
  36.         $supportedModules = array();
  37.         if(!$this->modules) {
  38.             $this->modules $this->em->getRepository('App:Module')->findBy(array(
  39.                 'active' => 1
  40.             ));
  41.         }
  42.         /** @var $item Module */
  43.         foreach($this->modules as $item) {
  44.             $supportedModules[] = $item->getCodeName();
  45.         }
  46.         if(in_array($module$supportedModules)) {
  47.             return true;
  48.         }
  49.         return false;
  50.     }
  51.     public function vote(\Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token$module, array $attributes)
  52.     {
  53.         // check if class of this object is supported by this voter
  54.         if (!$this->supportsClass($module))
  55.         {
  56.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  57.         }
  58.         // check if the voter is used correct, only allow one attribute
  59.         // this isn't a requirement, it's just one easy way for you to
  60.         // design your voter
  61.         if (!== count($attributes))
  62.         {
  63.             throw new \InvalidArgumentException('Only one attribute is allowed for VIEW');
  64.         }
  65.         // set the attribute to check against
  66.         $attribute $attributes[0];
  67.         // check if the given attribute is covered by this voter
  68.         if (!$this->supportsAttribute($attribute))
  69.         {
  70.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  71.         }
  72.         // get current logged in user
  73.         $user $token->getUser();
  74.         // make sure there is a user object (i.e. that the user is logged in)
  75.         if (!$user instanceof \Symfony\Component\Security\Core\User\UserInterface)
  76.         {
  77.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
  78.         }
  79.         /** @var $groupModule UserGroupModule */
  80.         $groupModule $user->getUserGroup() ? $user->getUserGroup()->getGroupModuleByName($module) : null;
  81.         if (!$groupModule)
  82.         {
  83.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  84.         }
  85.         switch ($attribute)
  86.         {
  87.             case self::VIEW:
  88.                 // the data object could have for example a method isPrivate()
  89.                 // which checks the Boolean attribute $private
  90.                 if ($groupModule->getViewm())
  91.                 {
  92.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  93.                 }
  94.                 break;
  95.             case self::CREATE:
  96.                 // the data object could have for example a method isPrivate()
  97.                 // which checks the Boolean attribute $private
  98.                 if ($groupModule->getCreatem())
  99.                 {
  100.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  101.                 }
  102.                 break;
  103.             case self::EDIT:
  104.                 // the data object could have for example a method isPrivate()
  105.                 // which checks the Boolean attribute $private
  106.                 if ($groupModule->getEditm() === || $groupModule->getEditm() === 2)
  107.                 {
  108.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  109.                 }
  110.                 break;
  111.             case self::EDIT_ALL:
  112.                 // the data object could have for example a method isPrivate()
  113.                 // which checks the Boolean attribute $private
  114.                 if ($groupModule->getEditm() === 2)
  115.                 {
  116.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  117.                 }
  118.                 break;
  119.             case self::SETTINGS:
  120.                 // the data object could have for example a method isPrivate()
  121.                 // which checks the Boolean attribute $private
  122.                 if ($groupModule->getEditm() === 2)
  123.                 {
  124.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  125.                 }
  126.                 break;
  127.         }
  128.         return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
  129.     }
  130. }