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