xref: /webtrees/app/Http/RequestHandlers/SearchAdvancedAction.php (revision b46c87bda4b592cf9252f1db48552a820b1e3d97)
1f5402f3dSGreg Roach<?php
2f5402f3dSGreg Roach
3f5402f3dSGreg Roach/**
4f5402f3dSGreg Roach * webtrees: online genealogy
5f5402f3dSGreg Roach * Copyright (C) 2019 webtrees development team
6f5402f3dSGreg Roach * This program is free software: you can redistribute it and/or modify
7f5402f3dSGreg Roach * it under the terms of the GNU General Public License as published by
8f5402f3dSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9f5402f3dSGreg Roach * (at your option) any later version.
10f5402f3dSGreg Roach * This program is distributed in the hope that it will be useful,
11f5402f3dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12f5402f3dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13f5402f3dSGreg Roach * GNU General Public License for more details.
14f5402f3dSGreg Roach * You should have received a copy of the GNU General Public License
15f5402f3dSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16f5402f3dSGreg Roach */
17f5402f3dSGreg Roach
18f5402f3dSGreg Roachdeclare(strict_types=1);
19f5402f3dSGreg Roach
20f5402f3dSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21f5402f3dSGreg Roach
22f5402f3dSGreg Roachuse Fisharebest\Webtrees\Tree;
23f5402f3dSGreg Roachuse Psr\Http\Message\ResponseInterface;
24f5402f3dSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
25f5402f3dSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
26f5402f3dSGreg Roach
27f5402f3dSGreg Roachuse function assert;
28f5402f3dSGreg Roach
29f5402f3dSGreg Roach/**
30f5402f3dSGreg Roach * Search for genealogy data
31f5402f3dSGreg Roach */
32f5402f3dSGreg Roachclass SearchAdvancedAction implements RequestHandlerInterface
33f5402f3dSGreg Roach{
34f5402f3dSGreg Roach    /**
35f5402f3dSGreg Roach     * The standard search.
36f5402f3dSGreg Roach     *
37f5402f3dSGreg Roach     * @param ServerRequestInterface $request
38f5402f3dSGreg Roach     *
39f5402f3dSGreg Roach     * @return ResponseInterface
40f5402f3dSGreg Roach     */
41f5402f3dSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
42f5402f3dSGreg Roach    {
43f5402f3dSGreg Roach        $tree = $request->getAttribute('tree');
4475964c75SGreg Roach        assert($tree instanceof Tree);
45f5402f3dSGreg Roach
46*b46c87bdSGreg Roach        $params = (array) $request->getParsedBody();
47f5402f3dSGreg Roach
48f5402f3dSGreg Roach        $fields      = $params['fields'] ?? [];
49f5402f3dSGreg Roach        $modifiers   = $params['modifiers'] ?? [];
50f5402f3dSGreg Roach        $other_field = $params['other_field'] ?? '';
51f5402f3dSGreg Roach        $other_value = $params['other_value'] ?? '';
52f5402f3dSGreg Roach
53f5402f3dSGreg Roach        if ($other_field !== '' && $other_value !== '') {
54f5402f3dSGreg Roach            $fields[$other_field] = $other_value;
55f5402f3dSGreg Roach        }
56f5402f3dSGreg Roach
57f5402f3dSGreg Roach        return redirect(route(SearchAdvancedPage::class, [
58f5402f3dSGreg Roach            'fields'    => $fields,
59f5402f3dSGreg Roach            'modifiers' => $modifiers,
60f5402f3dSGreg Roach            'tree'      => $tree->name(),
61f5402f3dSGreg Roach        ]));
62f5402f3dSGreg Roach    }
63f5402f3dSGreg Roach}
64