xref: /webtrees/app/Http/RequestHandlers/TreePreferencesPage.php (revision f25fc0f929f69ab8124cf0cecde45e457db7574a)
16fd01894SGreg Roach<?php
26fd01894SGreg Roach
36fd01894SGreg Roach/**
46fd01894SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
66fd01894SGreg Roach * This program is free software: you can redistribute it and/or modify
76fd01894SGreg Roach * it under the terms of the GNU General Public License as published by
86fd01894SGreg Roach * the Free Software Foundation, either version 3 of the License, or
96fd01894SGreg Roach * (at your option) any later version.
106fd01894SGreg Roach * This program is distributed in the hope that it will be useful,
116fd01894SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
126fd01894SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
136fd01894SGreg Roach * GNU General Public License for more details.
146fd01894SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
166fd01894SGreg Roach */
176fd01894SGreg Roach
186fd01894SGreg Roachdeclare(strict_types=1);
196fd01894SGreg Roach
206fd01894SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
216fd01894SGreg Roach
226fd01894SGreg Roachuse Fisharebest\Webtrees\Auth;
233faaf002SGreg Roachuse Fisharebest\Webtrees\Contracts\ElementInterface;
246fd01894SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
256fd01894SGreg Roachuse Fisharebest\Webtrees\Date;
263faaf002SGreg Roachuse Fisharebest\Webtrees\Elements\UnknownElement;
276fd01894SGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait;
286fd01894SGreg Roachuse Fisharebest\Webtrees\I18N;
296fd01894SGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface;
306b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry;
316fd01894SGreg Roachuse Fisharebest\Webtrees\Services\ModuleService;
326fd01894SGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
336fd01894SGreg Roachuse Fisharebest\Webtrees\Services\UserService;
34b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator;
3537646143SGreg Roachuse Illuminate\Support\Collection;
366fd01894SGreg Roachuse Psr\Http\Message\ResponseInterface;
376fd01894SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
386fd01894SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
396fd01894SGreg Roach
406fd01894SGreg Roachuse function e;
416fd01894SGreg Roachuse function explode;
423faaf002SGreg Roachuse function in_array;
436fd01894SGreg Roach
446fd01894SGreg Roach/**
456fd01894SGreg Roach * Edit the tree preferences.
466fd01894SGreg Roach */
476fd01894SGreg Roachclass TreePreferencesPage implements RequestHandlerInterface
486fd01894SGreg Roach{
496fd01894SGreg Roach    use ViewResponseTrait;
506fd01894SGreg Roach
51c4943cffSGreg Roach    private ModuleService $module_service;
526fd01894SGreg Roach
53c4943cffSGreg Roach    private TreeService $tree_service;
546fd01894SGreg Roach
55c4943cffSGreg Roach    private UserService $user_service;
566fd01894SGreg Roach
5792a78a2fSGreg Roach    /**
5892a78a2fSGreg Roach     * @param ModuleService $module_service
5992a78a2fSGreg Roach     * @param TreeService   $tree_service
6092a78a2fSGreg Roach     * @param UserService   $user_service
6192a78a2fSGreg Roach     */
626fd01894SGreg Roach    public function __construct(
636fd01894SGreg Roach        ModuleService $module_service,
646fd01894SGreg Roach        TreeService $tree_service,
656fd01894SGreg Roach        UserService $user_service
666fd01894SGreg Roach    ) {
676fd01894SGreg Roach        $this->module_service = $module_service;
686fd01894SGreg Roach        $this->tree_service   = $tree_service;
696fd01894SGreg Roach        $this->user_service   = $user_service;
706fd01894SGreg Roach    }
716fd01894SGreg Roach
726fd01894SGreg Roach    /**
736fd01894SGreg Roach     * @param ServerRequestInterface $request
746fd01894SGreg Roach     *
756fd01894SGreg Roach     * @return ResponseInterface
766fd01894SGreg Roach     */
776fd01894SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
786fd01894SGreg Roach    {
796fd01894SGreg Roach        $this->layout = 'layouts/administration';
806fd01894SGreg Roach
81b55cbc6bSGreg Roach        $tree        = Validator::attributes($request)->tree();
826b9cb339SGreg Roach        $data_folder = Registry::filesystem()->dataName();
836fd01894SGreg Roach
846fd01894SGreg Roach        $french_calendar_start    = new Date('22 SEP 1792');
856fd01894SGreg Roach        $french_calendar_end      = new Date('31 DEC 1805');
866fd01894SGreg Roach        $gregorian_calendar_start = new Date('15 OCT 1582');
876fd01894SGreg Roach
886fd01894SGreg Roach        $surname_list_styles = [
896fd01894SGreg Roach            /* I18N: Layout option for lists of names */
906fd01894SGreg Roach            'style1' => I18N::translate('list'),
916fd01894SGreg Roach            /* I18N: Layout option for lists of names */
926fd01894SGreg Roach            'style2' => I18N::translate('table'),
936fd01894SGreg Roach            /* I18N: Layout option for lists of names */
946fd01894SGreg Roach            'style3' => I18N::translate('tag cloud'),
956fd01894SGreg Roach        ];
966fd01894SGreg Roach
976fd01894SGreg Roach        $page_layouts = [
986fd01894SGreg Roach            /* I18N: page orientation */
996fd01894SGreg Roach            0 => I18N::translate('Portrait'),
1006fd01894SGreg Roach            /* I18N: page orientation */
1016fd01894SGreg Roach            1 => I18N::translate('Landscape'),
1026fd01894SGreg Roach        ];
1036fd01894SGreg Roach
1046fd01894SGreg Roach        $formats = [
105fc5ef972SGreg Roach            /* I18N: https://en.wikipedia.org/wiki/Plain_text */
10667721f6fSGreg Roach            ''         => I18N::translate('plain text'),
1076fd01894SGreg Roach            /* I18N: https://en.wikipedia.org/wiki/Markdown */
1086fd01894SGreg Roach            'markdown' => I18N::translate('markdown'),
1096fd01894SGreg Roach        ];
1106fd01894SGreg Roach
1116fd01894SGreg Roach        $source_types = [
1126fd01894SGreg Roach            0 => I18N::translate('none'),
1136fd01894SGreg Roach            1 => I18N::translate('facts'),
1146fd01894SGreg Roach            2 => I18N::translate('records'),
1156fd01894SGreg Roach        ];
1166fd01894SGreg Roach
1176fd01894SGreg Roach        $theme_options = $this->module_service
1186fd01894SGreg Roach            ->findByInterface(ModuleThemeInterface::class)
1196fd01894SGreg Roach            ->map($this->module_service->titleMapper())
1206fd01894SGreg Roach            ->prepend(I18N::translate('<default theme>'), '');
1216fd01894SGreg Roach
1226fd01894SGreg Roach        $privacy_options = [
1236fd01894SGreg Roach            Auth::PRIV_USER => I18N::translate('Show to members'),
1246fd01894SGreg Roach            Auth::PRIV_NONE => I18N::translate('Show to managers'),
1256fd01894SGreg Roach            Auth::PRIV_HIDE => I18N::translate('Hide from everyone'),
1266fd01894SGreg Roach        ];
1276fd01894SGreg Roach
1286fd01894SGreg Roach        // For historical reasons, we have two fields in one
1296fd01894SGreg Roach        $calendar_formats = explode('_and_', $tree->getPreference('CALENDAR_FORMAT') . '_and_');
1306fd01894SGreg Roach
1316fd01894SGreg Roach        // Split into separate fields
1326fd01894SGreg Roach        $relatives_events = explode(',', $tree->getPreference('SHOW_RELATIVES_EVENTS'));
1336fd01894SGreg Roach
1346b9cb339SGreg Roach        $pedigree_individual = Registry::individualFactory()->make($tree->getPreference('PEDIGREE_ROOT_ID'), $tree);
1356fd01894SGreg Roach
136*f25fc0f9SGreg Roach        $members = $this->user_service->all()->filter(static fn(UserInterface $user): bool => Auth::isMember($tree, $user));
1376fd01894SGreg Roach
138a9c995c4SGreg Roach        $ignore_facts = ['CHAN', 'CHIL', 'FAMC', 'FAMS', 'HUSB', 'SUBM', 'WIFE', 'NAME', 'SEX'];
1393faaf002SGreg Roach
1403faaf002SGreg Roach        $all_family_facts = Collection::make(Registry::elementFactory()->make('FAM')->subtags())
1413faaf002SGreg Roach            ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
1423faaf002SGreg Roach            ->mapWithKeys(static fn (string $value, string $key): array => [$key => 'FAM:' . $key])
1433faaf002SGreg Roach            ->map(static fn (string $tag): ElementInterface => Registry::elementFactory()->make($tag))
1443faaf002SGreg Roach            ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
1453faaf002SGreg Roach            ->map(static fn (ElementInterface $element): string => $element->label())
14637646143SGreg Roach            ->sort(I18N::comparator());
14737646143SGreg Roach
1483faaf002SGreg Roach        $all_individual_facts = Collection::make(Registry::elementFactory()->make('INDI')->subtags())
1493faaf002SGreg Roach            ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
1503faaf002SGreg Roach            ->mapWithKeys(static fn (string $value, string $key): array => [$key => 'INDI:' . $key])
1513faaf002SGreg Roach            ->map(static fn (string $tag): ElementInterface => Registry::elementFactory()->make($tag))
1523faaf002SGreg Roach            ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
1533faaf002SGreg Roach            ->map(static fn (ElementInterface $element): string => $element->label())
15437646143SGreg Roach            ->sort(I18N::comparator());
1556fd01894SGreg Roach
1567e128bbfSGreg Roach        $all_surname_traditions = Registry::surnameTraditionFactory()->list();
1576fd01894SGreg Roach
1586fd01894SGreg Roach        $tree_count = $this->tree_service->all()->count();
1596fd01894SGreg Roach
1606fd01894SGreg Roach        $title = I18N::translate('Preferences') . ' — ' . e($tree->title());
1616fd01894SGreg Roach
162b55cbc6bSGreg Roach        $base_url = Validator::attributes($request)->string('base_url');
1636fd01894SGreg Roach
1646fd01894SGreg Roach        return $this->viewResponse('admin/trees-preferences', [
1653faaf002SGreg Roach            'all_family_facts'         => $all_family_facts,
1663faaf002SGreg Roach            'all_individual_facts'     => $all_individual_facts,
1676fd01894SGreg Roach            'all_surname_traditions'   => $all_surname_traditions,
1686fd01894SGreg Roach            'base_url'                 => $base_url,
1696fd01894SGreg Roach            'calendar_formats'         => $calendar_formats,
1706fd01894SGreg Roach            'data_folder'              => $data_folder,
1716fd01894SGreg Roach            'formats'                  => $formats,
1726fd01894SGreg Roach            'french_calendar_end'      => $french_calendar_end,
1736fd01894SGreg Roach            'french_calendar_start'    => $french_calendar_start,
1746fd01894SGreg Roach            'gregorian_calendar_start' => $gregorian_calendar_start,
1756fd01894SGreg Roach            'members'                  => $members,
1766fd01894SGreg Roach            'page_layouts'             => $page_layouts,
1776fd01894SGreg Roach            'pedigree_individual'      => $pedigree_individual,
1786fd01894SGreg Roach            'privacy_options'          => $privacy_options,
1796fd01894SGreg Roach            'relatives_events'         => $relatives_events,
1806fd01894SGreg Roach            'source_types'             => $source_types,
1816fd01894SGreg Roach            'surname_list_styles'      => $surname_list_styles,
1826fd01894SGreg Roach            'theme_options'            => $theme_options,
1836fd01894SGreg Roach            'title'                    => $title,
1846fd01894SGreg Roach            'tree'                     => $tree,
1856fd01894SGreg Roach            'tree_count'               => $tree_count,
1866fd01894SGreg Roach        ]);
1876fd01894SGreg Roach    }
1886fd01894SGreg Roach}
189