xref: /webtrees/app/Http/RequestHandlers/CreateSourceModal.php (revision 852ede8c85e501a9df6f3c9d31e5933428e18cc2)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2019 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22use Fisharebest\Webtrees\I18N;
23use Fisharebest\Webtrees\Tree;
24use Psr\Http\Message\ResponseInterface;
25use Psr\Http\Message\ServerRequestInterface;
26use Psr\Http\Server\RequestHandlerInterface;
27
28use function assert;
29
30/**
31 * Process a form to create a new source.
32 */
33class CreateSourceModal implements RequestHandlerInterface
34{
35    /**
36     * @param ServerRequestInterface $request
37     *
38     * @return ResponseInterface
39     */
40    public function handle(ServerRequestInterface $request): ResponseInterface
41    {
42        $tree = $request->getAttribute('tree');
43        assert($tree instanceof Tree);
44
45        return response(view('modals/create-source', [
46            'tree' => $tree,
47        ]));
48    }
49
50    /**
51     * @param ServerRequestInterface $request
52     *
53     * @return ResponseInterface
54     */
55    public function createSourceAction(ServerRequestInterface $request): ResponseInterface
56    {
57        $tree = $request->getAttribute('tree');
58        assert($tree instanceof Tree);
59
60        $params              = $request->getParsedBody();
61        $title               = $params['source-title'];
62        $abbreviation        = $params['source-abbreviation'];
63        $author              = $params['source-author'];
64        $publication         = $params['source-publication'];
65        $repository          = $params['source-repository'];
66        $call_number         = $params['source-call-number'];
67        $text                = $params['source-text'];
68        $privacy_restriction = $params['privacy-restriction'];
69        $edit_restriction    = $params['edit-restriction'];
70
71        // Fix whitespace
72        $title        = trim(preg_replace('/\s+/', ' ', $title));
73        $abbreviation = trim(preg_replace('/\s+/', ' ', $abbreviation));
74        $author       = trim(preg_replace('/\s+/', ' ', $author));
75        $publication  = trim(preg_replace('/\s+/', ' ', $publication));
76        $repository   = trim(preg_replace('/\s+/', ' ', $repository));
77        $call_number  = trim(preg_replace('/\s+/', ' ', $call_number));
78
79        // Convert line endings to GEDDCOM continuations
80        $text = str_replace([
81            "\r\n",
82            "\r",
83            "\n",
84        ], "\n1 CONT ", $text);
85
86        $gedcom = "0 @@ SOUR\n\n1 TITL " . $title;
87
88        if ($abbreviation !== '') {
89            $gedcom .= "\n1 ABBR " . $abbreviation;
90        }
91
92        if ($author !== '') {
93            $gedcom .= "\n1 AUTH " . $author;
94        }
95
96        if ($publication !== '') {
97            $gedcom .= "\n1 PUBL " . $publication;
98        }
99
100        if ($text !== '') {
101            $gedcom .= "\n1 TEXT " . $text;
102        }
103
104        if ($repository !== '') {
105            $gedcom .= "\n1 REPO @" . $repository . '@';
106
107            if ($call_number !== '') {
108                $gedcom .= "\n2 CALN " . $call_number;
109            }
110        }
111
112        if (in_array($privacy_restriction, ['none', 'privacy', 'confidential'], true)) {
113            $gedcom .= "\n1 RESN " . $privacy_restriction;
114        }
115
116        if ($edit_restriction === 'locked') {
117            $gedcom .= "\n1 RESN " . $edit_restriction;
118        }
119
120        $record = $tree->createRecord($gedcom);
121
122        // id and text are for select2 / autocomplete
123        // html is for interactive modals
124        return response([
125            'id'   => $record->xref(),
126            'text' => view('selects/source', [
127                'source' => $record,
128            ]),
129            'html' => view('modals/record-created', [
130                'title' => I18N::translate('The source has been created'),
131                'name'  => $record->fullName(),
132                'url'   => $record->url(),
133            ]),
134        ]);
135    }
136}
137