Passed
Push — master ( 411706...1e9c29 )
by Greg
06:07
created

MapDataList::childLocationStatus()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 29
Code Lines 25

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 25
c 2
b 0
f 0
nc 1
nop 1
dl 0
loc 29
rs 9.52
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2020 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
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22
use Fisharebest\Webtrees\Http\ViewResponseTrait;
23
use Fisharebest\Webtrees\I18N;
24
use Fisharebest\Webtrees\Module\PlaceHierarchyListModule;
25
use Fisharebest\Webtrees\Services\MapDataService;
26
use Fisharebest\Webtrees\Services\ModuleService;
27
use Fisharebest\Webtrees\Services\TreeService;
28
use Illuminate\Database\Capsule\Manager as DB;
29
use Illuminate\Database\Query\Expression;
30
use Psr\Http\Message\ResponseInterface;
31
use Psr\Http\Message\ServerRequestInterface;
32
use Psr\Http\Server\RequestHandlerInterface;
33
use stdClass;
34
35
use function array_reverse;
36
use function redirect;
37
use function route;
38
39
/**
40
 * Show a list of map data.
41
 */
42
class MapDataList implements RequestHandlerInterface
43
{
44
    use ViewResponseTrait;
45
46
    /** @var MapDataService */
47
    private $map_data_service;
48
49
    /** @var ModuleService */
50
    private $module_service;
51
52
    /** @var TreeService */
53
    private $tree_service;
54
55
    /**
56
     * Dependency injection.
57
     *
58
     * @param MapDataService $map_data_service
59
     * @param ModuleService  $module_service
60
     * @param TreeService    $tree_service
61
     */
62
    public function __construct(
63
        MapDataService $map_data_service,
64
        ModuleService $module_service,
65
        TreeService $tree_service
66
    ) {
67
        $this->map_data_service = $map_data_service;
68
        $this->module_service   = $module_service;
69
        $this->tree_service     = $tree_service;
70
    }
71
72
    /**
73
     * @param ServerRequestInterface $request
74
     *
75
     * @return ResponseInterface
76
     */
77
    public function handle(ServerRequestInterface $request): ResponseInterface
78
    {
79
        $parent_id   = (int) ($request->getQueryParams()['parent_id'] ?? 0);
80
        $title       = I18N::translate('Geographic data');
81
        $parent      = $this->map_data_service->findById($parent_id);
82
83
        // Request for a non-existent location?
84
        if ($parent_id !== $parent->id()) {
85
            return redirect(route(__CLASS__));
86
        }
87
88
        // Automatically import any new/missing places.
89
        $this->map_data_service->importMissingLocations();
90
91
        $breadcrumbs = [$parent->locationName()];
92
93
        $tmp = $parent->parent();
94
95
        while ($tmp->id() !== 0) {
96
            $breadcrumbs[route(__CLASS__, ['parent_id' => $tmp->id()])] = $tmp->locationName();
97
98
            $tmp = $tmp->parent();
99
        }
100
101
        $breadcrumbs[route(__CLASS__)]           = $title;
102
        $breadcrumbs[route(ControlPanel::class)] = I18N::translate('Control panel');
103
104
        $list_module = $this->module_service
105
            ->findByInterface(PlaceHierarchyListModule::class)
106
            ->first();
107
108
        $this->layout = 'layouts/administration';
109
110
        return $this->viewResponse('admin/locations', [
111
            'active'       => $this->map_data_service->activePlaces($parent),
112
            'all_trees'    => $this->tree_service->all(),
113
            'breadcrumbs'  => array_reverse($breadcrumbs),
114
            'parent_id'    => $parent_id,
115
            'placelist'    => $this->map_data_service->getPlaceListLocation($parent_id),
116
            'list_module'  => $list_module,
117
            'title'        => $title,
118
        ]);
119
    }
120
}
121