vendor/symfony/security-http/Firewall.php line 90

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Security\Http;
  11. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  14. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  15. use Symfony\Component\HttpKernel\KernelEvents;
  16. use Symfony\Component\Security\Http\Firewall\AccessListener;
  17. use Symfony\Component\Security\Http\Firewall\LogoutListener;
  18. /**
  19.  * Firewall uses a FirewallMap to register security listeners for the given
  20.  * request.
  21.  *
  22.  * It allows for different security strategies within the same application
  23.  * (a Basic authentication for the /api, and a web based authentication for
  24.  * everything else for instance).
  25.  *
  26.  * @author Fabien Potencier <fabien@symfony.com>
  27.  */
  28. class Firewall implements EventSubscriberInterface
  29. {
  30.     private $map;
  31.     private $dispatcher;
  32.     private $exceptionListeners;
  33.     public function __construct(FirewallMapInterface $mapEventDispatcherInterface $dispatcher)
  34.     {
  35.         $this->map $map;
  36.         $this->dispatcher $dispatcher;
  37.         $this->exceptionListeners = new \SplObjectStorage();
  38.     }
  39.     public function onKernelRequest(GetResponseEvent $event)
  40.     {
  41.         if (!$event->isMasterRequest()) {
  42.             return;
  43.         }
  44.         // register listeners for this firewall
  45.         $listeners $this->map->getListeners($event->getRequest());
  46.         if (!== \count($listeners)) {
  47.             @trigger_error(sprintf('Not returning an array of 3 elements from %s::getListeners() is deprecated since Symfony 4.2, the 3rd element must be an instance of %s or null.'FirewallMapInterface::class, LogoutListener::class), E_USER_DEPRECATED);
  48.             $listeners[2] = null;
  49.         }
  50.         $authenticationListeners $listeners[0];
  51.         $exceptionListener $listeners[1];
  52.         $logoutListener $listeners[2];
  53.         if (null !== $exceptionListener) {
  54.             $this->exceptionListeners[$event->getRequest()] = $exceptionListener;
  55.             $exceptionListener->register($this->dispatcher);
  56.         }
  57.         $authenticationListeners = function () use ($authenticationListeners$logoutListener) {
  58.             $accessListener null;
  59.             foreach ($authenticationListeners as $listener) {
  60.                 if ($listener instanceof AccessListener) {
  61.                     $accessListener $listener;
  62.                     continue;
  63.                 }
  64.                 yield $listener;
  65.             }
  66.             if (null !== $logoutListener) {
  67.                 yield $logoutListener;
  68.             }
  69.             if (null !== $accessListener) {
  70.                 yield $accessListener;
  71.             }
  72.         };
  73.         $this->handleRequest($event$authenticationListeners());
  74.     }
  75.     public function onKernelFinishRequest(FinishRequestEvent $event)
  76.     {
  77.         $request $event->getRequest();
  78.         if (isset($this->exceptionListeners[$request])) {
  79.             $this->exceptionListeners[$request]->unregister($this->dispatcher);
  80.             unset($this->exceptionListeners[$request]);
  81.         }
  82.     }
  83.     /**
  84.      * {@inheritdoc}
  85.      */
  86.     public static function getSubscribedEvents()
  87.     {
  88.         return [
  89.             KernelEvents::REQUEST => ['onKernelRequest'8],
  90.             KernelEvents::FINISH_REQUEST => 'onKernelFinishRequest',
  91.         ];
  92.     }
  93.     protected function handleRequest(GetResponseEvent $event$listeners)
  94.     {
  95.         foreach ($listeners as $listener) {
  96.             $listener->handle($event);
  97.             if ($event->hasResponse()) {
  98.                 break;
  99.             }
  100.         }
  101.     }
  102. }