2 declare(strict_types
= 1);
3 namespace TYPO3\CMS\Frontend\Middleware
;
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 use Psr\Http\Message\ResponseInterface
;
19 use Psr\Http\Message\ServerRequestInterface
;
20 use Psr\Http\Server\MiddlewareInterface
;
21 use Psr\Http\Server\RequestHandlerInterface
;
22 use TYPO3\CMS\Core\Utility\GeneralUtility
;
23 use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController
;
26 * Creates an instance of TypoScriptFrontendController and makes this globally available
27 * via $GLOBALS['TSFE'].
29 * For now, GeneralUtility::_GP() is used in favor of $request->getQueryParams() due to
30 * hooks who could have $_GET/$_POST modified before.
34 class TypoScriptFrontendInitialization
implements MiddlewareInterface
37 * Creates an instance of TSFE and sets it as a global variable
39 * @param ServerRequestInterface $request
40 * @param RequestHandlerInterface $handler
41 * @return ResponseInterface
43 public function process(ServerRequestInterface
$request, RequestHandlerInterface
$handler): ResponseInterface
45 $GLOBALS['TSFE'] = GeneralUtility
::makeInstance(
46 TypoScriptFrontendController
::class,
48 GeneralUtility
::_GP('id'),
49 GeneralUtility
::_GP('type'),
50 GeneralUtility
::_GP('no_cache'),
51 GeneralUtility
::_GP('cHash'),
53 GeneralUtility
::_GP('MP')
55 $GLOBALS['TSFE']->connectToDB();
56 return $handler->handle($request);