src/Security/Voter/UserVoter.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Entity\User;
  4. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  5. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  6. use Symfony\Component\Security\Core\Security;
  7. class UserVoter extends Voter
  8. {
  9.     public function __construct(
  10.         private Security $security
  11.     ) {}
  12.     protected function supports(string $attribute$subject): bool
  13.     {
  14.         // replace with your own logic
  15.         // https://symfony.com/doc/current/security/voters.html
  16.         return in_array($attribute, ['EDIT''DELETE'])
  17.             && $subject instanceof \App\Entity\User;
  18.     }
  19.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  20.     {
  21.         $user $token->getUser();
  22.         // if the user is anonymous, do not grant access
  23.         if (!$user instanceof User) {
  24.             return false;
  25.         }
  26.         if (!$subject instanceof User) {
  27.             throw new \Exception('Wrong type somehow passed');
  28.         }
  29.         if ($this->security->isGranted('ROLE_ADMIN')) {
  30.             return true;
  31.         }
  32.         // ... (check conditions and return true to grant permission) ...
  33.         switch ($attribute) {
  34.             case 'EDIT':
  35.                 // logic to determine if the user can EDIT
  36.                 return $user->getId() === $subject->getId();
  37.         }
  38.         return false;
  39.     }
  40. }