. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; use Fisharebest\Webtrees\Module\AncestorsChartModule; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\ModuleService; 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 RedirectAncestryPhp implements RequestHandlerInterface { private const CHART_STYLES = [ 0 => 'tree', 1 => 'tree', 2 => 'individuals', 3 => 'families', ]; private ModuleService $module_service; private TreeService $tree_service; /** * @param ModuleService $module_service * @param TreeService $tree_service */ public function __construct(ModuleService $module_service, TreeService $tree_service) { $this->tree_service = $tree_service; $this->module_service = $module_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $query = $request->getQueryParams(); $ged = $query['ged'] ?? Site::getPreference('DEFAULT_GEDCOM'); $root_id = $query['rootid'] ?? ''; $generations = $query['PEDIGREE_GENERATIONS'] ?? '4'; $chart_style = $query['chart_style'] ?? ''; $tree = $this->tree_service->all()->get($ged); $module = $this->module_service->findByInterface(AncestorsChartModule::class)->first(); if ($tree instanceof Tree && $module instanceof AncestorsChartModule) { $individual = Registry::individualFactory()->make($root_id, $tree) ?? $tree->significantIndividual(Auth::user()); $url = $module->chartUrl($individual, [ 'generations' => $generations, 'style' => self::CHART_STYLES[$chart_style] ?? 'tree', ]); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } throw new HttpNotFoundException(); } }