1852ede8cSGreg Roach<?php 2852ede8cSGreg Roach 3852ede8cSGreg Roach/** 4852ede8cSGreg Roach * webtrees: online genealogy 55bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team 6852ede8cSGreg Roach * This program is free software: you can redistribute it and/or modify 7852ede8cSGreg Roach * it under the terms of the GNU General Public License as published by 8852ede8cSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9852ede8cSGreg Roach * (at your option) any later version. 10852ede8cSGreg Roach * This program is distributed in the hope that it will be useful, 11852ede8cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12852ede8cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13852ede8cSGreg Roach * GNU General Public License for more details. 14852ede8cSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16852ede8cSGreg Roach */ 17852ede8cSGreg Roach 18852ede8cSGreg Roachdeclare(strict_types=1); 19852ede8cSGreg Roach 20852ede8cSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 21852ede8cSGreg Roach 22852ede8cSGreg Roachuse Fisharebest\Webtrees\I18N; 236b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry; 24b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 25852ede8cSGreg Roachuse Psr\Http\Message\ResponseInterface; 26852ede8cSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 27852ede8cSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 28852ede8cSGreg Roach 29e35de89cSGreg Roachuse function preg_replace; 30e35de89cSGreg Roachuse function response; 31e35de89cSGreg Roachuse function trim; 32e35de89cSGreg Roachuse function view; 33852ede8cSGreg Roach 34852ede8cSGreg Roach/** 35852ede8cSGreg Roach * Process a form to create a new repository. 36852ede8cSGreg Roach */ 37852ede8cSGreg Roachclass CreateRepositoryAction implements RequestHandlerInterface 38852ede8cSGreg Roach{ 39852ede8cSGreg Roach /** 40852ede8cSGreg Roach * @param ServerRequestInterface $request 41852ede8cSGreg Roach * 42852ede8cSGreg Roach * @return ResponseInterface 43852ede8cSGreg Roach */ 44852ede8cSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 45852ede8cSGreg Roach { 46b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 479f0bdfcdSGreg Roach $name = Validator::parsedBody($request)->string('name'); 489f0bdfcdSGreg Roach $address = Validator::parsedBody($request)->string('address'); 49ec396848SGreg Roach $url = Validator::parsedBody($request)->string('url'); 50*e3132a19SGreg Roach $restriction = Validator::parsedBody($request)->isInArray(['', 'NONE', 'PRIVACY', 'CONFIDENTIAL', 'LOCKED'])->string('restriction'); 51852ede8cSGreg Roach 522b44f6fbSGreg Roach // Fix non-printing characters 53852ede8cSGreg Roach $name = trim(preg_replace('/\s+/', ' ', $name)); 54852ede8cSGreg Roach 55852ede8cSGreg Roach $gedcom = "0 @@ REPO\n1 NAME " . $name; 56852ede8cSGreg Roach 572d111ef4SGreg Roach if ($address !== '') { 582d111ef4SGreg Roach $gedcom .= "\n1 ADDR " . strtr($address, ["\r\n" => "\n2 CONT "]); 592d111ef4SGreg Roach } 602d111ef4SGreg Roach 612d111ef4SGreg Roach if ($url !== '') { 622d111ef4SGreg Roach $gedcom .= "\n1 WWW " . $url; 632d111ef4SGreg Roach } 642d111ef4SGreg Roach 65*e3132a19SGreg Roach if ($restriction !== '') { 66fc34a24dSGreg Roach $gedcom .= "\n1 RESN " . $restriction; 67852ede8cSGreg Roach } 68852ede8cSGreg Roach 69852ede8cSGreg Roach $record = $tree->createRecord($gedcom); 706b9cb339SGreg Roach $record = Registry::repositoryFactory()->new($record->xref(), $record->gedcom(), null, $tree); 71852ede8cSGreg Roach 72c8d78f19SGreg Roach // value and text are for autocomplete 73852ede8cSGreg Roach // html is for interactive modals 74852ede8cSGreg Roach return response([ 75c8d78f19SGreg Roach 'value' => '@' . $record->xref() . '@', 76c8d78f19SGreg Roach 'text' => view('selects/repository', ['repository' => $record]), 77852ede8cSGreg Roach 'html' => view('modals/record-created', [ 78852ede8cSGreg Roach 'title' => I18N::translate('The repository has been created'), 79852ede8cSGreg Roach 'name' => $record->fullName(), 80852ede8cSGreg Roach 'url' => $record->url(), 81852ede8cSGreg Roach ]), 82852ede8cSGreg Roach ]); 83852ede8cSGreg Roach } 84852ede8cSGreg Roach} 85