xref: /webtrees/app/Http/Middleware/Router.php (revision d35568b467207589ea9059739da0bf1f7e785a0d)
19e5d8e6fSGreg Roach<?php
29e5d8e6fSGreg Roach
39e5d8e6fSGreg Roach/**
49e5d8e6fSGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 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
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
169e5d8e6fSGreg Roach */
17fcfa147eSGreg Roach
189e5d8e6fSGreg Roachdeclare(strict_types=1);
199e5d8e6fSGreg Roach
209e5d8e6fSGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware;
219e5d8e6fSGreg Roach
22d8d90d88SGreg Roachuse Aura\Router\Route;
23ee4364daSGreg Roachuse Aura\Router\RouterContainer;
2464c83a78SGreg Roachuse Aura\Router\Rule\Accepts;
2564c83a78SGreg Roachuse Aura\Router\Rule\Allows;
2664c83a78SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
27d8d90d88SGreg Roachuse Fisharebest\Webtrees\Registry;
2882e92bfaSGreg Roachuse Fisharebest\Webtrees\Services\ModuleService;
290c0910bfSGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
30ee4364daSGreg Roachuse Fisharebest\Webtrees\Tree;
31b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator;
32785274b8SGreg Roachuse Fisharebest\Webtrees\Webtrees;
339e5d8e6fSGreg Roachuse Psr\Http\Message\ResponseInterface;
349e5d8e6fSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
359e5d8e6fSGreg Roachuse Psr\Http\Server\MiddlewareInterface;
369e5d8e6fSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
370c0910bfSGreg Roach
38d76bd128SGreg Roachuse function explode;
39d8d90d88SGreg Roachuse function implode;
40dec352c1SGreg Roachuse function str_contains;
419e5d8e6fSGreg Roach
429e5d8e6fSGreg Roach/**
439e5d8e6fSGreg Roach * Simple class to help migrate to a third-party routing library.
449e5d8e6fSGreg Roach */
4571378461SGreg Roachclass Router implements MiddlewareInterface
469e5d8e6fSGreg Roach{
47c4943cffSGreg Roach    private ModuleService $module_service;
4882e92bfaSGreg Roach
49c4943cffSGreg Roach    private RouterContainer $router_container;
503ecf8b4eSGreg Roach
51c4943cffSGreg Roach    private TreeService $tree_service;
520c0910bfSGreg Roach
5382e92bfaSGreg Roach    /**
5482e92bfaSGreg Roach     * Router constructor.
5582e92bfaSGreg Roach     *
5682e92bfaSGreg Roach     * @param ModuleService   $module_service
574874f72dSGreg Roach     * @param RouterContainer $router_container
580c0910bfSGreg Roach     * @param TreeService     $tree_service
5982e92bfaSGreg Roach     */
60c4943cffSGreg Roach    public function __construct(
61c4943cffSGreg Roach        ModuleService $module_service,
62c4943cffSGreg Roach        RouterContainer $router_container,
63c4943cffSGreg Roach        TreeService $tree_service
64c4943cffSGreg Roach    ) {
6582e92bfaSGreg Roach        $this->module_service   = $module_service;
663ecf8b4eSGreg Roach        $this->router_container = $router_container;
670c0910bfSGreg Roach        $this->tree_service     = $tree_service;
689e5d8e6fSGreg Roach    }
699e5d8e6fSGreg Roach
709e5d8e6fSGreg Roach    /**
719e5d8e6fSGreg Roach     * @param ServerRequestInterface  $request
729e5d8e6fSGreg Roach     * @param RequestHandlerInterface $handler
739e5d8e6fSGreg Roach     *
749e5d8e6fSGreg Roach     * @return ResponseInterface
759e5d8e6fSGreg Roach     */
769e5d8e6fSGreg Roach    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
779e5d8e6fSGreg Roach    {
788753199aSGreg Roach        // Ugly URLs store the path in a query parameter.
79748dbe15SGreg Roach        $url_route = Validator::queryParams($request)->string('route', '');
80d76bd128SGreg Roach
81d76bd128SGreg Roach        if (Validator::attributes($request)->boolean('rewrite_urls', false)) {
82d76bd128SGreg Roach            // We are creating pretty URLs, but received an ugly one. Probably a search-engine. Redirect it.
83d76bd128SGreg Roach            if ($url_route !== '') {
84d76bd128SGreg Roach                $uri = $request->getUri()
85d76bd128SGreg Roach                    ->withPath($url_route)
86d76bd128SGreg Roach                    ->withQuery(explode('&', $request->getUri()->getQuery(), 2)[1] ?? '');
87d76bd128SGreg Roach
88d76bd128SGreg Roach                return Registry::responseFactory()->redirectUrl($uri, StatusCodeInterface::STATUS_PERMANENT_REDIRECT);
89d76bd128SGreg Roach            }
909e4deb3cSGreg Roach
919e4deb3cSGreg Roach            $pretty = $request;
92d76bd128SGreg Roach        } else {
93d76bd128SGreg Roach            // Turn the ugly URL into a pretty one, so the router can parse it.
948753199aSGreg Roach            $uri    = $request->getUri()->withPath($url_route);
959e4deb3cSGreg Roach            $pretty = $request->withUri($uri);
96ee4364daSGreg Roach        }
979e5d8e6fSGreg Roach
983ecf8b4eSGreg Roach        // Match the request to a route.
9964c83a78SGreg Roach        $matcher = $this->router_container->getMatcher();
1009e4deb3cSGreg Roach        $route   = $matcher->match($pretty);
1013ecf8b4eSGreg Roach
10264c83a78SGreg Roach        // No route matched?
10315958f0eSGreg Roach        if ($route === false) {
10464c83a78SGreg Roach            $failed_route = $matcher->getFailedRoute();
10564c83a78SGreg Roach
106d8d90d88SGreg Roach            if ($failed_route instanceof Route) {
107d8d90d88SGreg Roach                if ($failed_route->failedRule === Allows::class) {
10865905dc4SGreg Roach                    return Registry::responseFactory()->response('', StatusCodeInterface::STATUS_METHOD_NOT_ALLOWED, [
10964c83a78SGreg Roach                        'Allow' => implode(', ', $failed_route->allows),
11064c83a78SGreg Roach                    ]);
111d8d90d88SGreg Roach                }
11264c83a78SGreg Roach
113d8d90d88SGreg Roach                if ($failed_route->failedRule === Accepts::class) {
114d8d90d88SGreg Roach                    return Registry::responseFactory()->response('Negotiation failed', StatusCodeInterface::STATUS_NOT_ACCEPTABLE);
115d8d90d88SGreg Roach                }
116d8d90d88SGreg Roach            }
11764c83a78SGreg Roach
11864c83a78SGreg Roach            // Not found
1199e5d8e6fSGreg Roach            return $handler->handle($request);
1209e5d8e6fSGreg Roach        }
1219e5d8e6fSGreg Roach
122f307429bSGreg Roach        // Add the route as attribute of the request
123f307429bSGreg Roach        $request = $request->withAttribute('route', $route);
124f307429bSGreg Roach
1255d3d7b86SGreg Roach        // This middleware cannot run until after the routing, as it needs to know the route.
126f307429bSGreg Roach        $post_routing_middleware = [CheckCsrf::class];
127f307429bSGreg Roach
12882e92bfaSGreg Roach        // Firstly, apply the route middleware
129ee4364daSGreg Roach        $route_middleware = $route->extras['middleware'] ?? [];
1309e5d8e6fSGreg Roach
13182e92bfaSGreg Roach        // Secondly, apply any module middleware
13282e92bfaSGreg Roach        $module_middleware = $this->module_service->findByInterface(MiddlewareInterface::class)->all();
1339e5d8e6fSGreg Roach
13482e92bfaSGreg Roach        // Finally, run the handler using middleware
135aa7265a1SGreg Roach        $handler_middleware = [RequestHandler::class];
13682e92bfaSGreg Roach
137f307429bSGreg Roach        $middleware = array_merge(
138f307429bSGreg Roach            $post_routing_middleware,
139f307429bSGreg Roach            $route_middleware,
140f307429bSGreg Roach            $module_middleware,
141f307429bSGreg Roach            $handler_middleware
142f307429bSGreg Roach        );
143f307429bSGreg Roach
144f307429bSGreg Roach        // Add the matched attributes to the request.
145f307429bSGreg Roach        foreach ($route->attributes as $key => $value) {
146f307429bSGreg Roach            if ($key === 'tree') {
147f307429bSGreg Roach                $value = $this->tree_service->all()->get($value);
148*d35568b4SGreg Roach
149*d35568b4SGreg Roach                if ($value instanceof Tree) {
150*d35568b4SGreg Roach                    Registry::container()->set(Tree::class, $value);
151*d35568b4SGreg Roach                }
152f307429bSGreg Roach
153f307429bSGreg Roach                // Missing mandatory parameter? Let the default handler take care of it.
154dec352c1SGreg Roach                if ($value === null && str_contains($route->path, '{tree}')) {
155f307429bSGreg Roach                    return $handler->handle($request);
156f307429bSGreg Roach                }
157f307429bSGreg Roach            }
158f307429bSGreg Roach
159f307429bSGreg Roach            $request = $request->withAttribute((string) $key, $value);
160f307429bSGreg Roach        }
161f307429bSGreg Roach
162cd7ea74aSGreg Roach        // Bind the updated request into the container
163*d35568b4SGreg Roach        Registry::container()->set(ServerRequestInterface::class, $request);
16482e92bfaSGreg Roach
165785274b8SGreg Roach        return Webtrees::dispatch($request, $middleware);
1669e5d8e6fSGreg Roach    }
1679e5d8e6fSGreg Roach}
168