vendor/contao/core-bundle/src/Csrf/MemoryTokenStorage.php line 45

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Contao.
  5.  *
  6.  * (c) Leo Feyer
  7.  *
  8.  * @license LGPL-3.0-or-later
  9.  */
  10. namespace Contao\CoreBundle\Csrf;
  11. use Symfony\Component\Security\Csrf\Exception\TokenNotFoundException;
  12. use Symfony\Component\Security\Csrf\TokenStorage\TokenStorageInterface;
  13. use Symfony\Contracts\Service\ResetInterface;
  14. class MemoryTokenStorage implements TokenStorageInterfaceResetInterface
  15. {
  16.     private ?array $tokens null;
  17.     private array $usedTokens = [];
  18.     public function getToken(string $tokenId): string
  19.     {
  20.         $this->assertInitialized();
  21.         if (empty($this->tokens[$tokenId])) {
  22.             throw new TokenNotFoundException(sprintf('The CSRF token ID "%s" does not exist.'$tokenId));
  23.         }
  24.         $this->usedTokens[$tokenId] = true;
  25.         return $this->tokens[$tokenId];
  26.     }
  27.     public function setToken(string $tokenIdstring $token): void
  28.     {
  29.         $this->assertInitialized();
  30.         $this->usedTokens[$tokenId] = true;
  31.         $this->tokens[$tokenId] = $token;
  32.     }
  33.     public function hasToken(string $tokenId): bool
  34.     {
  35.         $this->assertInitialized();
  36.         return !empty($this->tokens[$tokenId]);
  37.     }
  38.     public function removeToken(string $tokenId): ?string
  39.     {
  40.         $this->assertInitialized();
  41.         $token null;
  42.         if (isset($this->tokens[$tokenId])) {
  43.             $token $this->tokens[$tokenId];
  44.             $this->tokens[$tokenId] = null;
  45.         }
  46.         $this->usedTokens[$tokenId] = true;
  47.         return $token;
  48.     }
  49.     public function initialize(array $tokens): void
  50.     {
  51.         $this->tokens $tokens;
  52.     }
  53.     public function getUsedTokens(): array
  54.     {
  55.         if (null === $this->tokens) {
  56.             return [];
  57.         }
  58.         return array_intersect_key($this->tokens$this->usedTokens);
  59.     }
  60.     public function reset(): void
  61.     {
  62.         $this->tokens null;
  63.         $this->usedTokens = [];
  64.     }
  65.     private function assertInitialized(): void
  66.     {
  67.         if (null === $this->tokens) {
  68.             throw new \LogicException('MemoryTokenStorage must not be accessed before it was initialized.');
  69.         }
  70.     }
  71. }