xref: /webtrees/index.php (revision 67992b6a3e78399bd33189954a5f08bb23b02503)
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
18use Carbon\Carbon;
19use Fisharebest\Localization\Locale as WebtreesLocale;
20use Fisharebest\Localization\Locale\LocaleInterface;
21use Fisharebest\Webtrees\Auth;
22use Fisharebest\Webtrees\Contracts\UserInterface;
23use Fisharebest\Webtrees\Database;
24use Fisharebest\Webtrees\DebugBar;
25use Fisharebest\Webtrees\Exceptions\Handler;
26use Fisharebest\Webtrees\Http\Controllers\SetupController;
27use Fisharebest\Webtrees\Http\Middleware\CheckCsrf;
28use Fisharebest\Webtrees\Http\Middleware\CheckForMaintenanceMode;
29use Fisharebest\Webtrees\Http\Middleware\DebugBarData;
30use Fisharebest\Webtrees\Http\Middleware\Housekeeping;
31use Fisharebest\Webtrees\Http\Middleware\UseTransaction;
32use Fisharebest\Webtrees\I18N;
33use Fisharebest\Webtrees\Module\ModuleThemeInterface;
34use Fisharebest\Webtrees\Module\WebtreesTheme;
35use Fisharebest\Webtrees\Services\MigrationService;
36use Fisharebest\Webtrees\Services\ModuleService;
37use Fisharebest\Webtrees\Services\TimeoutService;
38use Fisharebest\Webtrees\Session;
39use Fisharebest\Webtrees\Site;
40use Fisharebest\Webtrees\Tree;
41use Fisharebest\Webtrees\View;
42use Fisharebest\Webtrees\Webtrees;
43use Illuminate\Cache\ArrayStore;
44use Illuminate\Cache\Repository;
45use Illuminate\Database\Capsule\Manager as DB;
46use Illuminate\Support\Collection;
47use League\Flysystem\Adapter\Local;
48use League\Flysystem\Cached\CachedAdapter;
49use League\Flysystem\Cached\Storage\Memory;
50use League\Flysystem\Filesystem;
51use Symfony\Component\HttpFoundation\Request;
52use Symfony\Component\HttpFoundation\Response;
53
54require __DIR__ . '/vendor/autoload.php';
55
56const WT_ROOT = __DIR__ . DIRECTORY_SEPARATOR;
57
58Webtrees::init();
59
60// Initialise the DebugBar for development.
61// Use `composer install --dev` on a development build to enable.
62// Note that you may need to increase the size of the fcgi buffers on nginx.
63// e.g. add these lines to your fastcgi_params file:
64// fastcgi_buffers 16 16m;
65// fastcgi_buffer_size 32m;
66DebugBar::init(class_exists('\\DebugBar\\StandardDebugBar'));
67
68// Use an array cache for database calls, etc.
69app()->instance('cache.array', new Repository(new ArrayStore()));
70
71// Extract the request parameters.
72$request = Request::createFromGlobals();
73app()->instance(Request::class, $request);
74
75// Dummy value, until we have created our first tree.
76app()->bind(Tree::class, function () {
77    return null;
78});
79
80// Calculate the base URL, so we can generate absolute URLs.
81$request_uri = $request->getSchemeAndHttpHost() . $request->getRequestUri();
82
83// Remove any PHP script name and parameters.
84$base_uri = preg_replace('/[^\/]+\.php(\?.*)?$/', '', $request_uri);
85define('WT_BASE_URL', $base_uri);
86
87DebugBar::startMeasure('init database');
88
89// Connect to the database
90try {
91    // No config file? Run the setup wizard
92    if (!file_exists(Webtrees::CONFIG_FILE)) {
93        define('WT_DATA_DIR', 'data/');
94        /** @var SetupController $controller */
95        $controller = app()->make(SetupController::class);
96        $response   = $controller->setup($request);
97        $response->prepare($request)->send();
98
99        return;
100    }
101
102    $database_config = parse_ini_file(Webtrees::CONFIG_FILE);
103
104    if ($database_config === false) {
105        throw new Exception('Invalid config file: ' . Webtrees::CONFIG_FILE);
106    }
107
108    // Read the connection settings and create the database
109    Database::connect($database_config);
110
111    // Update the database schema, if necessary.
112    app()->make(MigrationService::class)
113        ->updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION);
114} catch (PDOException $exception) {
115    defined('WT_DATA_DIR') || define('WT_DATA_DIR', 'data/');
116    I18N::init();
117    if ($exception->getCode() === 1045) {
118        // Error during connection?
119        $content = view('errors/database-connection', ['error' => $exception->getMessage()]);
120    } else {
121        // Error in a migration script?
122        $content = view('errors/database-error', ['error' => $exception->getMessage()]);
123    }
124    $html     = view('layouts/error', ['content' => $content]);
125    $response = new Response($html, Response::HTTP_SERVICE_UNAVAILABLE);
126    $response->prepare($request)->send();
127
128    return;
129} catch (Throwable $exception) {
130    defined('WT_DATA_DIR') || define('WT_DATA_DIR', 'data/');
131    I18N::init();
132    $content  = view('errors/database-connection', ['error' => $exception->getMessage()]);
133    $html     = view('layouts/error', ['content' => $content]);
134    $response = new Response($html, Response::HTTP_SERVICE_UNAVAILABLE);
135    $response->prepare($request)->send();
136
137    return;
138}
139
140DebugBar::stopMeasure('init database');
141
142// The config.ini.php file must always be in a fixed location.
143// Other user files can be stored elsewhere...
144define('WT_DATA_DIR', realpath(Site::getPreference('INDEX_DIRECTORY', 'data/')) . DIRECTORY_SEPARATOR);
145
146$filesystem = new Filesystem(new CachedAdapter(new Local(WT_DATA_DIR), new Memory()));
147
148// Some broken servers block access to their own temp folder using open_basedir...
149$filesystem->createDir('tmp');
150putenv('TMPDIR=' . WT_DATA_DIR . 'tmp');
151Swift_Preferences::getInstance()->setTempDir(WT_DATA_DIR . 'tmp');
152
153// Request more resources - if we can/want to
154$memory_limit = Site::getPreference('MEMORY_LIMIT');
155if ($memory_limit !== '' && strpos(ini_get('disable_functions'), 'ini_set') === false) {
156    ini_set('memory_limit', $memory_limit);
157}
158$max_execution_time = Site::getPreference('MAX_EXECUTION_TIME');
159if ($max_execution_time !== '' && strpos(ini_get('disable_functions'), 'set_time_limit') === false) {
160    set_time_limit((int) $max_execution_time);
161}
162
163// Sessions
164Session::start();
165
166define('WT_TIMESTAMP', Carbon::now('UTC')->timestamp);
167define('WT_CLIENT_JD', 2440588 + intdiv(WT_TIMESTAMP, 86400));
168
169// Update the last-login time no more than once a minute
170if (WT_TIMESTAMP - Session::get('activity_time') >= 60) {
171    if (Session::get('masquerade') === null) {
172        Auth::user()->setPreference('sessiontime', (string) WT_TIMESTAMP);
173    }
174    Session::put('activity_time', WT_TIMESTAMP);
175}
176
177DebugBar::startMeasure('routing');
178
179try {
180    // Most requests will need the current tree and user.
181    $tree = Tree::findByName($request->get('ged')) ?? null;
182
183    // No tree specified/available?  Choose one.
184    if ($tree === null && $request->getMethod() === Request::METHOD_GET) {
185        $tree = Tree::findByName(Site::getPreference('DEFAULT_GEDCOM')) ?? array_values(Tree::getAll())[0] ?? null;
186    }
187
188    // Select a locale
189    define('WT_LOCALE', I18N::init('', $tree));
190    Session::put('locale', WT_LOCALE);
191
192    // Most layouts will require a tree for the page header/footer
193    View::share('tree', $tree);
194
195    // Load the route and routing table.
196    $route  = $request->get('route');
197    $routes = require 'routes/web.php';
198
199    // Find the controller and action for the selected route
200    $controller_action = $routes[$request->getMethod() . ':' . $route] ?? 'ErrorController@noRouteFound';
201    [$controller_name, $action] = explode('@', $controller_action);
202    $controller_class = '\\Fisharebest\\Webtrees\\Http\\Controllers\\' . $controller_name;
203
204    app()->instance(Tree::class, $tree);
205    app()->instance(UserInterface::class, Auth::user());
206    app()->instance(LocaleInterface::class, WebtreesLocale::create(WT_LOCALE));
207    app()->instance(TimeoutService::class, new TimeoutService(microtime(true)));
208    app()->instance(Filesystem::class, $filesystem);
209
210    $controller = app()->make($controller_class);
211
212    DebugBar::stopMeasure('routing');
213
214    DebugBar::startMeasure('init theme');
215
216    /** @var Collection|ModuleThemeInterface[] $themes */
217    $themes = app()->make(ModuleService::class)->findByInterface(ModuleThemeInterface::class);
218
219    // Last theme used?
220    $theme = $themes->get(Session::get('theme_id', ''));
221
222    // Default for tree?
223    if ($theme === null && $tree instanceof Tree) {
224        $theme = $themes->get($tree->getPreference('THEME_DIR'));
225    }
226
227    // Default for site?
228    if ($theme === null) {
229        $theme = $themes->get(Site::getPreference('THEME_DIR'));
230    }
231
232    // Default
233    if ($theme === null) {
234        $theme = app()->make(WebtreesTheme::class);
235    }
236
237    // Bind this theme into the container
238    app()->instance(ModuleThemeInterface::class, $theme);
239
240    // Remember this setting
241    Session::put('theme_id', $theme->name());
242
243    DebugBar::stopMeasure('init theme');
244
245    // Note that we can't stop this timer, as running the action will
246    // generate the response - which includes (and stops) the timer
247    DebugBar::startMeasure('controller_action');
248
249    $middleware_stack = [
250        CheckForMaintenanceMode::class,
251    ];
252
253    if (class_exists(DebugBar::class)) {
254        $middleware_stack[] = DebugBarData::class;
255    }
256
257    if ($request->getMethod() === Request::METHOD_GET) {
258        $middleware_stack[] = Housekeeping::class;
259    }
260
261    if ($request->getMethod() === Request::METHOD_POST) {
262        $middleware_stack[] = UseTransaction::class;
263        $middleware_stack[] = CheckCsrf::class;
264    }
265
266    // Apply the middleware using the "onion" pattern.
267    $pipeline = array_reduce($middleware_stack, function (Closure $next, string $middleware): Closure {
268        // Create a closure to apply the middleware.
269        return function (Request $request) use ($middleware, $next): Response {
270            return app()->make($middleware)->handle($request, $next);
271        };
272    }, function (Request $request) use ($controller, $action): Response {
273        return app()->dispatch($controller, $action);
274    });
275
276    $response = call_user_func($pipeline, $request);
277} catch (Exception $exception) {
278    $response = (new Handler())->render($request, $exception);
279}
280
281// Send response
282$response->prepare($request)->send();
283