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