-
Notifications
You must be signed in to change notification settings - Fork 0
/
JWTImpersonService.php
284 lines (233 loc) · 6.49 KB
/
JWTImpersonService.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<?php
namespace App\Services;
use App\Models\User;
use AnalyticPlatform\LaravelHelpers\Helpers\ExceptionHandlerHelper;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Foundation\Application;
use Tymon\JWTAuth\JWTGuard;
/**
* JWT Impersonation service
*
* @todo: add TTL support
*/
class JWTImpersonService
{
/** @var string JWT token */
private string $token;
public function __construct(
private Application $app
) {
}
/**
* Login user (impersonator) as another user (subject)
*
* @param User $impersonator
* @param User $subject
* @param string|null $subjectGuardName
*
* @return bool
*/
public function take(Authenticatable $impersonator, User $subject, ?string $subjectGuardName = null): bool
{
try {
$impersonatorGuardName = $this->getAdminGuardName();
//important: logging in and out as user fire events.
//if we want to exclude this behaviour, we need to write silenced login and logout methods
if ($impersonatorGuardName === $subjectGuardName) {
$this->app['auth']->guard($impersonatorGuardName)->logout();
}
$this->token = $this->app['auth']->guard($subjectGuardName)->login($subject);
session([
$this->getImpersonatorIdSessionKey() => $impersonator->getAuthIdentifier(),
$this->getImpersonatorGuardSessionKey() => $impersonatorGuardName,
$this->getSubjectIdSessionKey() => $subject->id,
$this->getSubjectGuardSessionKey() => $subjectGuardName,
$this->getSubjectTokenSessionKey() => $this->token,
]);
} catch (\Exception $exception) {
report($exception);
ExceptionHandlerHelper::logFail($exception);
return false;
}
return $this->token;
}
/**
* Log out from user that's being impersonated
*
* @return bool
*/
public function leave(): bool
{
$impersonator = $this->getImpersonator();
$subjectGuardName = $this->getSubjectGuardName();
$impersonatorGuardName = $this->getImpersonatorGuardName();
//log out impersonator's subject
/** @var JWTGuard $guard */
$this->app['auth']->guard($subjectGuardName)->setToken($this->getToken())->logout();
//if impersonator's using same guard as his subject then log in him back
if ($impersonatorGuardName === $subjectGuardName) {
$this->app['auth']->guard($this->getImpersonatorGuardName())->login($impersonator);
}
$this->clear();
return auth()->check();
}
/**
* Remove all impersonating marks from session
*
* @return void
*/
public function clear(): void
{
session()->forget([
$this->getImpersonatorIdSessionKey(),
$this->getImpersonatorGuardSessionKey(),
$this->getSubjectIdSessionKey(),
$this->getSubjectGuardSessionKey(),
$this->getSubjectTokenSessionKey()
]);
}
/**
* Get user by id
*
* @param int $id
*
* @return \Illuminate\Contracts\Auth\Authenticatable
*/
public function findUserById(int $id): Authenticatable
{
return User::findOrFail($id);
}
/**
* Return true if current user is impersonating someone
*
* @return bool
*/
public function isImpersonating(): bool
{
return session()->has($this->getImpersonatorIdSessionKey());
}
/**
* Get id of impersonator
*
* @return int
*/
public function getImpersonatorId(): int
{
return session($this->getImpersonatorIdSessionKey());
}
/**
* Get guard name of impersonator
*
* @return string
*/
public function getImpersonatorGuardName(): string
{
return session($this->getImpersonatorGuardSessionKey());
}
/**
* Get impersonator model
*
* @return Authenticatable|null
*/
public function getImpersonator(): ?Authenticatable
{
$id = $this->getImpersonatorId();
return is_null($id) ? null : $this->findUserById($id);
}
/**
* Get id of subject that's being impersonated
*
* @return string
*/
public function getSubjectId(): ?string
{
return session($this->getSubjectIdSessionKey());
}
/**
* Get guard name of subject that's being impersonated
*
* @return string
*/
public function getSubjectGuardName(): string
{
return session($this->getSubjectGuardSessionKey());
}
/**
* Get default guard name
*
* @return string
*/
public function getDefaultGuardName(): string
{
return 'admin';
}
/**
* Get guard name for admin
*
* @return string|null
*/
public function getAdminGuardName(): ?string
{
$guardName = config('nova.guard', $this->getDefaultGuardName());
if ($this->app['auth']->guard($guardName)->check()) {
return $guardName;
}
return null;
}
/**
* Get JWT token
* @return string|null
*/
public function getToken(): ?string
{
return $this->token ?? session($this->getSubjectTokenSessionKey());
}
/**
* The session key used to store the original user id.
*
* @return string
*/
private function getImpersonatorIdSessionKey(): string
{
return 'impersonator_id';
}
/**
* The session key used to store the original user guard.
*
* @return string
*/
private function getImpersonatorGuardSessionKey(): string
{
return 'impersonator_guard';
}
/**
* Get session key used to store name of guard of subject
* that's being impersonated
*
* @return string
*/
private function getSubjectGuardSessionKey(): string
{
return 'impersonator_subject_guard';
}
/**
* Get session key used to store token of subject
* that's being impersonated
*
* @return string
*/
private function getSubjectTokenSessionKey(): string
{
return 'impersonator_subject_token';
}
/**
* Get session key used to store id of subject
* that's being impersonated
*
* @return string
*/
private function getSubjectIdSessionKey(): string
{
return 'impersonator_subject_id';
}
}