. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Validator; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function response; use function view; /** * Process a form to create a new repository. */ class CreateRepositoryAction implements RequestHandlerInterface { /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = Validator::attributes($request)->tree(); $name = Validator::parsedBody($request)->isNotEmpty()->string('name'); $address = Validator::parsedBody($request)->string('address'); $url = Validator::parsedBody($request)->string('url'); $restriction = Validator::parsedBody($request)->string('restriction'); $name = Registry::elementFactory()->make('REPO:NAME')->canonical($name); $address = Registry::elementFactory()->make('REPO:ADDR')->canonical($address); $url = Registry::elementFactory()->make('REPO:WWW')->canonical($url); $restriction = Registry::elementFactory()->make('REPO:RESN')->canonical($restriction); $gedcom = "0 @@ REPO\n1 NAME " . strtr($name, ["\n" => "\n2 CONT "]); if ($address !== '') { $gedcom .= "\n1 ADDR " . strtr($address, ["\n" => "\n2 CONT "]); } if ($url !== '') { $gedcom .= "\n1 WWW " . strtr($url, ["\n" => "\n2 CONT "]); } if ($restriction !== '') { $gedcom .= "\n1 RESN " . strtr($restriction, ["\n" => "\n2 CONT "]); } $record = $tree->createRecord($gedcom); // value and text are for autocomplete // html is for interactive modals return response([ 'value' => '@' . $record->xref() . '@', 'text' => view('selects/repository', ['repository' => $record]), 'html' => view('modals/record-created', [ 'title' => I18N::translate('The repository has been created'), 'name' => $record->fullName(), 'url' => $record->url(), ]), ]); } }