src/Infrastructure/Security/Voter/ToastSessionVoter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Infrastructure\Security\Voter;
  3. use App\Database\Domain\Entity\Sessions\ToastSession;
  4. use App\Database\Domain\Entity\User\User;
  5. use App\Database\Domain\Repository\CollaboratedSessionRepository;
  6. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  7. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  8. class ToastSessionVoter extends Voter
  9. {
  10.     public const ACCESS_BY_ROLE 'toast_session.access_by_role';
  11.     public const ACCESS 'toast_session.access';
  12.     public const ACCESS_WITH_COLLABORATORS 'toast_session.access_with_collaborators';
  13.     public const ACCESS_BY_IDS 'toast_session.access_by_ids';
  14.     private CollaboratedSessionRepository $collaboratedSessionRepository;
  15.     public function __construct(CollaboratedSessionRepository $collaboratedSessionRepository)
  16.     {
  17.         $this->collaboratedSessionRepository $collaboratedSessionRepository;
  18.     }
  19.     protected function supports(string $attribute$subject): bool
  20.     {
  21.         return in_array($attribute, [self::ACCESSself::ACCESS_BY_IDSself::ACCESS_WITH_COLLABORATORSself::ACCESS_BY_ROLE]);
  22.     }
  23.     /**
  24.      * @param ToastSession $subject
  25.      */
  26.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  27.     {
  28.         /** @var User $user */
  29.         $user $token->getUser();
  30.         if (!$user instanceof User) {
  31.             return false;
  32.         }
  33.         if ($attribute === self::ACCESS_BY_ROLE) {
  34.             return $user->isFullUser() || $user->isPartialUser();
  35.         }
  36.         if ($attribute === self::ACCESS) {
  37.             return $user->getId() === $subject->getUser()->getId();
  38.         }
  39.         if ($attribute === self::ACCESS_WITH_COLLABORATORS) {
  40.             $collaboratedSession $this->collaboratedSessionRepository->findBy(['session' => $subject'collaboratedUser' => $user]);
  41.             if (count($collaboratedSession)) {
  42.                 return true;
  43.             }
  44.             return $user->getId() === $subject->getUser()->getId();
  45.         }
  46.         if ($attribute === self::ACCESS_BY_IDS) {
  47.             foreach ($subject as $uuid) {
  48.                 if (!in_array($uuid$user->getSessions()->toArray())) { // Checking if all sessions belong to the user
  49.                     $collaboratedSession $this->collaboratedSessionRepository->findBy(['session' => $subject'collaboratedUser' => $user]);
  50.                     if (null !== $collaboratedSession) {
  51.                         continue;
  52.                     }
  53.                     return false;
  54.                 }
  55.             }
  56.             return true;
  57.         }
  58.         return false;
  59.     }
  60. }