src/EventSubscriber/AutorizationSubscriber.php line 29

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Symfony\Component\HttpFoundation\RedirectResponse;
  5. use Symfony\Component\HttpFoundation\RequestStack;
  6. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  7. use Symfony\Component\HttpKernel\Event\RequestEvent;
  8. use Symfony\Component\HttpKernel\KernelEvents;
  9. class AutorizationSubscriber implements EventSubscriberInterface
  10. {
  11.     /**
  12.      * @var \Symfony\Component\HttpFoundation\RequestStack
  13.      */
  14.     private RequestStack $requestStack;
  15.     public function __construct(RequestStack $requestStack)
  16.     {
  17.         $this->requestStack $requestStack;
  18.     }
  19.     public function onKernelRequest(RequestEvent $event)
  20.     {
  21.         $request $event->getRequest();
  22.         $routeName  $request->attributes->get('_route');
  23.         if (!$this->requestStack->getSession()->has('admin') && $routeName == 'admin') {
  24.             $event->setResponse(new RedirectResponse('login'));
  25.         }
  26.     }
  27.     public static function getSubscribedEvents()
  28.     {
  29.         return [
  30.             // must be registered before (i.e. with a higher priority than) the default Locale listener
  31.             KernelEvents::REQUEST => [['onKernelRequest'14]],
  32.         ];
  33.     }
  34. }