xref: /webtrees/app/Http/RequestHandlers/AccountEdit.php (revision 61275c55e2688551b99836d7f49f54ed2b7e5788)
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 DateTimeZone;
23use Fisharebest\Webtrees\Auth;
24use Fisharebest\Webtrees\Contracts\UserInterface;
25use Fisharebest\Webtrees\Http\ViewResponseTrait;
26use Fisharebest\Webtrees\I18N;
27use Fisharebest\Webtrees\Module\ModuleLanguageInterface;
28use Fisharebest\Webtrees\Registry;
29use Fisharebest\Webtrees\Services\MessageService;
30use Fisharebest\Webtrees\Services\ModuleService;
31use Fisharebest\Webtrees\Tree;
32use Fisharebest\Webtrees\User;
33use Psr\Http\Message\ResponseInterface;
34use Psr\Http\Message\ServerRequestInterface;
35use Psr\Http\Server\RequestHandlerInterface;
36
37use function array_combine;
38
39/**
40 * Edit user account details.
41 */
42class AccountEdit implements RequestHandlerInterface
43{
44    use ViewResponseTrait;
45
46    private MessageService $message_service;
47
48    private ModuleService $module_service;
49
50    /**
51     * AccountEdit constructor.
52     *
53     * @param MessageService $message_service
54     * @param ModuleService  $module_service
55     */
56    public function __construct(MessageService $message_service, ModuleService $module_service)
57    {
58        $this->message_service = $message_service;
59        $this->module_service = $module_service;
60    }
61
62    /**
63     * @param ServerRequestInterface $request
64     *
65     * @return ResponseInterface
66     */
67    public function handle(ServerRequestInterface $request): ResponseInterface
68    {
69        $tree = $request->getAttribute('tree');
70
71        $user = $request->getAttribute('user');
72        assert($user instanceof User);
73
74        if ($tree instanceof Tree) {
75            $my_individual_record = Registry::individualFactory()->make($tree->getUserPreference(Auth::user(), UserInterface::PREF_TREE_ACCOUNT_XREF), $tree);
76            $default_individual   = Registry::individualFactory()->make($tree->getUserPreference(Auth::user(), UserInterface::PREF_TREE_DEFAULT_XREF), $tree);
77        } else {
78            $my_individual_record = null;
79            $default_individual   = null;
80        }
81
82        $languages = $this->module_service->findByInterface(ModuleLanguageInterface::class, true, true)
83            ->mapWithKeys(static function (ModuleLanguageInterface $module): array {
84                $locale = $module->locale();
85
86                return [$locale->languageTag() => $locale->endonym()];
87            });
88
89        $show_delete_option = $user->getPreference(UserInterface::PREF_IS_ADMINISTRATOR) !== '1';
90        $timezone_ids       = DateTimeZone::listIdentifiers();
91        $timezones          = array_combine($timezone_ids, $timezone_ids);
92        $title              = I18N::translate('My account');
93
94        return $this->viewResponse('edit-account-page', [
95            'contact_methods'      => $this->message_service->contactMethods(),
96            'default_individual'   => $default_individual,
97            'languages'            => $languages->all(),
98            'my_individual_record' => $my_individual_record,
99            'show_delete_option'   => $show_delete_option,
100            'timezones'            => $timezones,
101            'title'                => $title,
102            'tree'                 => $tree,
103            'user'                 => $user,
104        ]);
105    }
106}
107