xref: /webtrees/app/Http/RequestHandlers/TreePreferencesPage.php (revision 92a78a2f1d314ef404e1445d7916cbee426ce636)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2022 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
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22use Fisharebest\Webtrees\Auth;
23use Fisharebest\Webtrees\Contracts\ElementInterface;
24use Fisharebest\Webtrees\Contracts\UserInterface;
25use Fisharebest\Webtrees\Date;
26use Fisharebest\Webtrees\Elements\UnknownElement;
27use Fisharebest\Webtrees\Http\ViewResponseTrait;
28use Fisharebest\Webtrees\I18N;
29use Fisharebest\Webtrees\Module\ModuleThemeInterface;
30use Fisharebest\Webtrees\Registry;
31use Fisharebest\Webtrees\Services\ModuleService;
32use Fisharebest\Webtrees\Services\TreeService;
33use Fisharebest\Webtrees\Services\UserService;
34use Fisharebest\Webtrees\SurnameTradition;
35use Fisharebest\Webtrees\Validator;
36use Illuminate\Support\Collection;
37use Psr\Http\Message\ResponseInterface;
38use Psr\Http\Message\ServerRequestInterface;
39use Psr\Http\Server\RequestHandlerInterface;
40
41use function app;
42use function e;
43use function explode;
44use function in_array;
45
46/**
47 * Edit the tree preferences.
48 */
49class TreePreferencesPage implements RequestHandlerInterface
50{
51    use ViewResponseTrait;
52
53    private ModuleService $module_service;
54
55    private TreeService $tree_service;
56
57    private UserService $user_service;
58
59    /**
60     * @param ModuleService $module_service
61     * @param TreeService   $tree_service
62     * @param UserService   $user_service
63     */
64    public function __construct(
65        ModuleService $module_service,
66        TreeService $tree_service,
67        UserService $user_service
68    ) {
69        $this->module_service = $module_service;
70        $this->tree_service   = $tree_service;
71        $this->user_service   = $user_service;
72    }
73
74    /**
75     * @param ServerRequestInterface $request
76     *
77     * @return ResponseInterface
78     */
79    public function handle(ServerRequestInterface $request): ResponseInterface
80    {
81        $this->layout = 'layouts/administration';
82
83        $tree        = Validator::attributes($request)->tree();
84        $data_folder = Registry::filesystem()->dataName();
85
86        $french_calendar_start    = new Date('22 SEP 1792');
87        $french_calendar_end      = new Date('31 DEC 1805');
88        $gregorian_calendar_start = new Date('15 OCT 1582');
89
90        $surname_list_styles = [
91            /* I18N: Layout option for lists of names */
92            'style1' => I18N::translate('list'),
93            /* I18N: Layout option for lists of names */
94            'style2' => I18N::translate('table'),
95            /* I18N: Layout option for lists of names */
96            'style3' => I18N::translate('tag cloud'),
97        ];
98
99        $page_layouts = [
100            /* I18N: page orientation */
101            0 => I18N::translate('Portrait'),
102            /* I18N: page orientation */
103            1 => I18N::translate('Landscape'),
104        ];
105
106        $formats = [
107            /* I18N: https://en.wikipedia.org/wiki/Plain_text */
108            ''         => I18N::translate('plain text'),
109            /* I18N: https://en.wikipedia.org/wiki/Markdown */
110            'markdown' => I18N::translate('markdown'),
111        ];
112
113        $source_types = [
114            0 => I18N::translate('none'),
115            1 => I18N::translate('facts'),
116            2 => I18N::translate('records'),
117        ];
118
119        $theme_options = $this->module_service
120            ->findByInterface(ModuleThemeInterface::class)
121            ->map($this->module_service->titleMapper())
122            ->prepend(I18N::translate('<default theme>'), '');
123
124        $privacy_options = [
125            Auth::PRIV_USER => I18N::translate('Show to members'),
126            Auth::PRIV_NONE => I18N::translate('Show to managers'),
127            Auth::PRIV_HIDE => I18N::translate('Hide from everyone'),
128        ];
129
130        // For historical reasons, we have two fields in one
131        $calendar_formats = explode('_and_', $tree->getPreference('CALENDAR_FORMAT') . '_and_');
132
133        // Split into separate fields
134        $relatives_events = explode(',', $tree->getPreference('SHOW_RELATIVES_EVENTS'));
135
136        $pedigree_individual = Registry::individualFactory()->make($tree->getPreference('PEDIGREE_ROOT_ID'), $tree);
137
138        $members = $this->user_service->all()->filter(static function (UserInterface $user) use ($tree): bool {
139            return Auth::isMember($tree, $user);
140        });
141
142        $ignore_facts = ['CHAN', 'CHIL', 'FAMC', 'FAMS', 'HUSB', 'NOTE', 'OBJE', 'SOUR', 'SUBM', 'WIFE'];
143
144        $all_family_facts = Collection::make(Registry::elementFactory()->make('FAM')->subtags())
145            ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
146            ->mapWithKeys(static fn (string $value, string $key): array => [$key => 'FAM:' . $key])
147            ->map(static fn (string $tag): ElementInterface => Registry::elementFactory()->make($tag))
148            ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
149            ->map(static fn (ElementInterface $element): string => $element->label())
150            ->sort(I18N::comparator());
151
152        $all_individual_facts = Collection::make(Registry::elementFactory()->make('INDI')->subtags())
153            ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
154            ->mapWithKeys(static fn (string $value, string $key): array => [$key => 'INDI:' . $key])
155            ->map(static fn (string $tag): ElementInterface => Registry::elementFactory()->make($tag))
156            ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
157            ->map(static fn (ElementInterface $element): string => $element->label())
158            ->sort(I18N::comparator());
159
160        $all_surname_traditions = SurnameTradition::allDescriptions();
161
162        $tree_count = $this->tree_service->all()->count();
163
164        $title = I18N::translate('Preferences') . ' — ' . e($tree->title());
165
166        $base_url = Validator::attributes($request)->string('base_url');
167
168        return $this->viewResponse('admin/trees-preferences', [
169            'all_family_facts'         => $all_family_facts,
170            'all_individual_facts'     => $all_individual_facts,
171            'all_surname_traditions'   => $all_surname_traditions,
172            'base_url'                 => $base_url,
173            'calendar_formats'         => $calendar_formats,
174            'data_folder'              => $data_folder,
175            'formats'                  => $formats,
176            'french_calendar_end'      => $french_calendar_end,
177            'french_calendar_start'    => $french_calendar_start,
178            'gregorian_calendar_start' => $gregorian_calendar_start,
179            'members'                  => $members,
180            'page_layouts'             => $page_layouts,
181            'pedigree_individual'      => $pedigree_individual,
182            'privacy_options'          => $privacy_options,
183            'relatives_events'         => $relatives_events,
184            'source_types'             => $source_types,
185            'surname_list_styles'      => $surname_list_styles,
186            'theme_options'            => $theme_options,
187            'title'                    => $title,
188            'tree'                     => $tree,
189            'tree_count'               => $tree_count,
190        ]);
191    }
192}
193