![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/app/Factories/ |
Upload File : |
<?php /** * webtrees: online genealogy * Copyright (C) 2023 webtrees development team * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Factories; use Aura\Router\Map; use Aura\Router\Route; use Aura\Router\RouterContainer; use Fisharebest\Webtrees\Contracts\RouteFactoryInterface; use Fisharebest\Webtrees\Html; use Fisharebest\Webtrees\Validator; use Psr\Http\Message\ServerRequestInterface; use function app; use function array_filter; use function array_map; use function assert; use function is_bool; use function parse_url; use function strlen; use function substr; use const ARRAY_FILTER_USE_KEY; use const PHP_URL_PATH; /** * Make a URL for a route. */ class RouteFactory implements RouteFactoryInterface { /** * Generate a URL for a named route. * * @param string $route_name * @param array<bool|int|string|array<string>|null> $parameters * * @return string */ public function route(string $route_name, array $parameters = []): string { $request = app(ServerRequestInterface::class); assert($request instanceof ServerRequestInterface); $base_url = Validator::attributes($request)->string('base_url'); $route = $this->routeMap()->getRoute($route_name); // Generate the URL. $router_container = app(RouterContainer::class); assert($router_container instanceof RouterContainer); // webtrees uses http_build_query() to generate URLs - which maps false onto "0". // Aura uses rawurlencode(), which maps false onto "" - which does not work as an aura URL parameter. $parameters = array_map(static fn ($var) => is_bool($var) ? (int) $var : $var, $parameters); // Aura doesn't work with empty/optional URL parameters - but we need empty ones for query parameters. $url_parameters = array_map(static fn ($var) => $var === '' ? null : $var, $parameters); $url = $router_container->getGenerator()->generate($route_name, $url_parameters); // Aura ignores parameters that are not tokens. We need to add them as query parameters. $parameters = array_filter($parameters, static function (string $key) use ($route): bool { return !str_contains($route->path, '{' . $key . '}') && !str_contains($route->path, '{/' . $key . '}'); }, ARRAY_FILTER_USE_KEY); if (Validator::attributes($request)->boolean('rewrite_urls', false)) { // Make the pretty URL absolute. $base_path = parse_url($base_url, PHP_URL_PATH) ?: ''; $url = $base_url . substr($url, strlen($base_path)); } else { // Turn the pretty URL into an ugly one. $path = parse_url($url, PHP_URL_PATH); $parameters = ['route' => $path] + $parameters; $url = $base_url . '/index.php'; } return Html::url($url, $parameters); } /** * @return Map<Route> */ public function routeMap(): Map { $router_container = app(RouterContainer::class); assert($router_container instanceof RouterContainer); return $router_container->getMap(); } }