src/Security/Voter/AddressVoter.php line 12

  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Repository\UserRepository;
  4. use Doctrine\ORM\NonUniqueResultException;
  5. use Symfony\Bundle\SecurityBundle\Security;
  6. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  7. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  8. use Symfony\Component\Security\Core\User\UserInterface;
  9. class AddressVoter extends Voter
  10. {
  11.     public const EDIT 'ADDRESS_EDIT';
  12.     public const VIEW 'ADDRESS_VIEW';
  13.     private $security;
  14.     private $userRepository;
  15.     public function __construct(Security $securityUserRepository $userRepository)
  16.     {
  17.         $this->security $security;
  18.         $this->userRepository $userRepository;
  19.     }
  20.     protected function supports(string $attributemixed $subject): bool
  21.     {
  22.         // replace with your own logic
  23.         // https://symfony.com/doc/current/security/voters.html
  24.         return in_array($attribute, [self::EDITself::VIEW])
  25.             && $subject instanceof \App\Entity\Address;
  26.     }
  27.     /**
  28.      * @throws NonUniqueResultException
  29.      */
  30.     protected function voteOnAttribute(string $attributemixed $subjectTokenInterface $token): bool
  31.     {
  32.         $user $token->getUser();
  33.         // if the user is anonymous, do not grant access
  34.         if (!$user instanceof UserInterface) {
  35.             return false;
  36.         }
  37.         // Address belongs to Student, ParentData or Guardian
  38.         // Find out which one it belongs to and check if the user requesting it is the owner
  39.         // TODO: This could and should be refactored to boost performance and minimize query searches
  40.         if ($subject->getStudent()) {
  41.             $fromStudent $this->userRepository->getUserFromStudent($subject->getStudent()->getId()) === $user;
  42.         } elseif ($subject->getGuardian()) {
  43.             $fromGuardian $this->userRepository->getUserFromGuardian($subject->getGuardian()->getId()) === $user;
  44.         } elseif ($subject->getParent()) {
  45.             // No need to fetch more than one student to verify who is the user, first() is enough
  46.             $fromParent $this->userRepository->getUserFromParent($subject->getParent()->getId()) === $user;
  47.         } else {
  48.             return false;
  49.         }
  50.         // ... (check conditions and return true to grant permission) ...
  51.         $accessIsGranted = match ($attribute) {
  52.             'ADDRESS_VIEW''ADDRESS_EDIT' =>
  53.                 $this->security->isGranted('ROLE_ADMIN')
  54.                 ||
  55.                 in_array(true, [$fromStudent ?? false$fromGuardian ?? false$fromParent ?? false])
  56.         };
  57.         return $accessIsGranted;
  58.     }
  59. }