. */ 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\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 TreeService $tree_service; private StatisticsChartModule $statistics_chart_module; /** * @param StatisticsChartModule $statistics_chart_module * @param TreeService $tree_service */ public function __construct(StatisticsChartModule $statistics_chart_module, TreeService $tree_service) { $this->statistics_chart_module = $statistics_chart_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'); $tree = $this->tree_service->all()->get($ged); if ($tree instanceof Tree) { $individual = $tree->significantIndividual(Auth::user()); // This chart stored a list of individuals in the session, which we won't have. $url = $this->statistics_chart_module->chartUrl($individual, []); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } throw new HttpNotFoundException(); } }