. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Family; use Fisharebest\Webtrees\Http\ViewResponseTrait; use Fisharebest\Webtrees\Services\ClipboardService; use Fisharebest\Webtrees\Tree; use Illuminate\Support\Collection; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use stdClass; use function assert; use function is_string; use function redirect; /** * Show a family's page. */ class FamilyPage implements RequestHandlerInterface { use ViewResponseTrait; /** @var ClipboardService */ private $clipboard_service; /** * FamilyPage constructor. * * @param ClipboardService $clipboard_service */ public function __construct(ClipboardService $clipboard_service) { $this->clipboard_service = $clipboard_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = $request->getAttribute('tree'); assert($tree instanceof Tree); $xref = $request->getAttribute('xref'); assert(is_string($xref)); $family = Family::getInstance($xref, $tree); $family = Auth::checkFamilyAccess($family, false); // Redirect to correct xref/slug if ($family->xref() !== $xref || $request->getAttribute('slug') !== $family->slug()) { return redirect($family->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } $clipboard_facts = $this->clipboard_service->pastableFacts($family, new Collection()); return $this->viewResponse('family-page', [ 'facts' => $family->facts([], true), 'meta_robots' => 'index,follow', 'clipboard_facts' => $clipboard_facts, 'record' => $family, 'significant' => $this->significant($family), 'title' => $family->fullName(), 'tree' => $tree, ]); } /** * What are the significant elements of this page? * The layout will need them to generate URLs for charts and reports. * * @param Family $family * * @return stdClass */ private function significant(Family $family): stdClass { $significant = (object) [ 'family' => $family, 'individual' => null, 'surname' => '', ]; foreach ($family->spouses()->merge($family->children()) as $individual) { $significant->individual = $individual; [$significant->surname] = explode(',', $individual->sortName()); break; } return $significant; } }