19e5d8e6fSGreg Roach<?php 29e5d8e6fSGreg Roach 39e5d8e6fSGreg Roach/** 49e5d8e6fSGreg Roach * webtrees: online genealogy 59e5d8e6fSGreg Roach * Copyright (C) 2019 webtrees development team 69e5d8e6fSGreg Roach * This program is free software: you can redistribute it and/or modify 79e5d8e6fSGreg Roach * it under the terms of the GNU General Public License as published by 89e5d8e6fSGreg Roach * the Free Software Foundation, either version 3 of the License, or 99e5d8e6fSGreg Roach * (at your option) any later version. 109e5d8e6fSGreg Roach * This program is distributed in the hope that it will be useful, 119e5d8e6fSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 129e5d8e6fSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 139e5d8e6fSGreg Roach * GNU General Public License for more details. 149e5d8e6fSGreg Roach * You should have received a copy of the GNU General Public License 159e5d8e6fSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 169e5d8e6fSGreg Roach */ 17fcfa147eSGreg Roach 189e5d8e6fSGreg Roachdeclare(strict_types=1); 199e5d8e6fSGreg Roach 209e5d8e6fSGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware; 219e5d8e6fSGreg Roach 22ee4364daSGreg Roachuse Aura\Router\RouterContainer; 2382e92bfaSGreg Roachuse Fisharebest\Webtrees\Services\ModuleService; 240c0910bfSGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 25ee4364daSGreg Roachuse Fisharebest\Webtrees\Tree; 26a992e8c1SGreg Roachuse Fisharebest\Webtrees\View; 2782e92bfaSGreg Roachuse Middleland\Dispatcher; 289e5d8e6fSGreg Roachuse Psr\Http\Message\ResponseInterface; 299e5d8e6fSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 309e5d8e6fSGreg Roachuse Psr\Http\Server\MiddlewareInterface; 319e5d8e6fSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 320c0910bfSGreg Roach 339e5d8e6fSGreg Roachuse function app; 3482e92bfaSGreg Roachuse function array_map; 359e5d8e6fSGreg Roach 369e5d8e6fSGreg Roach/** 379e5d8e6fSGreg Roach * Simple class to help migrate to a third-party routing library. 389e5d8e6fSGreg Roach */ 3971378461SGreg Roachclass Router implements MiddlewareInterface 409e5d8e6fSGreg Roach{ 4182e92bfaSGreg Roach /** @var ModuleService */ 4282e92bfaSGreg Roach private $module_service; 4382e92bfaSGreg Roach 443ecf8b4eSGreg Roach /** @var RouterContainer */ 453ecf8b4eSGreg Roach private $router_container; 463ecf8b4eSGreg Roach 470c0910bfSGreg Roach /** @var TreeService */ 480c0910bfSGreg Roach private $tree_service; 490c0910bfSGreg Roach 5082e92bfaSGreg Roach /** 5182e92bfaSGreg Roach * Router constructor. 5282e92bfaSGreg Roach * 5382e92bfaSGreg Roach * @param ModuleService $module_service 544874f72dSGreg Roach * @param RouterContainer $router_container 550c0910bfSGreg Roach * @param TreeService $tree_service 5682e92bfaSGreg Roach */ 570c0910bfSGreg Roach public function __construct(ModuleService $module_service, RouterContainer $router_container, TreeService $tree_service) 5882e92bfaSGreg Roach { 5982e92bfaSGreg Roach $this->module_service = $module_service; 603ecf8b4eSGreg Roach $this->router_container = $router_container; 610c0910bfSGreg Roach $this->tree_service = $tree_service; 629e5d8e6fSGreg Roach } 639e5d8e6fSGreg Roach 649e5d8e6fSGreg Roach /** 659e5d8e6fSGreg Roach * @param ServerRequestInterface $request 669e5d8e6fSGreg Roach * @param RequestHandlerInterface $handler 679e5d8e6fSGreg Roach * 689e5d8e6fSGreg Roach * @return ResponseInterface 699e5d8e6fSGreg Roach */ 709e5d8e6fSGreg Roach public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface 719e5d8e6fSGreg Roach { 724874f72dSGreg Roach // Turn the ugly URL into a pretty one, so the router can parse it. 73*8753199aSGreg Roach $pretty = $request; 74*8753199aSGreg Roach 7554a7c588SGreg Roach if ($request->getAttribute('rewrite_urls') !== '1') { 76*8753199aSGreg Roach // Ugly URLs store the path in a query parameter. 77*8753199aSGreg Roach $url_route = $request->getQueryParams()['route'] ?? ''; 78*8753199aSGreg Roach $uri = $request->getUri()->withPath($url_route); 79*8753199aSGreg Roach $pretty = $request->withUri($uri); 80ee4364daSGreg Roach } 819e5d8e6fSGreg Roach 823ecf8b4eSGreg Roach // Match the request to a route. 83*8753199aSGreg Roach $route = $this->router_container->getMatcher()->match($pretty); 843ecf8b4eSGreg Roach 853ecf8b4eSGreg Roach // No route matched? 863ecf8b4eSGreg Roach if ($route === false) { 87a992e8c1SGreg Roach // Bind the request into the container and the layout 889e5d8e6fSGreg Roach app()->instance(ServerRequestInterface::class, $request); 89a992e8c1SGreg Roach View::share('request', $request); 909e5d8e6fSGreg Roach 919e5d8e6fSGreg Roach return $handler->handle($request); 929e5d8e6fSGreg Roach } 939e5d8e6fSGreg Roach 944874f72dSGreg Roach // Add the route as attribute of the request 954874f72dSGreg Roach $request = $request->withAttribute('route', $route->name); 964874f72dSGreg Roach 9782e92bfaSGreg Roach // Firstly, apply the route middleware 98ee4364daSGreg Roach $route_middleware = $route->extras['middleware'] ?? []; 9982e92bfaSGreg Roach $route_middleware = array_map('app', $route_middleware); 1009e5d8e6fSGreg Roach 10182e92bfaSGreg Roach // Secondly, apply any module middleware 10282e92bfaSGreg Roach $module_middleware = $this->module_service->findByInterface(MiddlewareInterface::class)->all(); 1039e5d8e6fSGreg Roach 10482e92bfaSGreg Roach // Finally, run the handler using middleware 105ee4364daSGreg Roach $handler_middleware = [new WrapHandler($route->handler)]; 10682e92bfaSGreg Roach 10782e92bfaSGreg Roach $middleware = array_merge($route_middleware, $module_middleware, $handler_middleware); 10882e92bfaSGreg Roach 109ee4364daSGreg Roach // Add the matched attributes to the request. 110ee4364daSGreg Roach foreach ($route->attributes as $key => $value) { 111ee4364daSGreg Roach if ($key === 'tree') { 1121e653452SGreg Roach $value = $this->tree_service->all()->get($value); 1130c0910bfSGreg Roach // @TODO - this is still required by the date formatter. 1143cfcc809SGreg Roach app()->instance(Tree::class, $value); 1150c0910bfSGreg Roach // @TODO - this is still required by various view templates. 1160c0910bfSGreg Roach View::share('tree', $value); 117ee4364daSGreg Roach } 118ee4364daSGreg Roach $request = $request->withAttribute($key, $value); 119ee4364daSGreg Roach } 120ee4364daSGreg Roach 1213ecf8b4eSGreg Roach // Bind the request into the container and the layout 1223ecf8b4eSGreg Roach app()->instance(ServerRequestInterface::class, $request); 1233ecf8b4eSGreg Roach View::share('request', $request); 1243ecf8b4eSGreg Roach 12582e92bfaSGreg Roach $dispatcher = new Dispatcher($middleware, app()); 12682e92bfaSGreg Roach 12782e92bfaSGreg Roach return $dispatcher->dispatch($request); 1289e5d8e6fSGreg Roach } 1299e5d8e6fSGreg Roach} 130