vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php line 70

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\HttpKernel\EventListener;
  11. use Psr\Container\ContainerInterface;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpFoundation\Session\Session;
  14. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  15. use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
  16. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  17. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  18. use Symfony\Component\HttpKernel\KernelEvents;
  19. /**
  20.  * Sets the session onto the request on the "kernel.request" event and saves
  21.  * it on the "kernel.response" event.
  22.  *
  23.  * In addition, if the session has been started it overrides the Cache-Control
  24.  * header in such a way that all caching is disabled in that case.
  25.  * If you have a scenario where caching responses with session information in
  26.  * them makes sense, you can disable this behaviour by setting the header
  27.  * AbstractSessionListener::NO_AUTO_CACHE_CONTROL_HEADER on the response.
  28.  *
  29.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  30.  * @author Tobias Schultze <http://tobion.de>
  31.  *
  32.  * @internal since Symfony 4.3
  33.  */
  34. abstract class AbstractSessionListener implements EventSubscriberInterface
  35. {
  36.     const NO_AUTO_CACHE_CONTROL_HEADER 'Symfony-Session-NoAutoCacheControl';
  37.     protected $container;
  38.     private $sessionUsageStack = [];
  39.     public function __construct(ContainerInterface $container null)
  40.     {
  41.         $this->container $container;
  42.     }
  43.     public function onKernelRequest(GetResponseEvent $event)
  44.     {
  45.         if (!$event->isMasterRequest()) {
  46.             return;
  47.         }
  48.         $session null;
  49.         $request $event->getRequest();
  50.         if ($request->hasSession()) {
  51.             // no-op
  52.         } elseif (method_exists($request'setSessionFactory')) {
  53.             $request->setSessionFactory(function () { return $this->getSession(); });
  54.         } elseif ($session $this->getSession()) {
  55.             $request->setSession($session);
  56.         }
  57.         $session $session ?? ($this->container && $this->container->has('initialized_session') ? $this->container->get('initialized_session') : null);
  58.         $this->sessionUsageStack[] = $session instanceof Session $session->getUsageIndex() : 0;
  59.     }
  60.     public function onKernelResponse(FilterResponseEvent $event)
  61.     {
  62.         if (!$event->isMasterRequest()) {
  63.             return;
  64.         }
  65.         $response $event->getResponse();
  66.         $autoCacheControl = !$response->headers->has(self::NO_AUTO_CACHE_CONTROL_HEADER);
  67.         // Always remove the internal header if present
  68.         $response->headers->remove(self::NO_AUTO_CACHE_CONTROL_HEADER);
  69.         if (!$session $this->container && $this->container->has('initialized_session') ? $this->container->get('initialized_session') : $event->getRequest()->getSession()) {
  70.             return;
  71.         }
  72.         if ($session instanceof Session $session->getUsageIndex() !== end($this->sessionUsageStack) : $session->isStarted()) {
  73.             if ($autoCacheControl) {
  74.                 $response
  75.                     ->setExpires(new \DateTime())
  76.                     ->setPrivate()
  77.                     ->setMaxAge(0)
  78.                     ->headers->addCacheControlDirective('must-revalidate');
  79.             }
  80.         }
  81.         if ($session->isStarted()) {
  82.             /*
  83.              * Saves the session, in case it is still open, before sending the response/headers.
  84.              *
  85.              * This ensures several things in case the developer did not save the session explicitly:
  86.              *
  87.              *  * If a session save handler without locking is used, it ensures the data is available
  88.              *    on the next request, e.g. after a redirect. PHPs auto-save at script end via
  89.              *    session_register_shutdown is executed after fastcgi_finish_request. So in this case
  90.              *    the data could be missing the next request because it might not be saved the moment
  91.              *    the new request is processed.
  92.              *  * A locking save handler (e.g. the native 'files') circumvents concurrency problems like
  93.              *    the one above. But by saving the session before long-running things in the terminate event,
  94.              *    we ensure the session is not blocked longer than needed.
  95.              *  * When regenerating the session ID no locking is involved in PHPs session design. See
  96.              *    https://bugs.php.net/61470 for a discussion. So in this case, the session must
  97.              *    be saved anyway before sending the headers with the new session ID. Otherwise session
  98.              *    data could get lost again for concurrent requests with the new ID. One result could be
  99.              *    that you get logged out after just logging in.
  100.              *
  101.              * This listener should be executed as one of the last listeners, so that previous listeners
  102.              * can still operate on the open session. This prevents the overhead of restarting it.
  103.              * Listeners after closing the session can still work with the session as usual because
  104.              * Symfonys session implementation starts the session on demand. So writing to it after
  105.              * it is saved will just restart it.
  106.              */
  107.             $session->save();
  108.         }
  109.     }
  110.     /**
  111.      * @internal
  112.      */
  113.     public function onFinishRequest(FinishRequestEvent $event)
  114.     {
  115.         if ($event->isMasterRequest()) {
  116.             array_pop($this->sessionUsageStack);
  117.         }
  118.     }
  119.     public static function getSubscribedEvents()
  120.     {
  121.         return [
  122.             KernelEvents::REQUEST => ['onKernelRequest'128],
  123.             // low priority to come after regular response listeners, but higher than StreamedResponseListener
  124.             KernelEvents::RESPONSE => ['onKernelResponse', -1000],
  125.             KernelEvents::FINISH_REQUEST => ['onFinishRequest'],
  126.         ];
  127.     }
  128.     /**
  129.      * Gets the session object.
  130.      *
  131.      * @return SessionInterface|null A SessionInterface instance or null if no session is available
  132.      */
  133.     abstract protected function getSession();
  134. }