1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2019 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17declare(strict_types=1); 18 19namespace Fisharebest\Webtrees; 20 21use Closure; 22use ErrorException; 23use Fisharebest\Webtrees\Http\Middleware\BootModules; 24use Fisharebest\Webtrees\Http\Middleware\CheckCsrf; 25use Fisharebest\Webtrees\Http\Middleware\CheckForMaintenanceMode; 26use Fisharebest\Webtrees\Http\Middleware\ClientIp; 27use Fisharebest\Webtrees\Http\Middleware\DoHousekeeping; 28use Fisharebest\Webtrees\Http\Middleware\EmitResponse; 29use Fisharebest\Webtrees\Http\Middleware\HandleExceptions; 30use Fisharebest\Webtrees\Http\Middleware\LoadRoutes; 31use Fisharebest\Webtrees\Http\Middleware\NoRouteFound; 32use Fisharebest\Webtrees\Http\Middleware\PhpEnvironment; 33use Fisharebest\Webtrees\Http\Middleware\ReadConfigIni; 34use Fisharebest\Webtrees\Http\Middleware\Router; 35use Fisharebest\Webtrees\Http\Middleware\UpdateDatabaseSchema; 36use Fisharebest\Webtrees\Http\Middleware\UseCache; 37use Fisharebest\Webtrees\Http\Middleware\UseDatabase; 38use Fisharebest\Webtrees\Http\Middleware\UseDebugbar; 39use Fisharebest\Webtrees\Http\Middleware\UseFilesystem; 40use Fisharebest\Webtrees\Http\Middleware\UseLocale; 41use Fisharebest\Webtrees\Http\Middleware\UseSession; 42use Fisharebest\Webtrees\Http\Middleware\UseTheme; 43use Fisharebest\Webtrees\Http\Middleware\UseTransaction; 44use Fisharebest\Webtrees\Http\Middleware\BaseUrl; 45use Nyholm\Psr7\Factory\Psr17Factory; 46use Psr\Http\Message\ResponseFactoryInterface; 47use Psr\Http\Message\ServerRequestFactoryInterface; 48use Psr\Http\Message\StreamFactoryInterface; 49use Psr\Http\Message\UploadedFileFactoryInterface; 50use Psr\Http\Message\UriFactoryInterface; 51use Throwable; 52 53use function app; 54use function dirname; 55use function error_reporting; 56use function ob_end_clean; 57use function ob_get_level; 58use function set_error_handler; 59use function set_exception_handler; 60use function str_replace; 61 62use const PHP_EOL; 63 64/** 65 * Definitions for the webtrees application. 66 */ 67class Webtrees 68{ 69 // The root folder of this installation 70 public const ROOT_DIR = __DIR__ . '/../'; 71 72 // Location of the file containing the database connection details. 73 public const CONFIG_FILE = self::ROOT_DIR . 'data/config.ini.php'; 74 75 // Location of the file that triggers maintenance mode. 76 public const OFFLINE_FILE = self::ROOT_DIR . 'data/offline.txt'; 77 78 // Location of our modules. 79 public const MODULES_PATH = 'modules_v4/'; 80 public const MODULES_DIR = self::ROOT_DIR . self::MODULES_PATH; 81 82 // Enable debugging on development builds. 83 public const DEBUG = self::STABILITY !== ''; 84 85 // We want to know about all PHP errors during development, and fewer in production. 86 public const ERROR_REPORTING = self::DEBUG ? E_ALL | E_STRICT | E_NOTICE | E_DEPRECATED : E_ALL; 87 88 // The name of the application. 89 public const NAME = 'webtrees'; 90 91 // Required version of database tables/columns/indexes/etc. 92 public const SCHEMA_VERSION = 43; 93 94 // e.g. "dev", "alpha", "beta", etc. 95 public const STABILITY = 'beta.4'; 96 97 // Version number 98 public const VERSION = '2.0.0' . (self::STABILITY === '' ? '' : '-') . self::STABILITY; 99 100 // Project website. 101 public const URL = 'https://www.webtrees.net/'; 102 103 private const MIDDLEWARE = [ 104 PhpEnvironment::class, 105 EmitResponse::class, 106 HandleExceptions::class, 107 ReadConfigIni::class, 108 BaseUrl::class, 109 ClientIp::class, 110 UseDatabase::class, 111 UseDebugbar::class, 112 UpdateDatabaseSchema::class, 113 UseCache::class, 114 UseFilesystem::class, 115 UseSession::class, 116 UseLocale::class, 117 CheckForMaintenanceMode::class, 118 UseTheme::class, 119 DoHousekeeping::class, 120 CheckCsrf::class, 121 UseTransaction::class, 122 LoadRoutes::class, 123 BootModules::class, 124 Router::class, 125 NoRouteFound::class, 126 ]; 127 128 /** 129 * Initialise the application. 130 * 131 * @return void 132 */ 133 public function bootstrap(): void 134 { 135 // Show all errors and warnings in development, fewer in production. 136 error_reporting(self::ERROR_REPORTING); 137 138 set_error_handler($this->phpErrorHandler()); 139 set_exception_handler($this->phpExceptionHandler()); 140 } 141 142 /** 143 * An error handler that can be passed to set_error_handler(). 144 * 145 * @return Closure 146 */ 147 private function phpErrorHandler(): Closure 148 { 149 return static function (int $errno, string $errstr, string $errfile, int $errline): bool { 150 // Ignore errors that are silenced with '@' 151 if (error_reporting() & $errno) { 152 throw new ErrorException($errstr, 0, $errno, $errfile, $errline); 153 } 154 155 return true; 156 }; 157 } 158 159 /** 160 * An exception handler that can be passed to set_exception_handler(). 161 * Display any exception that are not caught by the middleware exception handler. 162 * 163 * @return Closure 164 */ 165 private function phpExceptionHandler(): Closure 166 { 167 return static function (Throwable $ex): void { 168 $base_path = dirname(__DIR__); 169 $trace = $ex->getMessage() . ' ' . $ex->getFile() . ':' . $ex->getLine() . PHP_EOL . $ex->getTraceAsString(); 170 $trace = str_replace($base_path, '…', $trace); 171 172 while (ob_get_level() > 0) { 173 ob_end_clean(); 174 } 175 176 echo '<html lang="en"><head><title>Error</title><meta charset="UTF-8"></head><body><pre>' . $trace . '</pre></body></html>'; 177 }; 178 } 179 180 /** 181 * We can use any PSR-7 / PSR-17 compatible message factory. 182 * 183 * @return void 184 */ 185 public function selectMessageFactory(): void 186 { 187 app()->bind(ResponseFactoryInterface::class, Psr17Factory::class); 188 app()->bind(ServerRequestFactoryInterface::class, Psr17Factory::class); 189 app()->bind(StreamFactoryInterface::class, Psr17Factory::class); 190 app()->bind(UploadedFileFactoryInterface::class, Psr17Factory::class); 191 app()->bind(UriFactoryInterface::class, Psr17Factory::class); 192 } 193 194 /** 195 * The webtrees application is built from middleware. 196 * 197 * @return string[] 198 */ 199 public function middleware(): array 200 { 201 return self::MIDDLEWARE; 202 } 203} 204