. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Exceptions\HttpNotFoundException; use Fisharebest\Webtrees\Module\PedigreeChartModule; use Fisharebest\Webtrees\Registry; 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 RedirectPedigreePhp implements RequestHandlerInterface { private const CHART_STYLES = [ 0 => 'right', 1 => 'right', 2 => 'top', 3 => 'bottom', ]; /** @var TreeService */ private $tree_service; /** @var PedigreeChartModule */ private $chart; /** * @param PedigreeChartModule $chart * @param TreeService $tree_service */ public function __construct(PedigreeChartModule $chart, TreeService $tree_service) { $this->chart = $chart; $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'); $root_id = $query['rootid'] ?? ''; $generations = $query['generations'] ?? '4'; $orientation = $query['orientation'] ?? ''; $tree = $this->tree_service->all()->get($ged); if ($tree instanceof Tree) { $individual = Registry::individualFactory()->make($root_id, $tree) ?? $tree->significantIndividual(Auth::user()); $url = $this->chart->chartUrl($individual, [ 'generations' => $generations, 'style' => self::CHART_STYLES[$orientation] ?? 'right', ]); return redirect($url, StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } throw new HttpNotFoundException(); } }