1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @author Tom Needham <[email protected]> |
4
|
|
|
* @author Morris Jobke <[email protected]> |
5
|
|
|
* @author Robin Appelman <[email protected]> |
6
|
|
|
* @author Thomas Müller <[email protected]> |
7
|
|
|
* |
8
|
|
|
* @copyright Copyright (c) 2018, ownCloud GmbH |
9
|
|
|
* @license AGPL-3.0 |
10
|
|
|
* |
11
|
|
|
* This code is free software: you can redistribute it and/or modify |
12
|
|
|
* it under the terms of the GNU Affero General Public License, version 3, |
13
|
|
|
* as published by the Free Software Foundation. |
14
|
|
|
* |
15
|
|
|
* This program is distributed in the hope that it will be useful, |
16
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
17
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18
|
|
|
* GNU Affero General Public License for more details. |
19
|
|
|
* |
20
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3, |
21
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/> |
22
|
|
|
* |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
namespace OC\Settings\Panels\Personal; |
26
|
|
|
|
27
|
|
|
use OC\Helper\LocaleHelper; |
28
|
|
|
use OCP\Settings\ISettings; |
29
|
|
|
use OCP\Template; |
30
|
|
|
use OCP\IGroupManager; |
31
|
|
|
use OCP\IUserSession; |
32
|
|
|
use OCP\IConfig; |
33
|
|
|
use OCP\L10N\IFactory; |
34
|
|
|
|
35
|
|
|
class Profile implements ISettings { |
36
|
|
|
|
37
|
|
|
/* @var IConfig */ |
38
|
|
|
protected $config; |
39
|
|
|
/* @var IGroupManager */ |
40
|
|
|
protected $groupManager; |
41
|
|
|
/* @var IUserSession */ |
42
|
|
|
protected $userSession; |
43
|
|
|
/** @var IFactory */ |
44
|
|
|
protected $lfactory; |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* @var LocaleHelper |
48
|
|
|
*/ |
49
|
|
|
private $localeHelper; |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Profile constructor. |
53
|
|
|
* |
54
|
|
|
* @param IConfig $config |
55
|
|
|
* @param IGroupManager $groupManager |
56
|
|
|
* @param IUserSession $userSession |
57
|
|
|
* @param IFactory $lfactory |
58
|
|
|
* @param LocaleHelper $localeHelper |
59
|
|
|
*/ |
60
|
|
|
public function __construct(IConfig $config, |
61
|
|
|
IGroupManager $groupManager, |
62
|
|
|
IUserSession $userSession, |
63
|
|
|
IFactory $lfactory, |
64
|
|
|
LocaleHelper $localeHelper |
65
|
|
|
) { |
66
|
|
|
$this->config = $config; |
67
|
|
|
$this->groupManager = $groupManager; |
68
|
|
|
$this->userSession = $userSession; |
69
|
|
|
$this->lfactory = $lfactory; |
70
|
|
|
$this->localeHelper = $localeHelper; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
public function getPriority() { |
74
|
|
|
return 100; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
public function getPanel() { |
78
|
|
|
$activeLangCode = $this->config->getUserValue( |
79
|
|
|
$this->userSession->getUser()->getUID(), |
80
|
|
|
'core', |
81
|
|
|
'lang', |
82
|
|
|
$this->lfactory->findLanguage() |
83
|
|
|
); |
84
|
|
|
|
85
|
|
|
list($userLang, $commonLanguages, $languages) = $this->localeHelper->getNormalizedLanguages( |
86
|
|
|
$this->lfactory, |
87
|
|
|
$activeLangCode |
88
|
|
|
); |
89
|
|
|
|
90
|
|
|
$selector = new Template('settings', 'language'); |
91
|
|
|
$selector->assign('selectName', 'lang'); |
92
|
|
|
$selector->assign('selectId', 'languageinput'); |
93
|
|
|
$selector->assign('activelanguage', $userLang); |
94
|
|
|
$selector->assign('commonlanguages', $commonLanguages); |
95
|
|
|
$selector->assign('languages', $languages); |
96
|
|
|
|
97
|
|
|
$tmpl = new Template('settings', 'panels/personal/profile'); |
98
|
|
|
$tmpl->assign('email', $this->userSession->getUser()->getEMailAddress()); |
99
|
|
|
$tmpl->assign('displayName', $this->userSession->getUser()->getDisplayName()); |
100
|
|
|
$tmpl->assign('enableAvatars', $this->config->getSystemValue('enable_avatars', true) === true); |
101
|
|
|
$tmpl->assign('avatarChangeSupported', $this->userSession->getUser()->canChangeAvatar()); |
102
|
|
|
$tmpl->assign('displayNameChangeSupported', $this->userSession->getUser()->canChangeDisplayName()); |
103
|
|
|
$tmpl->assign('passwordChangeSupported', $this->userSession->getUser()->canChangePassword()); |
104
|
|
|
$groups = $this->groupManager->getUserGroupIds($this->userSession->getUser()); |
|
|
|
|
105
|
|
|
\sort($groups); |
106
|
|
|
$tmpl->assign('groups', $groups); |
107
|
|
|
$tmpl->assign('languageSelector', $selector->fetchPage()); |
108
|
|
|
return $tmpl; |
|
|
|
|
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
public function getSectionID() { |
112
|
|
|
return 'general'; |
113
|
|
|
} |
114
|
|
|
} |
115
|
|
|
|
Unless you are absolutely sure that the expression can never be null because of other conditions, we strongly recommend to add an additional type check to your code: