74 lines
2.5 KiB
PHP
74 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace TYPO3\CMS\Frontend\Http;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
|
use Symfony\Component\DependencyInjection\Attribute\AutowireInline;
|
|
use TYPO3\CMS\Core\Context\Context;
|
|
use TYPO3\CMS\Core\Context\DateTimeAspect;
|
|
use TYPO3\CMS\Core\Context\UserAspect;
|
|
use TYPO3\CMS\Core\Context\VisibilityAspect;
|
|
use TYPO3\CMS\Core\Context\WorkspaceAspect;
|
|
use TYPO3\CMS\Core\Core\SystemEnvironmentBuilder;
|
|
use TYPO3\CMS\Core\Domain\DateTimeFactory;
|
|
use TYPO3\CMS\Core\Http\AbstractApplication;
|
|
use TYPO3\CMS\Core\Http\MiddlewareDispatcher;
|
|
|
|
/**
|
|
* Entry point for the TYPO3 Frontend
|
|
*/
|
|
class Application extends AbstractApplication
|
|
{
|
|
public function __construct(
|
|
#[AutowireInline(
|
|
class: MiddlewareDispatcher::class,
|
|
arguments: [
|
|
'$kernel' => '@' . RequestHandler::class,
|
|
'$middlewares' => '@frontend.middlewares',
|
|
],
|
|
)]
|
|
RequestHandlerInterface $requestHandler,
|
|
protected readonly Context $context,
|
|
) {
|
|
$this->requestHandler = $requestHandler;
|
|
}
|
|
|
|
public function handle(ServerRequestInterface $request): ResponseInterface
|
|
{
|
|
// Create new request object having applicationType "I am a frontend request" attribute.
|
|
$request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);
|
|
|
|
$this->initializeContext();
|
|
return parent::handle($request);
|
|
}
|
|
|
|
/**
|
|
* Initializes the Context used for accessing data and finding out the current state of the application
|
|
*/
|
|
protected function initializeContext(): void
|
|
{
|
|
$this->context->setAspect('date', new DateTimeAspect(DateTimeFactory::createFromTimestamp($GLOBALS['EXEC_TIME'])));
|
|
$this->context->setAspect('visibility', new VisibilityAspect());
|
|
$this->context->setAspect('workspace', new WorkspaceAspect(0));
|
|
$this->context->setAspect('backend.user', new UserAspect(null));
|
|
$this->context->setAspect('frontend.user', new UserAspect(null, [0, -1]));
|
|
}
|
|
}
|