vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php line 96

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\HttpKernel\EventListener;
  11. use Psr\Container\ContainerInterface;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpFoundation\Cookie;
  14. use Symfony\Component\HttpFoundation\Session\Session;
  15. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  16. use Symfony\Component\HttpFoundation\Session\SessionUtils;
  17. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  18. use Symfony\Component\HttpKernel\Event\RequestEvent;
  19. use Symfony\Component\HttpKernel\Event\ResponseEvent;
  20. use Symfony\Component\HttpKernel\Exception\UnexpectedSessionUsageException;
  21. use Symfony\Component\HttpKernel\KernelEvents;
  22. use Symfony\Contracts\Service\ResetInterface;
  23. /**
  24.  * Sets the session onto the request on the "kernel.request" event and saves
  25.  * it on the "kernel.response" event.
  26.  *
  27.  * In addition, if the session has been started it overrides the Cache-Control
  28.  * header in such a way that all caching is disabled in that case.
  29.  * If you have a scenario where caching responses with session information in
  30.  * them makes sense, you can disable this behaviour by setting the header
  31.  * AbstractSessionListener::NO_AUTO_CACHE_CONTROL_HEADER on the response.
  32.  *
  33.  * @author Johannes M. Schmitt <[email protected]>
  34.  * @author Tobias Schultze <http://tobion.de>
  35.  *
  36.  * @internal
  37.  */
  38. abstract class AbstractSessionListener implements EventSubscriberInterfaceResetInterface
  39. {
  40.     public const NO_AUTO_CACHE_CONTROL_HEADER 'Symfony-Session-NoAutoCacheControl';
  41.     protected $container;
  42.     private $sessionUsageStack = [];
  43.     private $debug;
  44.     /**
  45.      * @var array<string, mixed>
  46.      */
  47.     private $sessionOptions;
  48.     public function __construct(ContainerInterface $container nullbool $debug false, array $sessionOptions = [])
  49.     {
  50.         $this->container $container;
  51.         $this->debug $debug;
  52.         $this->sessionOptions $sessionOptions;
  53.     }
  54.     public function onKernelRequest(RequestEvent $event)
  55.     {
  56.         if (!$event->isMainRequest()) {
  57.             return;
  58.         }
  59.         $request $event->getRequest();
  60.         if (!$request->hasSession()) {
  61.             // This variable prevents calling `$this->getSession()` twice in case the Request (and the below factory) is cloned
  62.             $sess null;
  63.             $request->setSessionFactory(function () use (&$sess$request) {
  64.                 if (!$sess) {
  65.                     $sess $this->getSession();
  66.                 }
  67.                 /*
  68.                  * For supporting sessions in php runtime with runners like roadrunner or swoole, the session
  69.                  * cookie needs to be read from the cookie bag and set on the session storage.
  70.                  *
  71.                  * Do not set it when a native php session is active.
  72.                  */
  73.                 if ($sess && !$sess->isStarted() && \PHP_SESSION_ACTIVE !== session_status()) {
  74.                     $sessionId $request->cookies->get($sess->getName(), '');
  75.                     $sess->setId($sessionId);
  76.                 }
  77.                 return $sess;
  78.             });
  79.         }
  80.         $session $this->container && $this->container->has('initialized_session') ? $this->container->get('initialized_session') : null;
  81.         $this->sessionUsageStack[] = $session instanceof Session $session->getUsageIndex() : 0;
  82.     }
  83.     public function onKernelResponse(ResponseEvent $event)
  84.     {
  85.         if (!$event->isMainRequest() || (!$this->container->has('initialized_session') && !$event->getRequest()->hasSession())) {
  86.             return;
  87.         }
  88.         $response $event->getResponse();
  89.         $autoCacheControl = !$response->headers->has(self::NO_AUTO_CACHE_CONTROL_HEADER);
  90.         // Always remove the internal header if present
  91.         $response->headers->remove(self::NO_AUTO_CACHE_CONTROL_HEADER);
  92.         if (!$session $this->container && $this->container->has('initialized_session') ? $this->container->get('initialized_session') : $event->getRequest()->getSession()) {
  93.             return;
  94.         }
  95.         if ($session->isStarted()) {
  96.             /*
  97.              * Saves the session, in case it is still open, before sending the response/headers.
  98.              *
  99.              * This ensures several things in case the developer did not save the session explicitly:
  100.              *
  101.              *  * If a session save handler without locking is used, it ensures the data is available
  102.              *    on the next request, e.g. after a redirect. PHPs auto-save at script end via
  103.              *    session_register_shutdown is executed after fastcgi_finish_request. So in this case
  104.              *    the data could be missing the next request because it might not be saved the moment
  105.              *    the new request is processed.
  106.              *  * A locking save handler (e.g. the native 'files') circumvents concurrency problems like
  107.              *    the one above. But by saving the session before long-running things in the terminate event,
  108.              *    we ensure the session is not blocked longer than needed.
  109.              *  * When regenerating the session ID no locking is involved in PHPs session design. See
  110.              *    https://bugs.php.net/61470 for a discussion. So in this case, the session must
  111.              *    be saved anyway before sending the headers with the new session ID. Otherwise session
  112.              *    data could get lost again for concurrent requests with the new ID. One result could be
  113.              *    that you get logged out after just logging in.
  114.              *
  115.              * This listener should be executed as one of the last listeners, so that previous listeners
  116.              * can still operate on the open session. This prevents the overhead of restarting it.
  117.              * Listeners after closing the session can still work with the session as usual because
  118.              * Symfonys session implementation starts the session on demand. So writing to it after
  119.              * it is saved will just restart it.
  120.              */
  121.             $session->save();
  122.             /*
  123.              * For supporting sessions in php runtime with runners like roadrunner or swoole the session
  124.              * cookie need to be written on the response object and should not be written by PHP itself.
  125.              */
  126.             $sessionName $session->getName();
  127.             $sessionId $session->getId();
  128.             $sessionOptions $this->getSessionOptions($this->sessionOptions);
  129.             $sessionCookiePath $sessionOptions['cookie_path'] ?? '/';
  130.             $sessionCookieDomain $sessionOptions['cookie_domain'] ?? null;
  131.             $sessionCookieSecure $sessionOptions['cookie_secure'] ?? false;
  132.             $sessionCookieHttpOnly $sessionOptions['cookie_httponly'] ?? true;
  133.             $sessionCookieSameSite $sessionOptions['cookie_samesite'] ?? Cookie::SAMESITE_LAX;
  134.             SessionUtils::popSessionCookie($sessionName$sessionId);
  135.             $request $event->getRequest();
  136.             $requestSessionCookieId $request->cookies->get($sessionName);
  137.             $isSessionEmpty $session->isEmpty() && empty($_SESSION); // checking $_SESSION to keep compatibility with native sessions
  138.             if ($requestSessionCookieId && $isSessionEmpty) {
  139.                 $response->headers->clearCookie(
  140.                     $sessionName,
  141.                     $sessionCookiePath,
  142.                     $sessionCookieDomain,
  143.                     $sessionCookieSecure,
  144.                     $sessionCookieHttpOnly,
  145.                     $sessionCookieSameSite
  146.                 );
  147.             } elseif ($sessionId !== $requestSessionCookieId && !$isSessionEmpty) {
  148.                 $expire 0;
  149.                 $lifetime $sessionOptions['cookie_lifetime'] ?? null;
  150.                 if ($lifetime) {
  151.                     $expire time() + $lifetime;
  152.                 }
  153.                 $response->headers->setCookie(
  154.                     Cookie::create(
  155.                         $sessionName,
  156.                         $sessionId,
  157.                         $expire,
  158.                         $sessionCookiePath,
  159.                         $sessionCookieDomain,
  160.                         $sessionCookieSecure,
  161.                         $sessionCookieHttpOnly,
  162.                         false,
  163.                         $sessionCookieSameSite
  164.                     )
  165.                 );
  166.             }
  167.         }
  168.         if ($session instanceof Session $session->getUsageIndex() === end($this->sessionUsageStack) : !$session->isStarted()) {
  169.             return;
  170.         }
  171.         if ($autoCacheControl) {
  172.             $response
  173.                 ->setExpires(new \DateTime())
  174.                 ->setPrivate()
  175.                 ->setMaxAge(0)
  176.                 ->headers->addCacheControlDirective('must-revalidate');
  177.         }
  178.         if (!$event->getRequest()->attributes->get('_stateless'false)) {
  179.             return;
  180.         }
  181.         if ($this->debug) {
  182.             throw new UnexpectedSessionUsageException('Session was used while the request was declared stateless.');
  183.         }
  184.         if ($this->container->has('logger')) {
  185.             $this->container->get('logger')->warning('Session was used while the request was declared stateless.');
  186.         }
  187.     }
  188.     public function onFinishRequest(FinishRequestEvent $event)
  189.     {
  190.         if ($event->isMainRequest()) {
  191.             array_pop($this->sessionUsageStack);
  192.         }
  193.     }
  194.     public function onSessionUsage(): void
  195.     {
  196.         if (!$this->debug) {
  197.             return;
  198.         }
  199.         if ($this->container && $this->container->has('session_collector')) {
  200.             $this->container->get('session_collector')();
  201.         }
  202.         if (!$requestStack $this->container && $this->container->has('request_stack') ? $this->container->get('request_stack') : null) {
  203.             return;
  204.         }
  205.         $stateless false;
  206.         $clonedRequestStack = clone $requestStack;
  207.         while (null !== ($request $clonedRequestStack->pop()) && !$stateless) {
  208.             $stateless $request->attributes->get('_stateless');
  209.         }
  210.         if (!$stateless) {
  211.             return;
  212.         }
  213.         if (!$session $this->container && $this->container->has('initialized_session') ? $this->container->get('initialized_session') : $requestStack->getCurrentRequest()->getSession()) {
  214.             return;
  215.         }
  216.         if ($session->isStarted()) {
  217.             $session->save();
  218.         }
  219.         throw new UnexpectedSessionUsageException('Session was used while the request was declared stateless.');
  220.     }
  221.     public static function getSubscribedEvents(): array
  222.     {
  223.         return [
  224.             KernelEvents::REQUEST => ['onKernelRequest'128],
  225.             // low priority to come after regular response listeners, but higher than StreamedResponseListener
  226.             KernelEvents::RESPONSE => ['onKernelResponse', -1000],
  227.             KernelEvents::FINISH_REQUEST => ['onFinishRequest'],
  228.         ];
  229.     }
  230.     public function reset(): void
  231.     {
  232.         if (\PHP_SESSION_ACTIVE === session_status()) {
  233.             session_abort();
  234.         }
  235.         session_unset();
  236.         $_SESSION = [];
  237.         if (!headers_sent()) { // session id can only be reset when no headers were so we check for headers_sent first
  238.             session_id('');
  239.         }
  240.     }
  241.     /**
  242.      * Gets the session object.
  243.      *
  244.      * @return SessionInterface|null
  245.      */
  246.     abstract protected function getSession();
  247.     private function getSessionOptions(array $sessionOptions): array
  248.     {
  249.         $mergedSessionOptions = [];
  250.         foreach (session_get_cookie_params() as $key => $value) {
  251.             $mergedSessionOptions['cookie_'.$key] = $value;
  252.         }
  253.         foreach ($sessionOptions as $key => $value) {
  254.             // do the same logic as in the NativeSessionStorage
  255.             if ('cookie_secure' === $key && 'auto' === $value) {
  256.                 continue;
  257.             }
  258.             $mergedSessionOptions[$key] = $value;
  259.         }
  260.         return $mergedSessionOptions;
  261.     }
  262. }