vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php line 34

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\HttpFoundation\Session\Storage\Handler;
  11. use Symfony\Component\HttpFoundation\Session\SessionUtils;
  12. /**
  13.  * This abstract session handler provides a generic implementation
  14.  * of the PHP 7.0 SessionUpdateTimestampHandlerInterface,
  15.  * enabling strict and lazy session handling.
  16.  *
  17.  * @author Nicolas Grekas <p@tchwork.com>
  18.  */
  19. abstract class AbstractSessionHandler implements \SessionHandlerInterface\SessionUpdateTimestampHandlerInterface
  20. {
  21.     private $sessionName;
  22.     private $prefetchId;
  23.     private $prefetchData;
  24.     private $newSessionId;
  25.     private $igbinaryEmptyData;
  26.     /**
  27.      * @return bool
  28.      */
  29.     public function open($savePath$sessionName)
  30.     {
  31.         $this->sessionName $sessionName;
  32.         if (!headers_sent() && !ini_get('session.cache_limiter') && '0' !== ini_get('session.cache_limiter')) {
  33.             header(sprintf('Cache-Control: max-age=%d, private, must-revalidate'60 * (int) ini_get('session.cache_expire')));
  34.         }
  35.         return true;
  36.     }
  37.     /**
  38.      * @return string
  39.      */
  40.     abstract protected function doRead(string $sessionId);
  41.     /**
  42.      * @return bool
  43.      */
  44.     abstract protected function doWrite(string $sessionIdstring $data);
  45.     /**
  46.      * @return bool
  47.      */
  48.     abstract protected function doDestroy(string $sessionId);
  49.     /**
  50.      * @return bool
  51.      */
  52.     public function validateId($sessionId)
  53.     {
  54.         $this->prefetchData $this->read($sessionId);
  55.         $this->prefetchId $sessionId;
  56.         return '' !== $this->prefetchData;
  57.     }
  58.     /**
  59.      * @return string
  60.      */
  61.     public function read($sessionId)
  62.     {
  63.         if (null !== $this->prefetchId) {
  64.             $prefetchId $this->prefetchId;
  65.             $prefetchData $this->prefetchData;
  66.             $this->prefetchId $this->prefetchData null;
  67.             if ($prefetchId === $sessionId || '' === $prefetchData) {
  68.                 $this->newSessionId '' === $prefetchData $sessionId null;
  69.                 return $prefetchData;
  70.             }
  71.         }
  72.         $data $this->doRead($sessionId);
  73.         $this->newSessionId '' === $data $sessionId null;
  74.         return $data;
  75.     }
  76.     /**
  77.      * @return bool
  78.      */
  79.     public function write($sessionId$data)
  80.     {
  81.         if (null === $this->igbinaryEmptyData) {
  82.             // see https://github.com/igbinary/igbinary/issues/146
  83.             $this->igbinaryEmptyData \function_exists('igbinary_serialize') ? igbinary_serialize([]) : '';
  84.         }
  85.         if ('' === $data || $this->igbinaryEmptyData === $data) {
  86.             return $this->destroy($sessionId);
  87.         }
  88.         $this->newSessionId null;
  89.         return $this->doWrite($sessionId$data);
  90.     }
  91.     /**
  92.      * @return bool
  93.      */
  94.     public function destroy($sessionId)
  95.     {
  96.         if (!headers_sent() && filter_var(ini_get('session.use_cookies'), FILTER_VALIDATE_BOOLEAN)) {
  97.             if (!$this->sessionName) {
  98.                 throw new \LogicException(sprintf('Session name cannot be empty, did you forget to call "parent::open()" in "%s"?.', static::class));
  99.             }
  100.             $cookie SessionUtils::popSessionCookie($this->sessionName$sessionId);
  101.             /*
  102.              * We send an invalidation Set-Cookie header (zero lifetime)
  103.              * when either the session was started or a cookie with
  104.              * the session name was sent by the client (in which case
  105.              * we know it's invalid as a valid session cookie would've
  106.              * started the session).
  107.              */
  108.             if (null === $cookie || isset($_COOKIE[$this->sessionName])) {
  109.                 if (\PHP_VERSION_ID 70300) {
  110.                     setcookie($this->sessionName''0ini_get('session.cookie_path'), ini_get('session.cookie_domain'), filter_var(ini_get('session.cookie_secure'), FILTER_VALIDATE_BOOLEAN), filter_var(ini_get('session.cookie_httponly'), FILTER_VALIDATE_BOOLEAN));
  111.                 } else {
  112.                     $params session_get_cookie_params();
  113.                     unset($params['lifetime']);
  114.                     setcookie($this->sessionName''$params);
  115.                 }
  116.             }
  117.         }
  118.         return $this->newSessionId === $sessionId || $this->doDestroy($sessionId);
  119.     }
  120. }