. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\FlashMessages; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\ClipboardService; use Fisharebest\Webtrees\Validator; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function response; /** * Copy a fact to the clipboard. */ class CopyFact implements RequestHandlerInterface { private ClipboardService $clipboard_service; /** * @param ClipboardService $clipboard_service */ public function __construct(ClipboardService $clipboard_service) { $this->clipboard_service = $clipboard_service; } /** * Copy a fact to the clipboard. * * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = Validator::attributes($request)->tree(); $xref = Validator::attributes($request)->isXref()->string('xref'); $fact_id = Validator::attributes($request)->string('fact_id'); $record = Registry::gedcomRecordFactory()->make($xref, $tree); $record = Auth::checkRecordAccess($record, true); foreach ($record->facts() as $fact) { if ($fact->id() === $fact_id) { $this->clipboard_service->copyFact($fact); $message = I18N::translate('“%s“ has been copied to the clipboard.', $fact->name()) . '
' . I18N::translate('Use the “edit“ menu to paste this into another record.'); FlashMessages::addMessage($message); break; } } return response(); } }