src/Security/Authorization/Voter/AccessRightVoter.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Security\Authorization\Voter;
  3. use Doctrine\Common\Util\ClassUtils;
  4. use Doctrine\ORM\EntityManager;
  5. use App\AccessRight\AccessRightRegistry;
  6. use App\Entity\Core\User;
  7. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  8. use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface;
  9. /**
  10.  * Class AccessRightVoter.
  11.  */
  12. class AccessRightVoter implements VoterInterface
  13. {
  14.     /**
  15.      * @var AccessRightRegistry
  16.      */
  17.     private $registry;
  18.     /**
  19.      * @var EntityManager
  20.      */
  21.     private $entityManager;
  22.     /**
  23.      * Construct.
  24.      */
  25.     function __construct(AccessRightRegistry $registryEntityManager $entityManager null)
  26.     {
  27.         $this->registry $registry;
  28.         $this->entityManager $entityManager;
  29.     }
  30.     /**
  31.      * @param string $attribute
  32.      *
  33.      * @return bool
  34.      */
  35.     public function supportsAttribute($attribute)
  36.     {
  37.         return true;
  38.     }
  39.     /**
  40.      * @param string $class
  41.      *
  42.      * @return bool
  43.      */
  44.     public function supportsClass($class)
  45.     {
  46.         return true;
  47.     }
  48.     /**
  49.      * Vote to decide access on a particular object.
  50.      *
  51.      * @param TokenInterface $token
  52.      * @param object $object
  53.      * @param array $attributes
  54.      *
  55.      * @return int
  56.      */
  57.     public function vote(TokenInterface $token$object, array $attributes)
  58.     {
  59.         // the current token must have a User
  60.         if (!($token->getUser() instanceof User)) {
  61.             return VoterInterface::ACCESS_ABSTAIN;
  62.         }
  63.         // support of Doctrine namespace alias
  64.         if (is_string($object) && strpos($object':') && $this->entityManager) {
  65.             list($alias$class) = explode(':'$object);
  66.             $namespace $this->entityManager->getConfiguration()->getEntityNamespace($alias);
  67.             $object $namespace '\\' $class;
  68.         }
  69.         // Run overs user access rights
  70.         foreach ($attributes as $attribute) {
  71.             foreach ($token->getUser()->getAccessRights() as $accessRightId) {
  72.                 //$className = is_string($object) ? $object : get_class($object);
  73.                 $className is_string($object) ? $object ClassUtils::getRealClass(get_class($object));
  74.                 //$accessRight = $this->registry->getAccessRightById($accessRightId);
  75.                 $id $this->registry->getByName($accessRightId);
  76.                 $accessRight $this->registry->getAccessRightById($id);
  77.                 if ($accessRight && $accessRight->supportsClass($className) && $accessRight->supportsAttribute($attribute)) {
  78.                     if ($accessRight->isGranted($tokenis_object($object) ? $object null$attribute)) {
  79.                         return VoterInterface::ACCESS_GRANTED;
  80.                     }
  81.                 }
  82.             }
  83.         }
  84.         return VoterInterface::ACCESS_ABSTAIN;
  85.     }
  86. }