src/Security/Voter/ExperienceVoter.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace App\Security\Voter;
  3. use App\Constant\EntityStatus;
  4. use App\Entity\Experience;
  5. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  6. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  7. class ExperienceVoter extends Voter
  8. {
  9.     const CAN_VIEW 'CAN_VIEW';
  10.     protected function supports($attribute$subject): bool
  11.     {
  12.         return $attribute === self::CAN_VIEW;
  13.     }
  14.     protected function voteOnAttribute($attribute$subjectTokenInterface $token): bool
  15.     {
  16.         switch ($attribute) {
  17.             case self::CAN_VIEW:
  18.                 return $this->canView($subject);
  19.         }
  20.         throw new \LogicException(sprintf('Attribute "%s" not handled'$attribute));
  21.     }
  22.     private function canView($subject): bool
  23.     {
  24.         if (!$subject instanceof Experience) {
  25.             return false;
  26.         }
  27.         return !in_array($subject->getStatus(), [EntityStatus::DRAFT]);
  28.     }
  29. }