. */ 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\StatisticsChartModule; 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 RedirectStatisticsPhp 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'); $tree = $this->tree_service->all()->get($ged); $module = $this->module_service->findByInterface(StatisticsChartModule::class)->first(); if ($tree instanceof Tree && $module instanceof StatisticsChartModule) { $individual = $tree->significantIndividual(Auth::user()); // This chart stored a list of individuals in the session, which we won't have. $url = $module->chartUrl($individual, []); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } throw new HttpNotFoundException(); } }