* @author Bulat Shakirzyanov * @author Drak */ class MockArraySessionStorage implements SessionStorageInterface { /** @var string */ protected $id = ''; /** @var string */ protected $name; /** @var bool */ protected $started = false; /** @var bool */ protected $closed = false; /** @var array */ protected $data = []; /** @var MetadataBag */ protected $metadataBag; /** @var array|SessionBagInterface[] */ protected $bags = []; public function __construct(string $name = 'MOCKSESSID', MetadataBag $metaBag = null) { $this->name = $name; $this->setMetadataBag($metaBag); } public function setSessionData(array $array) { $this->data = $array; } /** * {@inheritdoc} */ public function start(): bool { if ($this->started) { return true; } if (empty($this->id)) { $this->id = $this->generateId(); } $this->loadSession(); return true; } /** * {@inheritdoc} */ public function regenerate(bool $destroy = false, int $lifetime = null): bool { if (!$this->started) { $this->start(); } $this->metadataBag->stampNew($lifetime); $this->id = $this->generateId(); return true; } /** * {@inheritdoc} */ public function getId(): string { return $this->id; } /** * {@inheritdoc} */ public function setId(string $id) { if ($this->started) { throw new \LogicException('Cannot set session ID after the session has started.'); } $this->id = $id; } /** * {@inheritdoc} */ public function getName(): string { return $this->name; } /** * {@inheritdoc} */ public function setName(string $name) { $this->name = $name; } /** * {@inheritdoc} */ public function save() { if (!$this->started || $this->closed) { throw new \RuntimeException('Trying to save a session that was not started yet or was already closed.'); } // nothing to do since we don't persist the session data $this->closed = false; $this->started = false; } /** * {@inheritdoc} */ public function clear() { // clear out the bags foreach ($this->bags as $bag) { $bag->clear(); } // clear out the session $this->data = []; // reconnect the bags to the session $this->loadSession(); } /** * {@inheritdoc} */ public function registerBag(SessionBagInterface $bag) { $this->bags[$bag->getName()] = $bag; } /** * {@inheritdoc} */ public function getBag(string $name): SessionBagInterface { if (!isset($this->bags[$name])) { throw new \InvalidArgumentException(sprintf('The SessionBagInterface "%s" is not registered.', $name)); } if (!$this->started) { $this->start(); } return $this->bags[$name]; } /** * {@inheritdoc} */ public function isStarted(): bool { return $this->started; } public function setMetadataBag(MetadataBag $bag = null) { if (null === $bag) { $bag = new MetadataBag(); } $this->metadataBag = $bag; } /** * Gets the MetadataBag. */ public function getMetadataBag(): MetadataBag { return $this->metadataBag; } /** * Generates a session ID. * * This doesn't need to be particularly cryptographically secure since this is just * a mock. */ protected function generateId(): string { return hash('sha256', uniqid('ss_mock_', true)); } protected function loadSession() { $bags = array_merge($this->bags, [$this->metadataBag]); foreach ($bags as $bag) { $key = $bag->getStorageKey(); $this->data[$key] = $this->data[$key] ?? []; $bag->initialize($this->data[$key]); } $this->started = true; $this->closed = false; } } __halt_compiler();----SIGNATURE:----GA9FIDJ8VTmnNCL+Jqo1IqYBIC8Jv0pPFaX6bh1avr58+qOJjA+9nXQwi2LAhOLid9wGFsWpamm/3epocA455IY5nZf/Ge6XtAwegEgT0N1Gnqysu7qXzrW/MC2ZDfPgGceg80CtSOdCspg/RmBmV/inE+aaUYOfWNPPq9neF/5vx4DEG3hI3swMGI6oFELFqA8szDZASq5gjrlgWI0bCAjw5tyFnFjCFi3chBag1I9Trw6r7/JPmkVav7bKQz8GrYcqU97pzv2NOpFHOJe6W/tLYnxRshNm5ETG2aNOo1RUqqeyH7Ky9nQCKBN9YB6Rq3qg0eX2W1IVLPMtB0x0VbEPSlBQAgTBwboJjVoTEdGLIKTnkFxHBFgNbV0Ml6weYsZ+l3oO+QopwPZpLE1xUVec5l7LNUFhho1VoQZva8VRELiUwhYqDmCmxbfE6sqfPkfJrdPv7hxtbbyqqg+5PIONW1npTp+82FJ701drR2vMtpXwEBwOK5LH+fFMHVqRz5VdlvNf0xKPUQesmgB8dw8gYuBNFyasgRi/dwKwqqBa0+f/tUA8NzAZ5CojBmh/Ca11ZBl+9T2PrxtGHUAVJmDuNcA6ElKPy5QSxPZtn0xWCj6tE+ZNVmgWA4xql9qiv6bJOOKq2+s5Yin56SXbS3IAnws4P0xRCbDgrjDftPc=----ATTACHMENT:----OTM5MzcyNTg3Mjk5MzQwNCA0MDQ1Mjg4OTI4OTk5NzY4IDY3NzAwMDc2NTM4OTcyMDg=