1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* webtrees: online genealogy |
5
|
|
|
* Copyright (C) 2019 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 <http://www.gnu.org/licenses/>. |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
declare(strict_types=1); |
19
|
|
|
|
20
|
|
|
namespace Fisharebest\Webtrees\Http\RequestHandlers; |
21
|
|
|
|
22
|
|
|
use DateTimeZone; |
23
|
|
|
use Fisharebest\Webtrees\Auth; |
24
|
|
|
use Fisharebest\Webtrees\Functions\FunctionsEdit; |
25
|
|
|
use Fisharebest\Webtrees\Http\ViewResponseTrait; |
26
|
|
|
use Fisharebest\Webtrees\I18N; |
27
|
|
|
use Fisharebest\Webtrees\Individual; |
28
|
|
|
use Fisharebest\Webtrees\Module\ModuleLanguageInterface; |
29
|
|
|
use Fisharebest\Webtrees\Services\ModuleService; |
30
|
|
|
use Fisharebest\Webtrees\Tree; |
31
|
|
|
use Fisharebest\Webtrees\User; |
32
|
|
|
use Psr\Http\Message\ResponseInterface; |
33
|
|
|
use Psr\Http\Message\ServerRequestInterface; |
34
|
|
|
use Psr\Http\Server\RequestHandlerInterface; |
35
|
|
|
|
36
|
|
|
use function array_combine; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Edit user account details. |
40
|
|
|
*/ |
41
|
|
|
class AccountEdit implements RequestHandlerInterface |
42
|
|
|
{ |
43
|
|
|
use ViewResponseTrait; |
44
|
|
|
|
45
|
|
|
/** @var ModuleService */ |
46
|
|
|
private $module_service; |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* AccountEdit constructor. |
50
|
|
|
* |
51
|
|
|
* @param ModuleService $module_service |
52
|
|
|
*/ |
53
|
|
|
public function __construct(ModuleService $module_service) |
54
|
|
|
{ |
55
|
|
|
$this->module_service = $module_service; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* @param ServerRequestInterface $request |
60
|
|
|
* |
61
|
|
|
* @return ResponseInterface |
62
|
|
|
*/ |
63
|
|
|
public function handle(ServerRequestInterface $request): ResponseInterface |
64
|
|
|
{ |
65
|
|
|
$tree = $request->getAttribute('tree'); |
66
|
|
|
|
67
|
|
|
$user = $request->getAttribute('user'); |
68
|
|
|
assert($user instanceof User); |
69
|
|
|
|
70
|
|
|
if ($tree instanceof Tree) { |
71
|
|
|
$my_individual_record = Individual::getInstance($tree->getUserPreference(Auth::user(), User::PREF_TREE_ACCOUNT_XREF), $tree); |
72
|
|
|
$default_individual = Individual::getInstance($tree->getUserPreference(Auth::user(), User::PREF_TREE_DEFAULT_XREF), $tree); |
73
|
|
|
} else { |
74
|
|
|
$my_individual_record = null; |
75
|
|
|
$default_individual = null; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
$languages = $this->module_service->findByInterface(ModuleLanguageInterface::class, true, true) |
79
|
|
|
->mapWithKeys(static function (ModuleLanguageInterface $module): array { |
80
|
|
|
$locale = $module->locale(); |
81
|
|
|
|
82
|
|
|
return [$locale->languageTag() => $locale->endonym()]; |
83
|
|
|
}); |
84
|
|
|
|
85
|
|
|
$show_delete_option = $user->getPreference(User::PREF_IS_ADMINISTRATOR) !== '1'; |
86
|
|
|
$timezone_ids = DateTimeZone::listIdentifiers(); |
87
|
|
|
$timezones = array_combine($timezone_ids, $timezone_ids); |
88
|
|
|
$title = I18N::translate('My account'); |
89
|
|
|
|
90
|
|
|
return $this->viewResponse('edit-account-page', [ |
91
|
|
|
'contact_methods' => FunctionsEdit::optionsContactMethods(), |
92
|
|
|
'default_individual' => $default_individual, |
93
|
|
|
'languages' => $languages->all(), |
94
|
|
|
'my_individual_record' => $my_individual_record, |
95
|
|
|
'show_delete_option' => $show_delete_option, |
96
|
|
|
'timezones' => $timezones, |
97
|
|
|
'title' => $title, |
98
|
|
|
'tree' => $tree, |
99
|
|
|
'user' => $user, |
100
|
|
|
]); |
101
|
|
|
} |
102
|
|
|
} |
103
|
|
|
|