src/Security/Voter/PropertyImageVoter.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Entity\AbstractCollaborator;
  4. use App\Entity\PropertyImages;
  5. use Exception;
  6. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  7. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  8. use Symfony\Component\Security\Core\Security;
  9. use Symfony\Component\Security\Core\User\UserInterface;
  10. /**
  11.  * @package App\Security\Voter
  12.  * @class PropertyImagesVoter
  13.  *
  14.  */
  15. class PropertyImageVoter extends Voter
  16. {
  17.     public const PATCH 'PATCH';
  18.     /**
  19.      * @var Security
  20.      */
  21.     private Security $security;
  22.     /**
  23.      * @param Security $security
  24.      */
  25.     public function __construct(Security $security)
  26.     {
  27.         $this->security $security;
  28.     }
  29.     /**
  30.      * @param string $attribute
  31.      * @param mixed $subject
  32.      * @return bool
  33.      */
  34.     protected function supports(string $attribute$subject): bool
  35.     {
  36.         return $attribute === self::PATCH && $subject instanceof PropertyImages;
  37.     }
  38.     /**
  39.      * @throws Exception
  40.      */
  41.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  42.     {
  43.         /** @var UserInterface $user */
  44.         $user $token->getUser();
  45.         // Deny anonymous users
  46.         if (!$user instanceof UserInterface) {
  47.             return false;
  48.         }
  49.         /** @var PropertyImages $subject */
  50.         if ($attribute === self::PATCH) {
  51.             if ($this->security->isGranted(AbstractCollaborator::ROLE_MANAGER) || $user->getUserIdentifier() === $subject->getProperty()->getCollaborator()->getUserIdentifier()) {
  52.                 return true;
  53.             }
  54.             return false;
  55.         }
  56.         throw new Exception(sprintf('Unhandled attribute "%s"'$attribute));
  57.     }
  58. }