src/Security/Voter/NotificacionVoter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  4. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  5. use Symfony\Component\Security\Core\User\UserInterface;
  6. use App\Entity\Notificacion\Notificacion;
  7. use App\Repository\Notificacion\NotificacionAreasRepository;
  8. class NotificacionVoter extends Voter
  9. {
  10.     // these strings are just invented: you can use anything
  11.     const ACCESS 'NOTIFICACION_ACCESS';
  12.     
  13.     private $notificacionAreasRepository;
  14.     public function __construct(NotificacionAreasRepository $notificacionAreasRepository)
  15.     {
  16.         $this->notificacionAreasRepository $notificacionAreasRepository;
  17.     }
  18.     protected function supports(string $attribute$subject)
  19.     {
  20.         // replace with your own logic
  21.         // https://symfony.com/doc/current/security/voters.html
  22.         return in_array($attribute, [self::ACCESS])
  23.             && $subject instanceof \App\Entity\Notificacion\Notificacion;
  24.     }
  25.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  26.     {
  27.         $user $token->getUser();
  28.         // if the user is anonymous, do not grant access
  29.         if (!$user instanceof UserInterface) {
  30.             return false;
  31.         }
  32.         // ... (check conditions and return true to grant permission) ...
  33.         switch ($attribute) {
  34.             case self::ACCESS:
  35.                 // logic to determine if the user can ACCESS
  36.                 return $this->canAccess($subject$user);
  37.                 break;
  38.         }
  39.         return false;
  40.     }
  41.     private function canAccess(Notificacion $subjectUserInterface $user): bool
  42.     {
  43.         if($this->notificacionAreasRepository->esUsuarioAdmin($user->getUserIdentifier()))
  44.             return true;
  45.         return $this->notificacionAreasRepository->mismaArea(
  46.             $user->getUserIdentifier(), 
  47.             $subject->getSsoUsuario()
  48.         );
  49.     }
  50. }