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 | */ |
||
16 | declare(strict_types=1); |
||
17 | |||
18 | use Fisharebest\Webtrees\Database; |
||
19 | use Fisharebest\Webtrees\DebugBar; |
||
20 | use Fisharebest\Webtrees\Exceptions\Handler; |
||
21 | use Fisharebest\Webtrees\Http\Controllers\SetupController; |
||
22 | use Fisharebest\Webtrees\Http\Middleware\CheckCsrf; |
||
23 | use Fisharebest\Webtrees\Http\Middleware\CheckForMaintenanceMode; |
||
24 | use Fisharebest\Webtrees\Http\Middleware\DebugBarData; |
||
25 | use Fisharebest\Webtrees\Http\Middleware\Housekeeping; |
||
26 | use Fisharebest\Webtrees\Http\Middleware\MiddlewareInterface; |
||
27 | use Fisharebest\Webtrees\Http\Middleware\SetPhpLimits; |
||
28 | use Fisharebest\Webtrees\Http\Middleware\UseFilesystem; |
||
29 | use Fisharebest\Webtrees\Http\Middleware\UseLocale; |
||
30 | use Fisharebest\Webtrees\Http\Middleware\UseSession; |
||
31 | use Fisharebest\Webtrees\Http\Middleware\UseTheme; |
||
32 | use Fisharebest\Webtrees\Http\Middleware\UseTransaction; |
||
33 | use Fisharebest\Webtrees\Http\Middleware\UseTree; |
||
34 | use Fisharebest\Webtrees\Services\MigrationService; |
||
35 | use Fisharebest\Webtrees\Services\ModuleService; |
||
36 | use Fisharebest\Webtrees\Services\TimeoutService; |
||
37 | use Fisharebest\Webtrees\Webtrees; |
||
38 | use Illuminate\Cache\ArrayStore; |
||
39 | use Illuminate\Cache\Repository; |
||
40 | use Symfony\Component\HttpFoundation\Request; |
||
0 ignored issues
–
show
|
|||
41 | use Symfony\Component\HttpFoundation\Response; |
||
0 ignored issues
–
show
This use statement conflicts with another class in this namespace,
Response . Consider defining an alias.
Let?s assume that you have a directory layout like this: .
|-- OtherDir
| |-- Bar.php
| `-- Foo.php
`-- SomeDir
`-- Foo.php
and let?s assume the following content of // Bar.php
namespace OtherDir;
use SomeDir\Foo; // This now conflicts the class OtherDir\Foo
If both files PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as // Bar.php
namespace OtherDir;
use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
![]() |
|||
42 | |||
43 | require __DIR__ . '/vendor/autoload.php'; |
||
44 | |||
45 | const WT_ROOT = __DIR__ . DIRECTORY_SEPARATOR; |
||
46 | |||
47 | Webtrees::init(); |
||
48 | |||
49 | // Initialise the DebugBar for development. |
||
50 | // Use `composer install --dev` on a development build to enable. |
||
51 | // Note that you may need to increase the size of the fcgi buffers on nginx. |
||
52 | // e.g. add these lines to your fastcgi_params file: |
||
53 | // fastcgi_buffers 16 16m; |
||
54 | // fastcgi_buffer_size 32m; |
||
55 | DebugBar::init(class_exists('\\DebugBar\\StandardDebugBar')); |
||
56 | |||
57 | // Use an array cache for database calls, etc. |
||
58 | app()->instance('cache.array', new Repository(new ArrayStore())); |
||
59 | |||
60 | // Start the timer. |
||
61 | app()->instance(TimeoutService::class, new TimeoutService(microtime(true))); |
||
62 | |||
63 | // Extract the request parameters. |
||
64 | $request = Request::createFromGlobals(); |
||
65 | app()->instance(Request::class, $request); |
||
66 | |||
67 | // Calculate the base URL, so we can generate absolute URLs. |
||
68 | $request_uri = $request->getSchemeAndHttpHost() . $request->getRequestUri(); |
||
69 | |||
70 | // Remove any PHP script name and parameters. |
||
71 | $base_uri = preg_replace('/[^\/]+\.php(\?.*)?$/', '', $request_uri); |
||
72 | define('WT_BASE_URL', $base_uri); |
||
73 | |||
74 | try { |
||
75 | // No config file? Run the setup wizard |
||
76 | if (!file_exists(Webtrees::CONFIG_FILE)) { |
||
77 | define('WT_DATA_DIR', 'data/'); |
||
78 | |||
79 | /** @var SetupController $controller */ |
||
80 | $controller = app()->make(SetupController::class); |
||
81 | $response = $controller->setup($request); |
||
82 | $response->prepare($request)->send(); |
||
83 | |||
84 | return; |
||
85 | } |
||
86 | |||
87 | $database_config = parse_ini_file(Webtrees::CONFIG_FILE); |
||
88 | |||
89 | if ($database_config === false) { |
||
90 | throw new Exception('Invalid config file: ' . Webtrees::CONFIG_FILE); |
||
91 | } |
||
92 | |||
93 | // Read the connection settings and create the database |
||
94 | Database::connect($database_config); |
||
95 | |||
96 | // Update the database schema, if necessary. |
||
97 | app()->make(MigrationService::class)->updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION); |
||
98 | |||
99 | $middleware_stack = [ |
||
100 | CheckForMaintenanceMode::class, |
||
101 | SetPhpLimits::class, |
||
102 | UseFilesystem::class, |
||
103 | UseSession::class, |
||
104 | UseTree::class, |
||
105 | UseLocale::class, |
||
106 | ]; |
||
107 | |||
108 | if (class_exists(DebugBar::class)) { |
||
109 | $middleware_stack[] = DebugBarData::class; |
||
110 | } |
||
111 | |||
112 | if ($request->getMethod() === Request::METHOD_GET) { |
||
113 | $middleware_stack[] = Housekeeping::class; |
||
114 | $middleware_stack[] = UseTheme::class; |
||
115 | } |
||
116 | |||
117 | if ($request->getMethod() === Request::METHOD_POST) { |
||
118 | $middleware_stack[] = UseTransaction::class; |
||
119 | $middleware_stack[] = CheckCsrf::class; |
||
120 | } |
||
121 | |||
122 | // Allow modules to provide middleware. |
||
123 | foreach (app()->make(ModuleService::class)->findByInterface(MiddlewareInterface::class) as $middleware) { |
||
124 | $middleware_stack[] = $middleware; |
||
125 | } |
||
126 | |||
127 | // We build the "onion" from the inside outwards, and some middlewares are dependant on others. |
||
128 | $middleware_stack = array_reverse($middleware_stack); |
||
129 | |||
130 | // Create the middleware *after* loading the modules, to give modules the opportunity to replace middleware. |
||
131 | $middleware_stack = array_map(function ($middleware): MiddlewareInterface { |
||
132 | return $middleware instanceof MiddlewareInterface ? $middleware : app()->make($middleware); |
||
133 | }, $middleware_stack); |
||
134 | |||
135 | // Apply the middleware using the "onion" pattern. |
||
136 | $pipeline = array_reduce($middleware_stack, function (Closure $next, MiddlewareInterface $middleware): Closure { |
||
137 | // Create a closure to apply the middleware. |
||
138 | return function (Request $request) use ($middleware, $next): Response { |
||
139 | return $middleware->handle($request, $next); |
||
140 | }; |
||
141 | }, function (Request $request): Response { |
||
142 | // Load the route and routing table. |
||
143 | $route = $request->get('route'); |
||
144 | $routes = require 'routes/web.php'; |
||
145 | |||
146 | // Find the controller and action for the selected route |
||
147 | $controller_action = $routes[$request->getMethod() . ':' . $route] ?? 'ErrorController@noRouteFound'; |
||
148 | [$controller_name, $action] = explode('@', $controller_action); |
||
149 | $controller_class = '\\Fisharebest\\Webtrees\\Http\\Controllers\\' . $controller_name; |
||
150 | |||
151 | $controller = app()->make($controller_class); |
||
152 | |||
153 | return app()->dispatch($controller, $action); |
||
154 | }); |
||
155 | |||
156 | $response = call_user_func($pipeline, $request); |
||
157 | } catch (Exception $exception) { |
||
158 | $response = (new Handler())->render($request, $exception); |
||
159 | } |
||
160 | |||
161 | // Send response |
||
162 | $response->prepare($request)->send(); |
||
163 |
Let?s assume that you have a directory layout like this:
and let?s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: