src/EventListener/KernelRequestListener.php line 27

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use App\Entity\User;
  4. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  5. use Symfony\Component\HttpFoundation\RedirectResponse;
  6. use Symfony\Component\HttpKernel\Event\RequestEvent;
  7. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  8. class KernelRequestListener implements EventSubscriberInterface
  9. {
  10.     private $sam;
  11.     public function __construct(TokenStorageInterface $sam)
  12.     {
  13.         $this->sam $sam;
  14.     }
  15.     public function onKernelRequest(RequestEvent $event)
  16.     {
  17.         /**
  18.          * @var User $user
  19.          */
  20.         $token $this->sam->getToken();
  21.         $user $token?->getUser();
  22.         if( is_a($userUser::class) && $user->getDeactivatedAt() && $event->getRequest()->getRequestUri() != "/"){
  23.             $response = new RedirectResponse("/");
  24.             $event->setResponse($response);
  25.         }
  26.     }
  27.     public static function getSubscribedEvents()
  28.     {
  29.         return [
  30.             RequestEvent::class => 'onKernelRequest'
  31.         ];
  32.     }
  33. }