src/Security/Authorization/Voter/EmployeeVoter.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Security\Authorization\Voter;
  3. use App\Entity\UserGroupModule;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. class EmployeeVoter implements \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
  6. {
  7.     /**
  8.      *
  9.      * @var \Doctrine\ORM\EntityManager
  10.      */
  11.     protected $em;
  12.     const EDIT 'edit';
  13.     public function __construct(EntityManagerInterface $em)
  14.     {
  15.         $this->em $em;
  16.     }
  17.     public function supportsAttribute($attribute)
  18.     {
  19.         return in_array($attribute, array(
  20.             self::EDIT,
  21.         ));
  22.     }
  23.     public function supportsClass($class)
  24.     {
  25.         $supportedClass 'FOS\UserBundle\Model\User';
  26.         return is_object($class) && ($supportedClass === get_class($class) || is_subclass_of($class$supportedClass));
  27.     }
  28.     public function vote(\Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token$userToEdit, array $attributes)
  29.     {
  30.         // check if class of this object is supported by this voter
  31.         if (!$this->supportsClass($userToEdit))
  32.         {
  33.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  34.         }
  35.         // check if the voter is used correct, only allow one attribute
  36.         // this isn't a requirement, it's just one easy way for you to
  37.         // design your voter
  38.         if (!== count($attributes))
  39.         {
  40.             throw new \InvalidArgumentException('Only one attribute is allowed for EDIT');
  41.         }
  42.         // set the attribute to check against
  43.         $attribute $attributes[0];
  44.         // check if the given attribute is covered by this voter
  45.         if (!$this->supportsAttribute($attribute))
  46.         {
  47.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  48.         }
  49.         // get current logged in user
  50.         $user $token->getUser();
  51.         // make sure there is a user object (i.e. that the user is logged in)
  52.         if (!$user instanceof \Symfony\Component\Security\Core\User\UserInterface)
  53.         {
  54.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
  55.         }
  56.         /** @var $groupModule UserGroupModule */
  57.         $groupModule $user->getUserGroup() ? $user->getUserGroup()->getGroupModuleByName('employees') : null;
  58.         if (!$groupModule)
  59.         {
  60.             return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
  61.         }
  62.         switch ($attribute)
  63.         {
  64.             case self::EDIT:
  65.                 // the data object could have for example a method isPrivate()
  66.                 // which checks the Boolean attribute $private
  67.                 if ($groupModule->getEditm() === 0)
  68.                 {
  69.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
  70.                 }
  71.                 elseif ($groupModule->getEditm() === && ($user->getId() === $userToEdit->getId() || ($userToEdit->getCreatedBy() && $user->getId() == $userToEdit->getCreatedBy()->getId())))
  72.                 {
  73.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  74.                 }
  75.                 elseif ($groupModule->getEditm() === 2)
  76.                 {
  77.                     return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
  78.                 }
  79.                 break;
  80.         }
  81.         return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
  82.     }
  83. }