. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Module\InteractiveTreeModule; use Fisharebest\Webtrees\Module\PedigreeMapModule; 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 RedirectModulePhp implements RequestHandlerInterface { 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'); $mod = $query['mod'] ?? ''; $mod_action = $query['mod_action'] ?? ''; $rootid = $query['rootid'] ?? ''; $tree = $this->tree_service->all()->get($ged); if ($tree instanceof Tree) { $individual = Registry::individualFactory()->make($rootid, $tree); if ($individual instanceof Individual) { switch ($mod . '/' . $mod_action) { case 'googlemap/pedigree_map': $module = $this->module_service->findByInterface(PedigreeMapModule::class)->first(); if ($module instanceof PedigreeMapModule) { $generations = $query['PEDIGREE_GENERATIONS'] ?? PedigreeMapModule::DEFAULT_GENERATIONS; $url = $module->chartUrl($individual, ['generations' => $generations]); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } break; case 'tree/treeview': $module = $this->module_service->findByInterface(InteractiveTreeModule::class)->first(); if ($module instanceof InteractiveTreeModule) { $url = $module->chartUrl($individual, []); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } break; } } } throw new HttpNotFoundException(); } }