64 lines
2.2 KiB
PHP
64 lines
2.2 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\Install\Http;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
|
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;
|
|
|
|
/**
|
|
* Entry point for the TYPO3 Install Tool
|
|
* @internal This class is only meant to be used within EXT:install and is not part of the TYPO3 Core API.
|
|
*/
|
|
class Application extends AbstractApplication
|
|
{
|
|
public function __construct(
|
|
RequestHandlerInterface $requestHandler,
|
|
protected readonly Context $context
|
|
) {
|
|
$this->requestHandler = $requestHandler;
|
|
}
|
|
|
|
public function handle(ServerRequestInterface $request): ResponseInterface
|
|
{
|
|
$this->initializeContext();
|
|
$request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_INSTALL);
|
|
return parent::handle($request)
|
|
->withHeader('X-Frame-Options', 'SAMEORIGIN');
|
|
}
|
|
|
|
/**
|
|
* 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(true, true, true, true));
|
|
$this->context->setAspect('workspace', new WorkspaceAspect(0));
|
|
$this->context->setAspect('backend.user', new UserAspect());
|
|
}
|
|
}
|