summaryrefslogtreecommitdiff
path: root/src/Middleware/SessionHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Middleware/SessionHandler.php')
-rw-r--r--src/Middleware/SessionHandler.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/Middleware/SessionHandler.php b/src/Middleware/SessionHandler.php
new file mode 100644
index 00000000..8c53b0fd
--- /dev/null
+++ b/src/Middleware/SessionHandler.php
@@ -0,0 +1,59 @@
+<?php
+
+namespace Engelsystem\Middleware;
+
+use Psr\Http\Message\ResponseInterface;
+use Psr\Http\Message\ServerRequestInterface;
+use Psr\Http\Server\MiddlewareInterface;
+use Psr\Http\Server\RequestHandlerInterface;
+use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
+use Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface;
+
+class SessionHandler implements MiddlewareInterface
+{
+ /** @var SessionStorageInterface */
+ protected $session;
+
+ /** @var string[] */
+ protected $paths = [];
+
+ /**
+ * @param SessionStorageInterface $session
+ * @param array $paths
+ */
+ public function __construct(SessionStorageInterface $session, array $paths = [])
+ {
+ $this->paths = $paths;
+ $this->session = $session;
+ }
+
+ /**
+ * @param ServerRequestInterface $request
+ * @param RequestHandlerInterface $handler
+ * @return ResponseInterface
+ */
+ public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
+ {
+ $return = $handler->handle($request);
+
+ $cookies = $request->getCookieParams();
+ if (
+ $this->session instanceof NativeSessionStorage
+ && in_array($request->getAttribute('route-request-path'), $this->paths)
+ && !isset($cookies[$this->session->getName()])
+ ) {
+ $this->destroyNative();
+ }
+
+ return $return;
+ }
+
+ /**
+ * @return bool
+ * @codeCoverageIgnore
+ */
+ protected function destroyNative()
+ {
+ return session_destroy();
+ }
+}