xref: /webtrees/app/Http/RequestHandlers/CreateSubmitterAction.php (revision d11be7027e34e3121be11cc025421873364403f9)
1852ede8cSGreg Roach<?php
2852ede8cSGreg Roach
3852ede8cSGreg Roach/**
4852ede8cSGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 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
29852ede8cSGreg Roach/**
30852ede8cSGreg Roach * Process a form to create a new submitter.
31852ede8cSGreg Roach */
32852ede8cSGreg Roachclass CreateSubmitterAction implements RequestHandlerInterface
33852ede8cSGreg Roach{
34852ede8cSGreg Roach    /**
35852ede8cSGreg Roach     * @param ServerRequestInterface $request
36852ede8cSGreg Roach     *
37852ede8cSGreg Roach     * @return ResponseInterface
38852ede8cSGreg Roach     */
39852ede8cSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
40852ede8cSGreg Roach    {
41b55cbc6bSGreg Roach        $tree        = Validator::attributes($request)->tree();
4203f0aef8SGreg Roach        $name        = Validator::parsedBody($request)->isNotEmpty()->string('submitter_name');
43748dbe15SGreg Roach        $address     = Validator::parsedBody($request)->string('submitter_address');
44748dbe15SGreg Roach        $email       = Validator::parsedBody($request)->string('submitter_email');
45748dbe15SGreg Roach        $phone       = Validator::parsedBody($request)->string('submitter_phone');
4603f0aef8SGreg Roach        $restriction = Validator::parsedBody($request)->string('restriction');
47852ede8cSGreg Roach
4803f0aef8SGreg Roach        $name        = Registry::elementFactory()->make('SUBM:NAME')->canonical($name);
4903f0aef8SGreg Roach        $address     = Registry::elementFactory()->make('SUBM:ADDR')->canonical($address);
5003f0aef8SGreg Roach        $email       = Registry::elementFactory()->make('SUBM:EMAIL')->canonical($email);
5103f0aef8SGreg Roach        $phone       = Registry::elementFactory()->make('SUBM:PHON')->canonical($phone);
5203f0aef8SGreg Roach        $restriction = Registry::elementFactory()->make('SUBM:RESN')->canonical($restriction);
53852ede8cSGreg Roach
5403f0aef8SGreg Roach        $gedcom = "0 @@ SUBM\n1 NAME " . strtr($name, ["\n" => "\n2 CONT "]);
55852ede8cSGreg Roach
56852ede8cSGreg Roach        if ($address !== '') {
5703f0aef8SGreg Roach            $gedcom .= "\n1 ADDR " . strtr($address, ["\n" => "\n2 CONT "]);
58852ede8cSGreg Roach        }
59852ede8cSGreg Roach
60f0e822ddSGreg Roach        if ($email !== '') {
6103f0aef8SGreg Roach            $gedcom .= "\n1 EMAIL " . strtr($email, ["\n" => "\n2 CONT "]);
62f0e822ddSGreg Roach        }
63f0e822ddSGreg Roach
64f0e822ddSGreg Roach        if ($phone !== '') {
6503f0aef8SGreg Roach            $gedcom .= "\n1 PHON " . strtr($phone, ["\n" => "\n2 CONT "]);
66f0e822ddSGreg Roach        }
67f0e822ddSGreg Roach
68e3132a19SGreg Roach        if ($restriction !== '') {
6903f0aef8SGreg Roach            $gedcom .= "\n1 RESN " . strtr($restriction, ["\n" => "\n2 CONT "]);
70852ede8cSGreg Roach        }
71852ede8cSGreg Roach
72852ede8cSGreg Roach        $record = $tree->createRecord($gedcom);
73852ede8cSGreg Roach
74c8d78f19SGreg Roach        // value and text are for autocomplete
7565de9aa7SGreg Roach        // html is for interactive modals
76852ede8cSGreg Roach        return response([
77c8d78f19SGreg Roach            'value' => '@' . $record->xref() . '@',
78c8d78f19SGreg Roach            'text'  => view('selects/submitter', ['submitter' => $record]),
79852ede8cSGreg Roach            'html'  => view('modals/record-created', [
80852ede8cSGreg Roach                'title' => I18N::translate('The submitter has been created'),
81852ede8cSGreg Roach                'name'  => $record->fullName(),
82852ede8cSGreg Roach                'url'   => $record->url(),
83852ede8cSGreg Roach            ]),
84852ede8cSGreg Roach        ]);
85852ede8cSGreg Roach    }
86852ede8cSGreg Roach}
87