11f3fb95cSGreg Roach<?php 23976b470SGreg Roach 31f3fb95cSGreg Roach/** 41f3fb95cSGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 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 151f3fb95cSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 161f3fb95cSGreg Roach */ 178b67c11aSGreg Roach 1878f07ab5SGreg Roachdeclare(strict_types=1); 191f3fb95cSGreg Roach 20*ee4364daSGreg Roachuse Aura\Router\RouterContainer; 216ccdf4f0SGreg Roachuse Fig\Http\Message\StatusCodeInterface; 228b67c11aSGreg Roachuse Fisharebest\Webtrees\Application; 236ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Html; 246ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Session; 258898179dSGreg Roachuse Fisharebest\Webtrees\View as WebtreesView; 2652bcc402SGreg Roachuse Fisharebest\Webtrees\Webtrees; 276ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseFactoryInterface; 286ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface; 299b93b7c3SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 306ccdf4f0SGreg Roachuse Psr\Http\Message\StreamFactoryInterface; 318b67c11aSGreg Roach 328b67c11aSGreg Roach/** 338b67c11aSGreg Roach * Get the IoC container, or fetch something from it. 348b67c11aSGreg Roach * 358b67c11aSGreg Roach * @param string|null $abstract 368b67c11aSGreg Roach * 37cab242e7SGreg Roach * @return mixed 388b67c11aSGreg Roach */ 398b67c11aSGreg Roachfunction app(string $abstract = null) 408b67c11aSGreg Roach{ 418b67c11aSGreg Roach if ($abstract === null) { 428b67c11aSGreg Roach return Application::getInstance(); 438b67c11aSGreg Roach } 44e364afe4SGreg Roach 45e364afe4SGreg Roach return Application::getInstance()->make($abstract); 468b67c11aSGreg Roach} 478b67c11aSGreg Roach 481f3fb95cSGreg Roach/** 4952bcc402SGreg Roach * Generate a URL to an asset file in the public folder. 5052bcc402SGreg Roach * Add a version parameter for cache-busting. 5152bcc402SGreg Roach * 5252bcc402SGreg Roach * @param string $path 5352bcc402SGreg Roach * 5452bcc402SGreg Roach * @return string 5552bcc402SGreg Roach */ 5652bcc402SGreg Roachfunction asset(string $path): string 5752bcc402SGreg Roach{ 5875e7614aSGreg Roach if (substr($path, -1) === '/') { 5975e7614aSGreg Roach $version = ''; 6075e7614aSGreg Roach } elseif (Webtrees::STABILITY === '') { 6175e7614aSGreg Roach $version = '?v=' . Webtrees::VERSION; 6252bcc402SGreg Roach } else { 6375e7614aSGreg Roach $version = '?v=' . filemtime(Webtrees::ROOT_DIR . 'public/' . $path); 6452bcc402SGreg Roach } 6552bcc402SGreg Roach 66bb1b9730SGreg Roach $base_url = app(ServerRequestInterface::class)->getAttribute('base_url'); 67bb1b9730SGreg Roach 68bb1b9730SGreg Roach return $base_url . '/public/' . $path . $version; 6952bcc402SGreg Roach} 7052bcc402SGreg Roach 7152bcc402SGreg Roach/** 72f97c7170SGreg Roach * Generate a CSRF token form field. 73f97c7170SGreg Roach * 74f97c7170SGreg Roach * @return string 75f97c7170SGreg Roach */ 76c1010edaSGreg Roachfunction csrf_field() 77c1010edaSGreg Roach{ 786ccdf4f0SGreg Roach return '<input type="hidden" name="csrf" value="' . e(Session::getCsrfToken()) . '">'; 79f97c7170SGreg Roach} 80f97c7170SGreg Roach 81f97c7170SGreg Roach/** 828655ee66SGreg Roach * Get the CSRF token value. 838655ee66SGreg Roach * 848655ee66SGreg Roach * @return string 858655ee66SGreg Roach */ 86c1010edaSGreg Roachfunction csrf_token() 87c1010edaSGreg Roach{ 886ccdf4f0SGreg Roach return Session::getCsrfToken(); 896ccdf4f0SGreg Roach} 906ccdf4f0SGreg Roach 916ccdf4f0SGreg Roach/** 926ccdf4f0SGreg Roach * @param string $url 936ccdf4f0SGreg Roach * @param int $code 946ccdf4f0SGreg Roach * 956ccdf4f0SGreg Roach * @return ResponseInterface 966ccdf4f0SGreg Roach */ 976ccdf4f0SGreg Roachfunction redirect(string $url, $code = StatusCodeInterface::STATUS_FOUND): ResponseInterface 986ccdf4f0SGreg Roach{ 996ccdf4f0SGreg Roach /** @var ResponseFactoryInterface $response_factory */ 1006ccdf4f0SGreg Roach $response_factory = app(ResponseFactoryInterface::class); 1016ccdf4f0SGreg Roach 1026ccdf4f0SGreg Roach return $response_factory 1036ccdf4f0SGreg Roach ->createResponse($code) 1046ccdf4f0SGreg Roach ->withHeader('Location', $url); 1056ccdf4f0SGreg Roach} 1066ccdf4f0SGreg Roach 1076ccdf4f0SGreg Roach/** 1086ccdf4f0SGreg Roach * Create a response. 1096ccdf4f0SGreg Roach * 1106ccdf4f0SGreg Roach * @param mixed $content 1116ccdf4f0SGreg Roach * @param int $code 1126ccdf4f0SGreg Roach * @param string[] $headers 1136ccdf4f0SGreg Roach * 1146ccdf4f0SGreg Roach * @return ResponseInterface 1156ccdf4f0SGreg Roach */ 1166ccdf4f0SGreg Roachfunction response($content = '', $code = StatusCodeInterface::STATUS_OK, $headers = []): ResponseInterface 1176ccdf4f0SGreg Roach{ 1186ccdf4f0SGreg Roach if ($headers === []) { 1196ccdf4f0SGreg Roach if (is_string($content)) { 1206ccdf4f0SGreg Roach $headers = [ 1211b3d4731SGreg Roach 'Content-Type' => 'text/html; charset=utf-8', 1221b3d4731SGreg Roach 'Content-Length' => strlen($content), 1236ccdf4f0SGreg Roach ]; 1246ccdf4f0SGreg Roach } else { 1256ccdf4f0SGreg Roach $content = json_encode($content, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT); 1266ccdf4f0SGreg Roach $headers = [ 1271b3d4731SGreg Roach 'Content-Type' => 'application/json', 1281b3d4731SGreg Roach 'Content-Length' => strlen($content), 1296ccdf4f0SGreg Roach ]; 1306ccdf4f0SGreg Roach } 1316ccdf4f0SGreg Roach } 1326ccdf4f0SGreg Roach 1336ccdf4f0SGreg Roach /** @var ResponseFactoryInterface $response_factory */ 1346ccdf4f0SGreg Roach $response_factory = app(ResponseFactoryInterface::class); 1356ccdf4f0SGreg Roach 1366ccdf4f0SGreg Roach /** @var StreamFactoryInterface $stream_factory */ 1376ccdf4f0SGreg Roach $stream_factory = app(StreamFactoryInterface::class); 1386ccdf4f0SGreg Roach 1396ccdf4f0SGreg Roach $stream = $stream_factory->createStream($content); 1406ccdf4f0SGreg Roach 1416ccdf4f0SGreg Roach $response = $response_factory 1426ccdf4f0SGreg Roach ->createResponse($code) 1436ccdf4f0SGreg Roach ->withBody($stream); 1446ccdf4f0SGreg Roach 1456ccdf4f0SGreg Roach foreach ($headers as $key => $value) { 1466ccdf4f0SGreg Roach $response = $response->withHeader($key, $value); 1476ccdf4f0SGreg Roach } 1486ccdf4f0SGreg Roach 1496ccdf4f0SGreg Roach return $response; 1508655ee66SGreg Roach} 1518655ee66SGreg Roach 1528655ee66SGreg Roach/** 1531f3fb95cSGreg Roach * Generate a URL for a named route. 1541f3fb95cSGreg Roach * 155*ee4364daSGreg Roach * @param string $route_name 1561f3fb95cSGreg Roach * @param array $parameters 1571f3fb95cSGreg Roach * 1581f3fb95cSGreg Roach * @return string 1591f3fb95cSGreg Roach */ 160*ee4364daSGreg Roachfunction route(string $route_name, array $parameters = []): string 161c1010edaSGreg Roach{ 162*ee4364daSGreg Roach $request = app(ServerRequestInterface::class); 163*ee4364daSGreg Roach $base_url = $request->getAttribute('base_url'); 164*ee4364daSGreg Roach $router_container = app(RouterContainer::class); 165*ee4364daSGreg Roach $route = $router_container->getMap()->getRoute($route_name); 1661f3fb95cSGreg Roach 167*ee4364daSGreg Roach // Generate the URL. 168*ee4364daSGreg Roach $url = $router_container->getGenerator($base_url)->generate($route_name, $parameters); 1699b93b7c3SGreg Roach 170*ee4364daSGreg Roach // Aura ignores parameters that are not tokens. We need to add them as query parameters. 171*ee4364daSGreg Roach $parameters = array_filter($parameters, function (string $key) use ($route): bool { 172*ee4364daSGreg Roach return strpos($route->path, '{' . $key . '}') === false && strpos($route->path, '{/' . $key . '}') === false; 173*ee4364daSGreg Roach }, ARRAY_FILTER_USE_KEY); 174*ee4364daSGreg Roach 175*ee4364daSGreg Roach // Turn the pretty URL into an ugly one. 176*ee4364daSGreg Roach if ($request->getAttribute('rewrite_urls') !== '1') { 177*ee4364daSGreg Roach $path = parse_url($url, PHP_URL_PATH); 178*ee4364daSGreg Roach $parameters = ['route' => $path] + $parameters; 179*ee4364daSGreg Roach $url = str_replace($path, '/index.php', $url); 180*ee4364daSGreg Roach } 181*ee4364daSGreg Roach 182*ee4364daSGreg Roach return Html::url($base_url . $url, $parameters); 1831f3fb95cSGreg Roach} 184b2ce94c6SRico Sonntag 1858655ee66SGreg Roach/** 1868655ee66SGreg Roach * Cerate and render a view in a single operation. 1878655ee66SGreg Roach * 1888655ee66SGreg Roach * @param string $name 1898655ee66SGreg Roach * @param mixed[] $data 1908655ee66SGreg Roach * 1918655ee66SGreg Roach * @return string 1928655ee66SGreg Roach */ 193c1010edaSGreg Roachfunction view(string $name, array $data = []) 194c1010edaSGreg Roach{ 1958898179dSGreg Roach return WebtreesView::make($name, $data); 1968655ee66SGreg Roach} 197