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\Tree; 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 assert; 43use function e; 44use function explode; 45use function in_array; 46 47/** 48 * Edit the tree preferences. 49 */ 50class TreePreferencesPage implements RequestHandlerInterface 51{ 52 use ViewResponseTrait; 53 54 private ModuleService $module_service; 55 56 private TreeService $tree_service; 57 58 private UserService $user_service; 59 60 public function __construct( 61 ModuleService $module_service, 62 TreeService $tree_service, 63 UserService $user_service 64 ) { 65 $this->module_service = $module_service; 66 $this->tree_service = $tree_service; 67 $this->user_service = $user_service; 68 } 69 70 /** 71 * @param ServerRequestInterface $request 72 * 73 * @return ResponseInterface 74 */ 75 public function handle(ServerRequestInterface $request): ResponseInterface 76 { 77 $this->layout = 'layouts/administration'; 78 79 $tree = $request->getAttribute('tree'); 80 assert($tree instanceof Tree); 81 82 $data_folder = Registry::filesystem()->dataName(); 83 84 $french_calendar_start = new Date('22 SEP 1792'); 85 $french_calendar_end = new Date('31 DEC 1805'); 86 $gregorian_calendar_start = new Date('15 OCT 1582'); 87 88 $surname_list_styles = [ 89 /* I18N: Layout option for lists of names */ 90 'style1' => I18N::translate('list'), 91 /* I18N: Layout option for lists of names */ 92 'style2' => I18N::translate('table'), 93 /* I18N: Layout option for lists of names */ 94 'style3' => I18N::translate('tag cloud'), 95 ]; 96 97 $page_layouts = [ 98 /* I18N: page orientation */ 99 0 => I18N::translate('Portrait'), 100 /* I18N: page orientation */ 101 1 => I18N::translate('Landscape'), 102 ]; 103 104 $formats = [ 105 /* I18N: https://en.wikipedia.org/wiki/Plain_text */ 106 '' => I18N::translate('plain text'), 107 /* I18N: https://en.wikipedia.org/wiki/Markdown */ 108 'markdown' => I18N::translate('markdown'), 109 /* I18N: https://en.wikipedia.org/wiki/Markdown */ 110 'markdown-br' => I18N::translate('markdown with line-breaks'), 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 = app(ServerRequestInterface::class)->getAttribute('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