Completed
Push — develop ( c3a705...4b9394 )
by Greg
11:16
created

MapBox::postAdminAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 9
rs 10
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2021 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 <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Module;
21
22
use Fisharebest\Webtrees\FlashMessages;
23
use Fisharebest\Webtrees\I18N;
24
use Psr\Http\Message\ResponseInterface;
25
use Psr\Http\Message\ServerRequestInterface;
26
27
use function redirect;
28
29
/**
30
 * Class MapBox - use maps within webtrees
31
 */
32
class MapBox extends AbstractModule implements ModuleConfigInterface, ModuleMapProviderInterface
33
{
34
    use ModuleConfigTrait;
35
    use ModuleMapProviderTrait;
36
37
    /**
38
     * Name of the map provider.
39
     *
40
     * @return string
41
     */
42
    public function description(): string
43
    {
44
        $link = '<a href="https://www.mapbox.com" dir="ltr">www.mapbox.com</a>';
45
46
        // I18N: %s is a link/URL
47
        return I18N::translate('Create maps using %s.', $link);
48
    }
49
50
    /**
51
     * Should this module be enabled when it is first installed?
52
     *
53
     * @return bool
54
     */
55
    public function isEnabledByDefault(): bool
56
    {
57
        return false;
58
    }
59
60
    /**
61
     * @return ResponseInterface
62
     */
63
    public function getAdminAction(): ResponseInterface
64
    {
65
        $this->layout = 'layouts/administration';
66
67
        $api_key = $this->getPreference('api_key');
68
69
        return $this->viewResponse('modules/mapbox/config', [
70
            'api_key' => $api_key,
71
            'title'   => $this->title(),
72
        ]);
73
    }
74
75
    /**
76
     * Name of the map provider.
77
     *
78
     * @return string
79
     */
80
    public function title(): string
81
    {
82
        return I18N::translate('Mapbox');
83
    }
84
85
    /**
86
     * @param ServerRequestInterface $request
87
     *
88
     * @return ResponseInterface
89
     */
90
    public function postAdminAction(ServerRequestInterface $request): ResponseInterface
91
    {
92
        $params = (array) $request->getParsedBody();
93
94
        $this->setPreference('api_key', $params['api_key'] ?? '');
95
96
        FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->title()), 'success');
97
98
        return redirect($this->getConfigLink());
99
    }
100
101
    /**
102
     * LeafletJS definitions for the layer
103
     *
104
     * @return object
105
     */
106
    public function layerData(): object
107
    {
108
        $api_key = $this->getPreference('api_key');
109
110
        return (object) [
111
            'title'  => 'MapBox',
112
            'user'   => (object) ['accessToken' => $api_key],
113
            'common' => [
114
                'help'        => '<a href="https://account.mapbox.com">MapBox</a>',
115
                'url'         => 'https://api.mapbox.com/styles/v1/mapbox/{id}/tiles/{z}/{x}/{y}?access_token=' . $api_key,
116
                'attribution' => '© <a href="https://www.mapbox.com/about/maps">Mapbox</a> © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> <strong><a href="https://www.mapbox.com/map-feedback">Improve this map</a></strong>',
117
                'tileSize'    => 512,
118
                'zoomOffset'  => -1,
119
                'maxZoom'     => 20,
120
                'subdomains'  => 'abcd',
121
            ],
122
            'styles' => [
123
                (object) [
124
                    'title'      => 'Dark',
125
                    'parameters' => (object) [
126
                        'id' => 'dark-v10',
127
                    ],
128
                ],
129
                (object) [
130
                    'title'      => 'Light',
131
                    'parameters' => (object) [
132
                        'id' => 'light-v10',
133
                    ],
134
                ],
135
                (object) [
136
                    'title'      => 'Outdoors',
137
                    'parameters' => (object) [
138
                        'id' => 'outdoors-v11',
139
                    ],
140
                ],
141
                (object) [
142
                    'title'      => 'Satellite',
143
                    'parameters' => (object) [
144
                        'id' => 'satellite-v9',
145
                    ],
146
                ],
147
                (object) [
148
                    'title'      => 'Streets',
149
                    'parameters' => (object) [
150
                        'id' => 'streets-v11',
151
                    ],
152
                ],
153
            ],
154
        ];
155
    }
156
}
157