vendor/symfony/http-kernel/EventListener/SessionListener.php line 37

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\HttpFoundation\Session\SessionInterface;
  13. use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
  14. use Symfony\Component\HttpKernel\Event\RequestEvent;
  15. /**
  16.  * Sets the session in the request.
  17.  *
  18.  * When the passed container contains a "session_storage" entry which
  19.  * holds a NativeSessionStorage instance, the "cookie_secure" option
  20.  * will be set to true whenever the current master request is secure.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  *
  24.  * @final
  25.  */
  26. class SessionListener extends AbstractSessionListener
  27. {
  28.     public function __construct(ContainerInterface $containerbool $debug false)
  29.     {
  30.         parent::__construct($container$debug);
  31.     }
  32.     public function onKernelRequest(RequestEvent $event)
  33.     {
  34.         parent::onKernelRequest($event);
  35.         if (!$event->isMasterRequest() || !$this->container->has('session')) {
  36.             return;
  37.         }
  38.         if ($this->container->has('session_storage')
  39.             && ($storage $this->container->get('session_storage')) instanceof NativeSessionStorage
  40.             && ($masterRequest $this->container->get('request_stack')->getMasterRequest())
  41.             && $masterRequest->isSecure()
  42.         ) {
  43.             $storage->setOptions(['cookie_secure' => true]);
  44.         }
  45.     }
  46.     protected function getSession(): ?SessionInterface
  47.     {
  48.         if (!$this->container->has('session')) {
  49.             return null;
  50.         }
  51.         return $this->container->get('session');
  52.     }
  53. }