2 namespace TYPO3\CMS\Backend\Http
;
5 * This file is part of the TYPO3 CMS project.
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
14 * The TYPO3 project - inspiring people to share!
16 use TYPO3\CMS\Core\Core\ApplicationInterface
;
17 use TYPO3\CMS\Core\Core\Bootstrap
;
18 use TYPO3\CMS\Core\Utility\GeneralUtility
;
21 * Entry point for the TYPO3 Backend (HTTP requests)
23 class Application
implements ApplicationInterface
33 protected $entryPointPath = 'typo3/';
36 * @var \Psr\Http\Message\ServerRequestInterface
41 * All available request handlers that can handle backend requests (non-CLI)
44 protected $availableRequestHandlers = array(
45 \TYPO3\CMS\Backend\Http\RequestHandler
::class,
46 \TYPO3\CMS\Backend\Http\BackendModuleRequestHandler
::class,
47 \TYPO3\CMS\Backend\Http\AjaxRequestHandler
::class
51 * Constructor setting up legacy constant and register available Request Handlers
53 * @param \Composer\Autoload\ClassLoader $classLoader an instance of the class loader
55 public function __construct($classLoader)
57 $this->defineLegacyConstants();
59 $this->bootstrap
= Bootstrap
::getInstance()
60 ->initializeClassLoader($classLoader)
61 ->baseSetup($this->entryPointPath
);
63 // can be done here after the base setup is done
64 $this->defineAdditionalEntryPointRelatedConstants();
66 // Redirect to install tool if base configuration is not found
67 if (!$this->bootstrap
->checkIfEssentialConfigurationExists()) {
68 $this->bootstrap
->redirectToInstallTool($this->entryPointPath
);
71 foreach ($this->availableRequestHandlers
as $requestHandler) {
72 $this->bootstrap
->registerRequestHandlerImplementation($requestHandler);
75 $this->bootstrap
->configure();
79 * Set up the application and shut it down afterwards
81 * @param callable $execute
84 public function run(callable
$execute = null)
86 $this->request
= \TYPO3\CMS\Core\Http\ServerRequestFactory
::fromGlobals();
87 // see below when this option is set and Bootstrap::defineTypo3RequestTypes() for more details
88 if (TYPO3_REQUESTTYPE
& TYPO3_REQUESTTYPE_AJAX
) {
89 $this->request
= $this->request
->withAttribute('isAjaxRequest', true);
90 } elseif (isset($this->request
->getQueryParams()['M'])) {
91 $this->request
= $this->request
->withAttribute('isModuleRequest', true);
94 $this->bootstrap
->handleRequest($this->request
);
96 if ($execute !== null) {
97 call_user_func($execute);
100 $this->bootstrap
->shutdown();
104 * Define constants and variables
106 protected function defineLegacyConstants()
108 define('TYPO3_MODE', 'BE');
112 * Define values that are based on the current script
114 protected function defineAdditionalEntryPointRelatedConstants()
116 // Activate "AJAX" handler when called with the GET variable ajaxID
117 if (!empty(GeneralUtility
::_GET('ajaxID'))) {
118 $GLOBALS['TYPO3_AJAX'] = true;