vendor/symfony/security/Http/Firewall.php line 61

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <[email protected]>
  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. /**
  17.  * Firewall uses a FirewallMap to register security listeners for the given
  18.  * request.
  19.  *
  20.  * It allows for different security strategies within the same application
  21.  * (a Basic authentication for the /api, and a web based authentication for
  22.  * everything else for instance).
  23.  *
  24.  * @author Fabien Potencier <[email protected]>
  25.  */
  26. class Firewall implements EventSubscriberInterface
  27. {
  28.     private $map;
  29.     private $dispatcher;
  30.     private $exceptionListeners;
  31.     public function __construct(FirewallMapInterface $mapEventDispatcherInterface $dispatcher)
  32.     {
  33.         $this->map $map;
  34.         $this->dispatcher $dispatcher;
  35.         $this->exceptionListeners = new \SplObjectStorage();
  36.     }
  37.     public function onKernelRequest(GetResponseEvent $event)
  38.     {
  39.         if (!$event->isMasterRequest()) {
  40.             return;
  41.         }
  42.         // register listeners for this firewall
  43.         $listeners $this->map->getListeners($event->getRequest());
  44.         $authenticationListeners $listeners[0];
  45.         $exceptionListener $listeners[1];
  46.         $logoutListener = isset($listeners[2]) ? $listeners[2] : null;
  47.         if (null !== $exceptionListener) {
  48.             $this->exceptionListeners[$event->getRequest()] = $exceptionListener;
  49.             $exceptionListener->register($this->dispatcher);
  50.         }
  51.         $this->handleRequest($event$authenticationListeners);
  52.         if (null !== $logoutListener) {
  53.             $logoutListener->handle($event);
  54.         }
  55.     }
  56.     public function onKernelFinishRequest(FinishRequestEvent $event)
  57.     {
  58.         $request $event->getRequest();
  59.         if (isset($this->exceptionListeners[$request])) {
  60.             $this->exceptionListeners[$request]->unregister($this->dispatcher);
  61.             unset($this->exceptionListeners[$request]);
  62.         }
  63.     }
  64.     /**
  65.      * {@inheritdoc}
  66.      */
  67.     public static function getSubscribedEvents()
  68.     {
  69.         return array(
  70.             KernelEvents::REQUEST => array('onKernelRequest'8),
  71.             KernelEvents::FINISH_REQUEST => 'onKernelFinishRequest',
  72.         );
  73.     }
  74.     protected function handleRequest(GetResponseEvent $event$listeners)
  75.     {
  76.         foreach ($listeners as $listener) {
  77.             $listener->handle($event);
  78.             if ($event->hasResponse()) {
  79.                 break;
  80.             }
  81.         }
  82.     }
  83. }