-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathImpersonate.php
271 lines (226 loc) · 8.26 KB
/
Impersonate.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
<?php
namespace Octopy\Impersonate;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Contracts\Auth\Factory as Auth;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\App;
use Laravel\Jetstream\Jetstream;
use Octopy\Impersonate\Concerns\HasImpersonation;
use Octopy\Impersonate\Events\BeginImpersonation;
use Octopy\Impersonate\Events\LeaveImpersonation;
use Octopy\Impersonate\Exceptions\ImpersonateException;
use Octopy\Impersonate\Storage\SessionStorage;
class Impersonate
{
/**
* @var Repository
*/
protected Repository $repository;
/**
* @var SessionStorage
*/
protected SessionStorage $session;
/**
* Impersonate constructor.
*/
public function __construct(protected Auth $auth)
{
$this->repository = new Repository();
$this->session = new SessionStorage();
$this->guard(config(
'impersonate.guard'
));
}
/**
* Set auth guard.
*
* @param string $guard
* @return $this
*/
public function guard(string $guard): self
{
$this->auth->guard($guard);
return $this;
}
/**
* @return bool
*/
public function check(): bool
{
return $this->session->isInImpersonatingMode();
}
/**
* @return bool
*/
public function authorized(): bool
{
if (! in_array(HasImpersonation::class, class_uses(config('impersonate.model')))) {
return false;
}
return $this->auth->check() && app('impersonate.authorization')->isImpersonator($this->impersonator());
}
/**
* @return Model|Authenticatable
*/
public function impersonator(): Model|Authenticatable
{
if ($this->check()) {
return $this->repository->find($this->session->getImpersonator());
}
return $this->auth->user();
}
/**
* @return Model|Authenticatable
*/
public function impersonated(): Model|Authenticatable
{
return $this->repository->find($this->session->getImpersonated());
}
/**
* @param mixed $impersonator
* @param mixed $impersonated
* @return $this
* @throws ImpersonateException
*/
public function begin(mixed $impersonator, mixed $impersonated): Impersonate
{
$impersonator = $this->fetchModel($impersonator);
$impersonated = $this->fetchModel($impersonated);
if ($this->validate($impersonator, $impersonated)) {
$this->session
->setImpersonator($impersonator)
->setImpersonated($impersonated);
if ($this->auth instanceof \Illuminate\Auth\SessionGuard) {
$this->auth->login($impersonated);
if (class_exists(Jetstream::class)) {
$this->session->setPasswordHash(
$this->auth->user()->getAuthPassword()
);
}
} else {
//Fallback to Laravel's Auth facade
$found_session_guard = false;
//Use server's default guard
$guard = \Illuminate\Support\Facades\Auth::guard(config('auth.defaults.guard'));
if ($guard instanceof \Illuminate\Auth\SessionGuard) {
$found_session_guard = true;
\Illuminate\Support\Facades\Auth::guard(config('auth.defaults.guard'))->login($impersonated);
}
if (!$found_session_guard) {
//Fallback to the first SessionGuard
$guard_names = array_keys(config('auth.guards'));
foreach ($guard_names as $guard_name) {
if ($found_session_guard) {
continue;
}
$guard = \Illuminate\Support\Facades\Auth::guard($guard_name);
if ($guard instanceof \Illuminate\Auth\SessionGuard) {
\Illuminate\Support\Facades\Auth::guard($guard_name)->login($impersonated);
$found_session_guard = true;
}
}
}
if (class_exists(Jetstream::class)) {
$this->session->setPasswordHash(
\Illuminate\Support\Facades\Auth::user()->getAuthPassword()
);
}
}
event(new BeginImpersonation(
$impersonator,
$impersonated
));
}
return $this;
}
/**
* @return Impersonate
*/
public function leave(): Impersonate
{
if ($this->check()) {
$impersonator = $this->impersonator();
$impersonated = $this->impersonated();
if ($this->session->flush()) {
if ($this->auth instanceof \Illuminate\Auth\SessionGuard) {
$this->auth->login($impersonator);
if (class_exists(Jetstream::class)) {
$this->session->setPasswordHash(
$this->auth->user()->getAuthPassword()
);
}
} else {
//Fallback to Laravel's Auth facade
$found_session_guard = false;
//Use server's default guard
$guard = \Illuminate\Support\Facades\Auth::guard(config('auth.defaults.guard'));
if ($guard instanceof \Illuminate\Auth\SessionGuard) {
$found_session_guard = true;
\Illuminate\Support\Facades\Auth::guard(config('auth.defaults.guard'))->login($impersonator);
}
if (!$found_session_guard) {
//Fallback to the first SessionGuard
$guard_names = array_keys(config('auth.guards'));
foreach ($guard_names as $guard_name) {
if ($found_session_guard) {
continue;
}
$guard = \Illuminate\Support\Facades\Auth::guard($guard_name);
if ($guard instanceof \Illuminate\Auth\SessionGuard) {
\Illuminate\Support\Facades\Auth::guard($guard_name)->login($impersonator);
$found_session_guard = true;
}
}
}
if (class_exists(Jetstream::class)) {
$this->session->setPasswordHash(
\Illuminate\Support\Facades\Auth::user()->getAuthPassword()
);
}
}
event(new LeaveImpersonation(
$impersonator,
$impersonated
));
}
}
return $this;
}
/**
* @param Model $impersonator
* @param Model $impersonated
* @return bool
* @throws ImpersonateException
*/
private function validate(Model $impersonator, Model $impersonated): bool
{
if (! in_array(HasImpersonation::class, class_uses($impersonator))) {
throw new ImpersonateException(get_class($impersonator) . ' does not uses ' . HasImpersonation::class);
}
if ($impersonator->is($impersonated)) {
throw new ImpersonateException('You cannot impersonate yourself.');
}
/**
* @var $authorization Authorization
*/
$authorization = App::make('impersonate.authorization');
if (! $authorization->isImpersonator($impersonator)) {
throw new ImpersonateException('You don\'t have the ability to impersonate.');
}
if (! $authorization->isImpersonated($impersonated)) {
throw new ImpersonateException('You can\'t impersonate this user.');
}
return true;
}
/**
* @param mixed $modelOrId
* @return Model|Authenticatable
*/
private function fetchModel(mixed $modelOrId): Model|Authenticatable
{
if (! $modelOrId instanceof Model) {
return $this->repository->find($modelOrId);
}
return $modelOrId;
}
}