src/Security/Voter/FlatVoter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Entity\Flat;
  4. use App\Entity\Resident;
  5. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  6. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. class FlatVoter extends Voter
  9. {
  10.     /** @var string */
  11.     public const FLAT_BELONGS_TO_RESIDENT 'FLAT_BELONGS_TO_RESIDENT';
  12.     private const ATTRIBUTES = [
  13.         self::FLAT_BELONGS_TO_RESIDENT
  14.     ];
  15.     /**
  16.      * @param string $attribute
  17.      * @param mixed $subject
  18.      * @return bool
  19.      */
  20.     protected function supports(string $attributemixed $subject): bool
  21.     {
  22.         return in_array($attributeself::ATTRIBUTES)
  23.             && $subject instanceof Flat;
  24.     }
  25.     /**
  26.      * @param string $attribute
  27.      * @param mixed $subject
  28.      * @param TokenInterface $token
  29.      * @return bool
  30.      */
  31.     protected function voteOnAttribute(string $attributemixed $subjectTokenInterface $token): bool
  32.     {
  33.         $user $token->getUser();
  34.         // if the user is anonymous, do not grant access
  35.         if (!$user instanceof UserInterface) {
  36.             return false;
  37.         }
  38.         return $attribute === self::FLAT_BELONGS_TO_RESIDENT
  39.             && $subject instanceof Flat && $subject->getResident() === $user;
  40.     }
  41. }