TYPO3 CMS  TYPO3_8-7
Application.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
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.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
18 
27 {
31  protected $bootstrap;
32 
37  protected $entryPointLevel = 1;
38 
44  \TYPO3\CMS\Backend\Console\CliRequestHandler::class
45  ];
46 
52  public function __construct($classLoader)
53  {
54  $this->checkEnvironmentOrDie();
55 
56  $this->defineLegacyConstants();
57 
58  $this->bootstrap = Bootstrap::getInstance()
59  ->initializeClassLoader($classLoader)
60  ->setRequestType(TYPO3_REQUESTTYPE_BE | TYPO3_REQUESTTYPE_CLI)
61  ->baseSetup($this->entryPointLevel);
62 
63  foreach ($this->availableRequestHandlers as $requestHandler) {
64  $this->bootstrap->registerRequestHandlerImplementation($requestHandler);
65  }
66 
67  $this->bootstrap->configure();
68  }
69 
75  public function run(callable $execute = null)
76  {
77  $this->bootstrap->handleRequest(new \Symfony\Component\Console\Input\ArgvInput());
78 
79  if ($execute !== null) {
80  call_user_func($execute);
81  }
82 
83  $this->bootstrap->shutdown();
84  }
85 
89  protected function defineLegacyConstants()
90  {
91  define('TYPO3_MODE', 'BE');
92  }
93 
97  protected function checkEnvironmentOrDie()
98  {
99  if (substr(php_sapi_name(), 0, 3) === 'cgi') {
101  } elseif (php_sapi_name() !== 'cli') {
102  die('Not called from a command line interface (e.g. a shell or scheduler).' . LF);
103  }
104  }
105 
111  {
112  // Sanity check: Ensure we're running in a shell or cronjob (and NOT via HTTP)
113  $checkEnvVars = ['HTTP_USER_AGENT', 'HTTP_HOST', 'SERVER_NAME', 'REMOTE_ADDR', 'REMOTE_PORT', 'SERVER_PROTOCOL'];
114  foreach ($checkEnvVars as $var) {
115  if (array_key_exists($var, $_SERVER)) {
116  echo 'SECURITY CHECK FAILED! This script cannot be used within your browser!' . LF;
117  echo 'If you are sure that we run in a shell or cronjob, please unset' . LF;
118  echo 'environment variable ' . $var . ' (usually using \'unset ' . $var . '\')' . LF;
119  echo 'before starting this script.' . LF;
120  die;
121  }
122  }
123 
124  // Mimic CLI API in CGI API (you must use the -C/-no-chdir and the -q/--no-header switches!)
125  ini_set('html_errors', 0);
126  ini_set('implicit_flush', 1);
127  ini_set('max_execution_time', 0);
128  define('STDIN', fopen('php://stdin', 'r'));
129  define('STDOUT', fopen('php://stdout', 'w'));
130  define('STDERR', fopen('php://stderr', 'w'));
131  }
132 }