. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; use Fisharebest\Webtrees\Module\BranchesListModule; use Fisharebest\Webtrees\Services\TreeService; use Fisharebest\Webtrees\Site; use Fisharebest\Webtrees\Tree; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function redirect; /** * Redirect URLs created by webtrees 1.x (and PhpGedView). */ class RedirectBranchesPhp implements RequestHandlerInterface { private BranchesListModule $module; private TreeService $tree_service; /** * @param BranchesListModule $module * @param TreeService $tree_service */ public function __construct(BranchesListModule $module, TreeService $tree_service) { $this->module = $module; $this->tree_service = $tree_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $query = $request->getQueryParams(); $ged = $query['ged'] ?? Site::getPreference('DEFAULT_GEDCOM'); $soundex_dm = $query['soundex_dm'] ?? null; $soundex_std = $query['soundex_std'] ?? null; $surname = $query['surname'] ?? null; $tree = $this->tree_service->all()->get($ged); if ($tree instanceof Tree) { $url = route('module', [ 'module' => $this->module->name(), 'action' => 'Page', 'soundex_dm' => $soundex_dm, 'soundex_std' => $soundex_std, 'surname' => $surname, 'tree' => $tree->name(), ]); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } throw new HttpNotFoundException(); } }