18d0ebef0SGreg Roach<?php 23976b470SGreg Roach 38d0ebef0SGreg Roach/** 48d0ebef0SGreg Roach * webtrees: online genealogy 590949315SGreg Roach * Copyright (C) 2021 webtrees development team 68d0ebef0SGreg Roach * This program is free software: you can redistribute it and/or modify 78d0ebef0SGreg Roach * it under the terms of the GNU General Public License as published by 88d0ebef0SGreg Roach * the Free Software Foundation, either version 3 of the License, or 98d0ebef0SGreg Roach * (at your option) any later version. 108d0ebef0SGreg Roach * This program is distributed in the hope that it will be useful, 118d0ebef0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 128d0ebef0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138d0ebef0SGreg Roach * GNU General Public License for more details. 148d0ebef0SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 168d0ebef0SGreg Roach */ 17fcfa147eSGreg Roach 188d0ebef0SGreg Roachdeclare(strict_types=1); 198d0ebef0SGreg Roach 208d0ebef0SGreg Roachnamespace Fisharebest\Webtrees; 218d0ebef0SGreg Roach 22f397d0fdSGreg Roachuse Closure; 23f397d0fdSGreg Roachuse ErrorException; 24089dadacSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\BadBotBlocker; 25f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\BootModules; 26f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\CheckForMaintenanceMode; 274874f72dSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\ClientIp; 28179fae31SGreg Roachuse Fisharebest\Webtrees\Http\Middleware\CompressResponse; 29f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\DoHousekeeping; 30f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\EmitResponse; 31f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\HandleExceptions; 3271378461SGreg Roachuse Fisharebest\Webtrees\Http\Middleware\LoadRoutes; 33f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\NoRouteFound; 34f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\PhpEnvironment; 35e16a1bfdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\ReadConfigIni; 36*00c45d23SGreg Roachuse Fisharebest\Webtrees\Http\Middleware\RegisterFactories; 379e5d8e6fSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\Router; 389c88b4e9SGreg Roachuse Fisharebest\Webtrees\Http\Middleware\SecurityHeaders; 39f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UpdateDatabaseSchema; 40f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseDatabase; 41f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseDebugbar; 42150f35adSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseLanguage; 43f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseSession; 44f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseTheme; 45f397d0fdSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\UseTransaction; 464874f72dSGreg Roachuse Fisharebest\Webtrees\Http\Middleware\BaseUrl; 47f397d0fdSGreg Roachuse Nyholm\Psr7\Factory\Psr17Factory; 48*00c45d23SGreg Roachuse Psr\Http\Message\ResponseFactoryInterface; 49*00c45d23SGreg Roachuse Psr\Http\Message\ServerRequestFactoryInterface; 50*00c45d23SGreg Roachuse Psr\Http\Message\StreamFactoryInterface; 51*00c45d23SGreg Roachuse Psr\Http\Message\UploadedFileFactoryInterface; 52*00c45d23SGreg Roachuse Psr\Http\Message\UriFactoryInterface; 533976b470SGreg Roach 54*00c45d23SGreg Roachuse function app; 558d0ebef0SGreg Roachuse function error_reporting; 568d0ebef0SGreg Roachuse function set_error_handler; 578d0ebef0SGreg Roach 58721424feSGreg Roachuse const E_ALL; 59721424feSGreg Roachuse const E_DEPRECATED; 60054771e9SGreg Roachuse const E_USER_DEPRECATED; 61054771e9SGreg Roach 628d0ebef0SGreg Roach/** 638d0ebef0SGreg Roach * Definitions for the webtrees application. 648d0ebef0SGreg Roach */ 658d0ebef0SGreg Roachclass Webtrees 668d0ebef0SGreg Roach{ 67f397d0fdSGreg Roach // The root folder of this installation 68f397d0fdSGreg Roach public const ROOT_DIR = __DIR__ . '/../'; 69f397d0fdSGreg Roach 70baef639bSGreg Roach // This is the location of system data, such as temporary and cache files. 71baef639bSGreg Roach // The system files are always in this location. 72baef639bSGreg Roach // It is also the default location of user data, such as media and GEDCOM files. 73baef639bSGreg Roach // The user files could be anywhere supported by Flysystem. 74fd6c003fSGreg Roach public const DATA_DIR = self::ROOT_DIR . 'data/'; 75fd6c003fSGreg Roach 768d0ebef0SGreg Roach // Location of the file containing the database connection details. 77baef639bSGreg Roach public const CONFIG_FILE = self::DATA_DIR . 'config.ini.php'; 78f397d0fdSGreg Roach 79f397d0fdSGreg Roach // Location of the file that triggers maintenance mode. 80baef639bSGreg Roach public const OFFLINE_FILE = self::DATA_DIR . 'offline.txt'; 81f397d0fdSGreg Roach 82f397d0fdSGreg Roach // Location of our modules. 83b50f90f8SGreg Roach public const MODULES_PATH = 'modules_v4/'; 84f397d0fdSGreg Roach public const MODULES_DIR = self::ROOT_DIR . self::MODULES_PATH; 858d0ebef0SGreg Roach 868d0ebef0SGreg Roach // Enable debugging on development builds. 8716d6367aSGreg Roach public const DEBUG = self::STABILITY !== ''; 888d0ebef0SGreg Roach 898d0ebef0SGreg Roach // We want to know about all PHP errors during development, and fewer in production. 90721424feSGreg Roach public const ERROR_REPORTING = self::DEBUG ? E_ALL : E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED; 918d0ebef0SGreg Roach 928d0ebef0SGreg Roach // The name of the application. 9316d6367aSGreg Roach public const NAME = 'webtrees'; 948d0ebef0SGreg Roach 958d0ebef0SGreg Roach // Required version of database tables/columns/indexes/etc. 9690949315SGreg Roach public const SCHEMA_VERSION = 45; 978d0ebef0SGreg Roach 98721424feSGreg Roach // e.g. "-dev", "-alpha", "-beta", etc. 997989fe57SGreg Roach public const STABILITY = '-dev'; 1008d0ebef0SGreg Roach 1018d0ebef0SGreg Roach // Version number 102f32d77e6SGreg Roach public const VERSION = '2.1.0' . self::STABILITY; 1038d0ebef0SGreg Roach 104f397d0fdSGreg Roach // Project website. 105db1aabc1SGreg Roach public const URL = 'https://webtrees.net/'; 1068d0ebef0SGreg Roach 107fceda430SGreg Roach // FAQ links 1083282ccecSGreg Roach public const URL_FAQ_EMAIL = 'https://webtrees.net/faq/email'; 1093282ccecSGreg Roach 1109d7cdf93SGreg Roach // Project website. 111db1aabc1SGreg Roach public const GEDCOM_PDF = 'https://webtrees.net/downloads/gedcom-551.pdf'; 1129d7cdf93SGreg Roach 11382e92bfaSGreg Roach private const MIDDLEWARE = [ 11482e92bfaSGreg Roach PhpEnvironment::class, 11582e92bfaSGreg Roach EmitResponse::class, 1169c88b4e9SGreg Roach SecurityHeaders::class, 11782e92bfaSGreg Roach ReadConfigIni::class, 1184874f72dSGreg Roach BaseUrl::class, 1195fb051e9SGreg Roach HandleExceptions::class, 1204874f72dSGreg Roach ClientIp::class, 121*00c45d23SGreg Roach RegisterFactories::class, 122179fae31SGreg Roach CompressResponse::class, 123089dadacSGreg Roach BadBotBlocker::class, 12482e92bfaSGreg Roach UseDatabase::class, 12582e92bfaSGreg Roach UseDebugbar::class, 12682e92bfaSGreg Roach UpdateDatabaseSchema::class, 12782e92bfaSGreg Roach UseSession::class, 128150f35adSGreg Roach UseLanguage::class, 12982e92bfaSGreg Roach CheckForMaintenanceMode::class, 13082e92bfaSGreg Roach UseTheme::class, 13182e92bfaSGreg Roach DoHousekeeping::class, 13282e92bfaSGreg Roach UseTransaction::class, 13371378461SGreg Roach LoadRoutes::class, 13482e92bfaSGreg Roach BootModules::class, 13582e92bfaSGreg Roach Router::class, 13682e92bfaSGreg Roach NoRouteFound::class, 13782e92bfaSGreg Roach ]; 13882e92bfaSGreg Roach 1398d0ebef0SGreg Roach /** 140*00c45d23SGreg Roach * Initialise the application. 141*00c45d23SGreg Roach * 1428d0ebef0SGreg Roach * @return void 1438d0ebef0SGreg Roach */ 144*00c45d23SGreg Roach public function bootstrap(): void 1458d0ebef0SGreg Roach { 1468d0ebef0SGreg Roach // Show all errors and warnings in development, fewer in production. 147cfbf56adSGreg Roach error_reporting(self::ERROR_REPORTING); 1488d0ebef0SGreg Roach 149f397d0fdSGreg Roach set_error_handler($this->phpErrorHandler()); 150f397d0fdSGreg Roach } 1518d0ebef0SGreg Roach 152f397d0fdSGreg Roach /** 153f397d0fdSGreg Roach * An error handler that can be passed to set_error_handler(). 154f397d0fdSGreg Roach * 155f397d0fdSGreg Roach * @return Closure 156f397d0fdSGreg Roach */ 157f397d0fdSGreg Roach private function phpErrorHandler(): Closure 158f397d0fdSGreg Roach { 159f397d0fdSGreg Roach return static function (int $errno, string $errstr, string $errfile, int $errline): bool { 160f397d0fdSGreg Roach // Ignore errors that are silenced with '@' 161f397d0fdSGreg Roach if (error_reporting() & $errno) { 162f397d0fdSGreg Roach throw new ErrorException($errstr, 0, $errno, $errfile, $errline); 163f397d0fdSGreg Roach } 164f397d0fdSGreg Roach 165f397d0fdSGreg Roach return true; 166f397d0fdSGreg Roach }; 167f397d0fdSGreg Roach } 168f397d0fdSGreg Roach 169f397d0fdSGreg Roach /** 170*00c45d23SGreg Roach * We can use any PSR-7 / PSR-17 compatible message factory. 171*00c45d23SGreg Roach * 172f397d0fdSGreg Roach * @return void 173f397d0fdSGreg Roach */ 174*00c45d23SGreg Roach public function selectMessageFactory(): void 175f397d0fdSGreg Roach { 176*00c45d23SGreg Roach app()->bind(ResponseFactoryInterface::class, Psr17Factory::class); 177*00c45d23SGreg Roach app()->bind(ServerRequestFactoryInterface::class, Psr17Factory::class); 178*00c45d23SGreg Roach app()->bind(StreamFactoryInterface::class, Psr17Factory::class); 179*00c45d23SGreg Roach app()->bind(UploadedFileFactoryInterface::class, Psr17Factory::class); 180*00c45d23SGreg Roach app()->bind(UriFactoryInterface::class, Psr17Factory::class); 181f397d0fdSGreg Roach } 182f397d0fdSGreg Roach 183f397d0fdSGreg Roach /** 184f397d0fdSGreg Roach * The webtrees application is built from middleware. 185f397d0fdSGreg Roach * 18624f2a3afSGreg Roach * @return array<string> 187f397d0fdSGreg Roach */ 188f397d0fdSGreg Roach public function middleware(): array 189f397d0fdSGreg Roach { 19082e92bfaSGreg Roach return self::MIDDLEWARE; 1918d0ebef0SGreg Roach } 1928d0ebef0SGreg Roach} 193