3 declare(strict_types
=1);
6 * This file is part of the TYPO3 CMS project.
8 * It is free software; you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License, either version 2
10 * of the License, or any later version.
12 * For the full copyright and license information, please read the
13 * LICENSE.txt file that was distributed with this source code.
15 * The TYPO3 project - inspiring people to share!
18 namespace TYPO3\CMS\Frontend\Middleware
;
20 use Psr\Http\Message\ResponseInterface
;
21 use Psr\Http\Message\ServerRequestInterface
;
22 use Psr\Http\Server\MiddlewareInterface
;
23 use Psr\Http\Server\RequestHandlerInterface
;
24 use TYPO3\CMS\Core\Exception
;
25 use TYPO3\CMS\Core\Http\DispatcherInterface
;
26 use TYPO3\CMS\Core\Http\NullResponse
;
27 use TYPO3\CMS\Core\Http\Response
;
30 * Lightweight alternative to regular frontend requests; used when $_GET[eID] is set.
31 * In the future, logic from the EidUtility will be moved to this class, however in most cases
32 * a custom PSR-15 middleware will be better suited for whatever job the eID functionality does currently.
36 class EidHandler
implements MiddlewareInterface
39 * @var DispatcherInterface
41 protected $dispatcher;
44 * @param DispatcherInterface $dispatcher
46 public function __construct(DispatcherInterface
$dispatcher)
48 $this->dispatcher
= $dispatcher;
52 * Dispatches the request to the corresponding eID class or eID script
54 * @param ServerRequestInterface $request
55 * @param RequestHandlerInterface $handler
56 * @return ResponseInterface
59 public function process(ServerRequestInterface
$request, RequestHandlerInterface
$handler): ResponseInterface
61 $eID = $request->getParsedBody()['eID'] ??
$request->getQueryParams()['eID'] ??
null;
64 return $handler->handle($request);
67 // Remove any output produced until now
70 $target = $GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include'][$eID] ??
null;
72 return (new Response())->withStatus(404, 'eID not registered');
75 $request = $request->withAttribute('target', $target);
76 return $this->dispatcher
->dispatch($request) ??
new NullResponse();