src/Security/Voter/NotificacionUsuarioVoter.php line 10

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\NotificacionUsuario;
  7. class NotificacionUsuarioVoter extends Voter
  8. {
  9.     // these strings are just invented: you can use anything
  10.     const ACCESS 'NOTIFICACION_ACCESS';
  11.     protected function supports(string $attribute$subject)
  12.     {
  13.         // replace with your own logic
  14.         // https://symfony.com/doc/current/security/voters.html
  15.         return in_array($attribute, [self::ACCESS])
  16.             && $subject instanceof \App\Entity\Notificacion\NotificacionUsuario;
  17.     }
  18.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  19.     {
  20.         $user $token->getUser();
  21.         // if the user is anonymous, do not grant access
  22.         if (!$user instanceof UserInterface) {
  23.             return false;
  24.         }
  25.         // ... (check conditions and return true to grant permission) ...
  26.         switch ($attribute) {
  27.             case self::ACCESS:
  28.                 // logic to determine if the user can ACCESS
  29.                 return $this->canAccess($subject$user);
  30.                 break;
  31.         }
  32.         return false;
  33.     }
  34.     private function canAccess(NotificacionUsuario $subjectUserInterface $user): bool
  35.     {
  36.         $return $user->getUserIdentifier() === $subject->getUsuario()->getUserIdentifier();
  37.         return $return;
  38.     }
  39. }