vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php line 80

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\Security\Csrf\TokenStorage;
  11. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  12. use Symfony\Component\Security\Csrf\Exception\TokenNotFoundException;
  13. /**
  14.  * Token storage that uses a Symfony Session object.
  15.  *
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  */
  18. class SessionTokenStorage implements ClearableTokenStorageInterface
  19. {
  20.     /**
  21.      * The namespace used to store values in the session.
  22.      */
  23.     public const SESSION_NAMESPACE '_csrf';
  24.     private $session;
  25.     private $namespace;
  26.     /**
  27.      * Initializes the storage with a Session object and a session namespace.
  28.      *
  29.      * @param string $namespace The namespace under which the token is stored in the session
  30.      */
  31.     public function __construct(SessionInterface $sessionstring $namespace self::SESSION_NAMESPACE)
  32.     {
  33.         $this->session $session;
  34.         $this->namespace $namespace;
  35.     }
  36.     /**
  37.      * {@inheritdoc}
  38.      */
  39.     public function getToken(string $tokenId)
  40.     {
  41.         if (!$this->session->isStarted()) {
  42.             $this->session->start();
  43.         }
  44.         if (!$this->session->has($this->namespace.'/'.$tokenId)) {
  45.             throw new TokenNotFoundException('The CSRF token with ID '.$tokenId.' does not exist.');
  46.         }
  47.         return (string) $this->session->get($this->namespace.'/'.$tokenId);
  48.     }
  49.     /**
  50.      * {@inheritdoc}
  51.      */
  52.     public function setToken(string $tokenIdstring $token)
  53.     {
  54.         if (!$this->session->isStarted()) {
  55.             $this->session->start();
  56.         }
  57.         $this->session->set($this->namespace.'/'.$tokenId$token);
  58.     }
  59.     /**
  60.      * {@inheritdoc}
  61.      */
  62.     public function hasToken(string $tokenId)
  63.     {
  64.         if (!$this->session->isStarted()) {
  65.             $this->session->start();
  66.         }
  67.         return $this->session->has($this->namespace.'/'.$tokenId);
  68.     }
  69.     /**
  70.      * {@inheritdoc}
  71.      */
  72.     public function removeToken(string $tokenId)
  73.     {
  74.         if (!$this->session->isStarted()) {
  75.             $this->session->start();
  76.         }
  77.         return $this->session->remove($this->namespace.'/'.$tokenId);
  78.     }
  79.     /**
  80.      * {@inheritdoc}
  81.      */
  82.     public function clear()
  83.     {
  84.         foreach (array_keys($this->session->all()) as $key) {
  85.             if (=== strpos($key$this->namespace.'/')) {
  86.                 $this->session->remove($key);
  87.             }
  88.         }
  89.     }
  90. }