vendor/eckinox/security-bundle/src/Security/PrivilegeVoter.php line 10

Open in your IDE?
  1. <?php
  2. namespace Eckinox\SecurityBundle\Security;
  3. use App\Entity\Security\User;
  4. use App\Entity\Security\AppUser;
  5. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  6. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  7. class PrivilegeVoter extends Voter
  8. {
  9.     protected function supports(string $attribute$subject): bool {
  10.         return strpos($attribute"ROLE_") !== && $subject === null;
  11.     }
  12.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  13.     {
  14.         $user $token->getUser();
  15.         if (!$user instanceof AppUser && !$user instanceof User) {
  16.             return false;
  17.         }
  18.         return $user->hasPrivilege($attribute);
  19.     }
  20. }