-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsettingscontroller.php
268 lines (251 loc) · 9.28 KB
/
settingscontroller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<?php
/**
* ownCloud - impersonate
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Jörn Friedrich Dreyer <jfd@owncloud.com>
* @copyright Jörn Friedrich Dreyer 2015
*/
namespace OCA\Impersonate\Controller;
use OC\Authentication\Token\DefaultTokenProvider;
use OC\SubAdmin;
use OCA\Impersonate\Util;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\JSONResponse;
use OCP\IAppConfig;
use OCP\IGroupManager;
use OCP\IL10N;
use OCP\ILogger;
use OCP\IRequest;
use OCP\AppFramework\Controller;
use OCP\ISession;
use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
class SettingsController extends Controller {
/** @var IUserManager */
private $userManager;
/** @var IUserSession */
private $userSession;
/** @var ILogger */
private $logger;
/** @var IGroupManager */
private $groupManager;
/** @var SubAdmin */
private $subAdmin;
/** @var ISession */
private $session;
/** @var IAppConfig */
private $config;
/** @var IL10N */
private $l;
/** @var DefaultTokenProvider */
private $tokenProvider;
/** @var \OC\User\Session */
private $ocUserSession;
/** @var \OCA\Impersonate\Util */
private $util;
/** @var EventDispatcher|EventDispatcherInterface */
private $eventDispatcher;
/**
* SettingsController constructor.
*
* @param string $appName
* @param IRequest $request
* @param IUserManager $userManager
* @param IUserSession $userSession
* @param ILogger $logger
* @param IGroupManager $groupManager
* @param SubAdmin $subAdmin
* @param ISession $session
* @param IAppConfig $config
* @param IL10N $l10n
* @param DefaultTokenProvider $tokenProvider
*/
public function __construct(
$appName,
IRequest $request,
IUserManager $userManager,
IUserSession $userSession,
ILogger $logger,
IGroupManager $groupManager,
SubAdmin $subAdmin,
ISession $session,
IAppConfig $config,
IL10N $l10n,
DefaultTokenProvider $tokenProvider
) {
parent::__construct($appName, $request);
$this->userManager = $userManager;
$this->userSession = $userSession;
$this->logger = $logger;
$this->groupManager = $groupManager;
$this->subAdmin = $subAdmin;
$this->session = $session;
$this->config = $config;
$this->l = $l10n;
$this->tokenProvider = $tokenProvider;
$this->ocUserSession = \OC::$server->getUserSession();
$this->util = new Util($this->session, $this->ocUserSession, $this->request, $this->tokenProvider);
$this->eventDispatcher = \OC::$server->getEventDispatcher();
}
/**
* Get the data for Impersonate app
* @NoAdminRequired
*
* @return JSONResponse
*/
public function getDataForImpersonateApp() {
$isEnabled = $this->config->getValue('impersonate', 'impersonate_include_groups', false);
$includedGroups = $this->config->getValue('impersonate', 'impersonate_include_groups_list', '[]');
$allowFullAccessSubAdmins = $this->config->getValue('impersonate', 'impersonate_all_groupadmins', false);
$currentUser = $this->userSession->getUser();
if ($currentUser === null) {
return new JSONResponse([$includedGroups, $isEnabled,
$allowFullAccessSubAdmins, false, false]);
}
return new JSONResponse([$includedGroups, $isEnabled,
$allowFullAccessSubAdmins,
$this->groupManager->isAdmin($currentUser->getUID()),
$this->subAdmin->isSubAdmin($currentUser)]);
}
/**
* Impersonate the user
* This method is called after the users capability to impersonate is decided
* in the method impersonate($target).
*
* @param string $impersonator the current user
* @param string $target the target user
* @param IUser $user target user object
* @return JSONResponse
*/
private function impersonateUser($impersonator, $target, $user) {
$this->logger->info("User $impersonator impersonated user $target", ['app' => 'impersonate']);
$this->util->switchUser($user, $impersonator);
$startEvent = new GenericEvent(null, ['impersonator' => $impersonator, 'targetUser' => $target]);
$this->eventDispatcher->dispatch($startEvent, 'user.afterimpersonate');
return new JSONResponse();
}
/**
* become another user
* @param string $target
* @UseSession
* @NoAdminRequired
* @return JSONResponse
*/
public function impersonate($target) {
// check if app is enabled at all
$appEnabled = $this->config->getValue('impersonate', 'enabled', "no");
if ($appEnabled === "no") {
return new JSONResponse([
'error' => 'cannotImpersonate',
'message' => $this->l->t('Can not impersonate. Please contact your server administrator to allow impersonation.'),
], http::STATUS_NOT_FOUND);
}
$currentUser = $this->userSession->getUser();
//If there is no current user don't impersonate
if ($currentUser === null) {
return new JSONResponse([
'error' => 'cannotImpersonate',
'message' => $this->l->t('Can not impersonate'),
], http::STATUS_NOT_FOUND);
}
$impersonator = $currentUser->getUID();
if ($this->session->get('impersonator') === null) {
$this->session->set('impersonator', $impersonator);
} else {
return new JSONResponse([
'error' => 'stopNestedImpersonation',
'message' => $this->l->t('Can not impersonate'),
], http::STATUS_NOT_FOUND);
}
$user = $this->userManager->get($target);
if ($user === null) {
$this->logger->info("User $target doesn't exist. User $impersonator cannot impersonate $target");
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'userNotFound',
'message' => $this->l->t('Unexpected error occurred'),
], Http::STATUS_NOT_FOUND);
} elseif ($user->getLastLogin() === 0) {
// It's a first time login
$this->logger->info("User $target has not logged in yet. User $impersonator cannot impersonate $target");
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'userNeverLoggedIn',
'message' => $this->l->t('Can not impersonate'),
], http::STATUS_NOT_FOUND);
} elseif ($this->groupManager->isAdmin($target) && !$this->groupManager->isAdmin($impersonator)) {
// If not an admin then no impersonation
$this->logger->warning('Can not allow user "' . $impersonator . '" trying to impersonate "'. $target . '"');
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'cannotImpersonateAdminUser',
'message' => $this->l->t('Can not impersonate'),
], http::STATUS_NOT_FOUND);
} else {
// check if feature "enable app for certain groups" is used, and if yes, do validation
if ($appEnabled !== "yes") {
// when config->getValue('impersonate', 'enabled') is not 'yes' or 'no'
// it should be an array with group ids
$appEnabledGroupIds = \json_decode($appEnabled);
if (!\is_array($appEnabledGroupIds)) {
// invalid app config
$this->logger->error("Impersonate app has invalid config");
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'cannotImpersonate',
'message' => $this->l->t('Unexpected error occurred.')
], http::STATUS_NOT_FOUND);
}
$targetIsInAtLeastOneOfTheAppEnabledGroupIds = false;
foreach ($appEnabledGroupIds as $appEnabledGroupId) {
// validate here whether target user is allowed to use the app, otherwise app javascript and other related
// code will not be reachable for that user when impersonation happens
// NOTE: we do not need to check impersonator as this code path is already not reachable for that user
if ($this->groupManager->isInGroup($target, $appEnabledGroupId)) {
$targetIsInAtLeastOneOfTheAppEnabledGroupIds = true;
}
}
if (!$targetIsInAtLeastOneOfTheAppEnabledGroupIds) {
$this->logger->warning(
"User $impersonator attempt to impersonate $target where target user is not in group for which app is enabled"
);
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'cannotImpersonate',
'message' => $this->l->t('Can not impersonate. Please contact your server administrator to allow impersonation.')
], http::STATUS_NOT_FOUND);
}
return $this->impersonateUser($impersonator, $target, $user);
}
// admin is unconditionally allowed to impersonate
if ($this->groupManager->isAdmin($currentUser->getUID())) {
return $this->impersonateUser($impersonator, $target, $user);
}
$includedGroups = $this->config->getValue('impersonate', 'impersonate_include_groups_list', '');
$allowSubAdminsImpersonate = $this->config->getValue('impersonate', 'impersonate_all_groupadmins', "false");
if ($allowSubAdminsImpersonate === "true") {
return $this->impersonateUser($impersonator, $target, $user);
} elseif ($includedGroups !== '') {
$includedGroups = \json_decode($includedGroups);
foreach ($includedGroups as $group) {
if ($this->groupManager->isInGroup($user->getUID(), $group)
&& $this->subAdmin->isSubAdminofGroup($this->userSession->getUser(), $this->groupManager->get($group))) {
return $this->impersonateUser($impersonator, $target, $user);
}
}
}
$this->session->remove('impersonator');
return new JSONResponse([
'error' => 'cannotImpersonate',
'message' => $this->l->t('Can not impersonate'),
], http::STATUS_NOT_FOUND);
}
}
}