11f3fb95cSGreg Roach<?php 23976b470SGreg Roach 31f3fb95cSGreg Roach/** 41f3fb95cSGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 61f3fb95cSGreg Roach * This program is free software: you can redistribute it and/or modify 71f3fb95cSGreg Roach * it under the terms of the GNU General Public License as published by 81f3fb95cSGreg Roach * the Free Software Foundation, either version 3 of the License, or 91f3fb95cSGreg Roach * (at your option) any later version. 101f3fb95cSGreg Roach * This program is distributed in the hope that it will be useful, 111f3fb95cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 121f3fb95cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 131f3fb95cSGreg Roach * GNU General Public License for more details. 141f3fb95cSGreg 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/>. 161f3fb95cSGreg Roach */ 178b67c11aSGreg Roach 1878f07ab5SGreg Roachdeclare(strict_types=1); 191f3fb95cSGreg Roach 20ee4364daSGreg Roachuse Aura\Router\RouterContainer; 216ccdf4f0SGreg Roachuse Fig\Http\Message\StatusCodeInterface; 226ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Html; 23a6656bb5SGreg Roachuse Fisharebest\Webtrees\Session as WebtreesSession; 248898179dSGreg Roachuse Fisharebest\Webtrees\View as WebtreesView; 2552bcc402SGreg Roachuse Fisharebest\Webtrees\Webtrees; 2600c45d23SGreg Roachuse Psr\Http\Message\ResponseFactoryInterface; 276ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface; 289b93b7c3SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 2900c45d23SGreg Roachuse Psr\Http\Message\StreamFactoryInterface; 308b67c11aSGreg Roach 318b67c11aSGreg Roach/** 328b67c11aSGreg Roach * Get the IoC container, or fetch something from it. 338b67c11aSGreg Roach * 348b67c11aSGreg Roach * @param string|null $abstract 358b67c11aSGreg Roach * 36cab242e7SGreg Roach * @return mixed 378b67c11aSGreg Roach */ 388b67c11aSGreg Roachfunction app(string $abstract = null) 398b67c11aSGreg Roach{ 408b67c11aSGreg Roach if ($abstract === null) { 41*785274b8SGreg Roach return Webtrees::container(); 428b67c11aSGreg Roach } 43e364afe4SGreg Roach 44*785274b8SGreg Roach return Webtrees::make($abstract); 458b67c11aSGreg Roach} 468b67c11aSGreg Roach 471f3fb95cSGreg Roach/** 4852bcc402SGreg Roach * Generate a URL to an asset file in the public folder. 4952bcc402SGreg Roach * Add a version parameter for cache-busting. 5052bcc402SGreg Roach * 5152bcc402SGreg Roach * @param string $path 5252bcc402SGreg Roach * 5352bcc402SGreg Roach * @return string 5452bcc402SGreg Roach */ 5552bcc402SGreg Roachfunction asset(string $path): string 5652bcc402SGreg Roach{ 5775e7614aSGreg Roach if (substr($path, -1) === '/') { 5875e7614aSGreg Roach $version = ''; 5975e7614aSGreg Roach } elseif (Webtrees::STABILITY === '') { 6075e7614aSGreg Roach $version = '?v=' . Webtrees::VERSION; 6152bcc402SGreg Roach } else { 6275e7614aSGreg Roach $version = '?v=' . filemtime(Webtrees::ROOT_DIR . 'public/' . $path); 6352bcc402SGreg Roach } 6452bcc402SGreg Roach 65bb1b9730SGreg Roach $base_url = app(ServerRequestInterface::class)->getAttribute('base_url'); 66bb1b9730SGreg Roach 67bb1b9730SGreg Roach return $base_url . '/public/' . $path . $version; 6852bcc402SGreg Roach} 6952bcc402SGreg Roach 7052bcc402SGreg Roach/** 71f97c7170SGreg Roach * Generate a CSRF token form field. 72f97c7170SGreg Roach * 73f97c7170SGreg Roach * @return string 74f97c7170SGreg Roach */ 7524f2a3afSGreg Roachfunction csrf_field(): string 76c1010edaSGreg Roach{ 77e240f5e1SGreg Roach return '<input type="hidden" name="_csrf" value="' . e(WebtreesSession::getCsrfToken()) . '">'; 78f97c7170SGreg Roach} 79f97c7170SGreg Roach 80f97c7170SGreg Roach/** 818655ee66SGreg Roach * Get the CSRF token value. 828655ee66SGreg Roach * 838655ee66SGreg Roach * @return string 848655ee66SGreg Roach */ 8524f2a3afSGreg Roachfunction csrf_token(): string 86c1010edaSGreg Roach{ 87a6656bb5SGreg Roach return WebtreesSession::getCsrfToken(); 886ccdf4f0SGreg Roach} 896ccdf4f0SGreg Roach 906ccdf4f0SGreg Roach/** 916ccdf4f0SGreg Roach * @param string $url 926ccdf4f0SGreg Roach * @param int $code 936ccdf4f0SGreg Roach * 946ccdf4f0SGreg Roach * @return ResponseInterface 956ccdf4f0SGreg Roach */ 96*785274b8SGreg Roachfunction redirect(string $url, int $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface 976ccdf4f0SGreg Roach{ 9800c45d23SGreg Roach /** @var ResponseFactoryInterface $response_factory */ 9900c45d23SGreg Roach $response_factory = app(ResponseFactoryInterface::class); 10000c45d23SGreg Roach 10100c45d23SGreg Roach return $response_factory 1026ccdf4f0SGreg Roach ->createResponse($code) 1036ccdf4f0SGreg Roach ->withHeader('Location', $url); 1046ccdf4f0SGreg Roach} 1056ccdf4f0SGreg Roach 1066ccdf4f0SGreg Roach/** 1076ccdf4f0SGreg Roach * Create a response. 1086ccdf4f0SGreg Roach * 1096ccdf4f0SGreg Roach * @param mixed $content 1106ccdf4f0SGreg Roach * @param int $code 1116ccdf4f0SGreg Roach * @param string[] $headers 1126ccdf4f0SGreg Roach * 1136ccdf4f0SGreg Roach * @return ResponseInterface 1146ccdf4f0SGreg Roach */ 115*785274b8SGreg Roachfunction response($content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface 1166ccdf4f0SGreg Roach{ 1171d1f373cSGreg Roach if ($content === '' && $code === StatusCodeInterface::STATUS_OK) { 1181d1f373cSGreg Roach $code = StatusCodeInterface::STATUS_NO_CONTENT; 1191d1f373cSGreg Roach } 1201d1f373cSGreg Roach 1216ccdf4f0SGreg Roach if ($headers === []) { 1226ccdf4f0SGreg Roach if (is_string($content)) { 1236ccdf4f0SGreg Roach $headers = [ 124a0e7c429SGreg Roach 'Content-Type' => 'text/html; charset=UTF-8', 12549d77569SGreg Roach 'Content-Length' => (string) strlen($content), 1266ccdf4f0SGreg Roach ]; 1276ccdf4f0SGreg Roach } else { 12808b5db2aSGreg Roach $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE); 1296ccdf4f0SGreg Roach $headers = [ 1301b3d4731SGreg Roach 'Content-Type' => 'application/json', 13149d77569SGreg Roach 'Content-Length' => (string) strlen($content), 1326ccdf4f0SGreg Roach ]; 1336ccdf4f0SGreg Roach } 1346ccdf4f0SGreg Roach } 1356ccdf4f0SGreg Roach 13600c45d23SGreg Roach /** @var ResponseFactoryInterface $response_factory */ 13700c45d23SGreg Roach $response_factory = app(ResponseFactoryInterface::class); 1386ccdf4f0SGreg Roach 13900c45d23SGreg Roach /** @var StreamFactoryInterface $stream_factory */ 14000c45d23SGreg Roach $stream_factory = app(StreamFactoryInterface::class); 14100c45d23SGreg Roach 14200c45d23SGreg Roach $stream = $stream_factory->createStream($content); 14300c45d23SGreg Roach 14400c45d23SGreg Roach $response = $response_factory 1456ccdf4f0SGreg Roach ->createResponse($code) 1466ccdf4f0SGreg Roach ->withBody($stream); 1476ccdf4f0SGreg Roach 1486ccdf4f0SGreg Roach foreach ($headers as $key => $value) { 1496ccdf4f0SGreg Roach $response = $response->withHeader($key, $value); 1506ccdf4f0SGreg Roach } 1516ccdf4f0SGreg Roach 1526ccdf4f0SGreg Roach return $response; 1538655ee66SGreg Roach} 1548655ee66SGreg Roach 1558655ee66SGreg Roach/** 1561f3fb95cSGreg Roach * Generate a URL for a named route. 1571f3fb95cSGreg Roach * 158ee4364daSGreg Roach * @param string $route_name 159*785274b8SGreg Roach * @param array<mixed> $parameters 1601f3fb95cSGreg Roach * 1611f3fb95cSGreg Roach * @return string 1621f3fb95cSGreg Roach */ 163ee4364daSGreg Roachfunction route(string $route_name, array $parameters = []): string 164c1010edaSGreg Roach{ 165ee4364daSGreg Roach $request = app(ServerRequestInterface::class); 16622de662bSGreg Roach $base_url = $request->getAttribute('base_url'); 167ee4364daSGreg Roach $router_container = app(RouterContainer::class); 168ee4364daSGreg Roach $route = $router_container->getMap()->getRoute($route_name); 1691f3fb95cSGreg Roach 170ee4364daSGreg Roach // Generate the URL. 1713a0b88a6SGreg Roach $url = $router_container->getGenerator()->generate($route_name, $parameters); 1729b93b7c3SGreg Roach 173ee4364daSGreg Roach // Aura ignores parameters that are not tokens. We need to add them as query parameters. 1743cfcc809SGreg Roach $parameters = array_filter($parameters, static function (string $key) use ($route): bool { 175dec352c1SGreg Roach return !str_contains($route->path, '{' . $key . '}') && !str_contains($route->path, '{/' . $key . '}'); 176ee4364daSGreg Roach }, ARRAY_FILTER_USE_KEY); 177ee4364daSGreg Roach 17822de662bSGreg Roach if ($request->getAttribute('rewrite_urls') === '1') { 17922de662bSGreg Roach // Make the pretty URL absolute. 1808435e0e5SGreg Roach $base_path = parse_url($base_url, PHP_URL_PATH) ?? ''; 1818435e0e5SGreg Roach $url = $base_url . substr($url, strlen($base_path)); 18222de662bSGreg Roach } else { 183ee4364daSGreg Roach // Turn the pretty URL into an ugly one. 184ee4364daSGreg Roach $path = parse_url($url, PHP_URL_PATH); 185ee4364daSGreg Roach $parameters = ['route' => $path] + $parameters; 18698116b24SGreg Roach $url = $base_url . '/index.php'; 187ee4364daSGreg Roach } 188ee4364daSGreg Roach 18998116b24SGreg Roach return Html::url($url, $parameters); 1901f3fb95cSGreg Roach} 191b2ce94c6SRico Sonntag 1928655ee66SGreg Roach/** 193*785274b8SGreg Roach * Create and render a view in a single operation. 1948655ee66SGreg Roach * 1958655ee66SGreg Roach * @param string $name 196*785274b8SGreg Roach * @param array<mixed> $data 1978655ee66SGreg Roach * 1988655ee66SGreg Roach * @return string 1998655ee66SGreg Roach */ 20024f2a3afSGreg Roachfunction view(string $name, array $data = []): string 201c1010edaSGreg Roach{ 2028898179dSGreg Roach return WebtreesView::make($name, $data); 2038655ee66SGreg Roach} 204