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

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.     private $map;
  30.     private $dispatcher;
  31.     private $exceptionListeners;
  32.     public function __construct(FirewallMapInterface $mapEventDispatcherInterface $dispatcher) {
  33.         $this->map $map;
  34.         $this->dispatcher $dispatcher;
  35.         $this->exceptionListeners = new \SplObjectStorage();
  36.     }
  37.     public function onKernelRequest(GetResponseEvent $event) {
  38.         if (!$event->isMasterRequest()) {
  39.             return;
  40.         }
  41.         // register listeners for this firewall
  42.         $listeners $this->map->getListeners($event->getRequest());
  43.         if (!== \count($listeners)) {
  44.             @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);
  45.             $listeners[2] = null;
  46.         }
  47.         $authenticationListeners $listeners[0];
  48.         $exceptionListener $listeners[1];
  49.         $logoutListener $listeners[2];
  50.         if (null !== $exceptionListener) {
  51.             $this->exceptionListeners[$event->getRequest()] = $exceptionListener;
  52.             $exceptionListener->register($this->dispatcher);
  53.         }
  54.         $authenticationListeners = function () use ($authenticationListeners$logoutListener) {
  55.             $accessListener null;
  56.             foreach ($authenticationListeners as $listener) {
  57. if (get_class($listener) == "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener") {
  58.     $test ;
  59. }
  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.         $request $event->getRequest();
  77.         if (isset($this->exceptionListeners[$request])) {
  78.             $this->exceptionListeners[$request]->unregister($this->dispatcher);
  79.             unset($this->exceptionListeners[$request]);
  80.         }
  81.     }
  82.     /**
  83.      * {@inheritdoc}
  84.      */
  85.     public static function getSubscribedEvents() {
  86.         return [
  87.             KernelEvents::REQUEST => ['onKernelRequest'8],
  88.             KernelEvents::FINISH_REQUEST => 'onKernelFinishRequest',
  89.         ];
  90.     }
  91.     protected function handleRequest(GetResponseEvent $event$listeners) {
  92.         foreach ($listeners as $listener) {
  93.             $listener->handle($event);
  94.             if ($event->hasResponse()) {
  95.                 break;
  96.             }
  97.         }
  98.     }
  99. }