-
Notifications
You must be signed in to change notification settings - Fork 785
/
Copy pathPassport.php
606 lines (523 loc) · 15.8 KB
/
Passport.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
<?php
namespace Laravel\Passport;
use Closure;
use DateInterval;
use DateTimeInterface;
use Illuminate\Contracts\Encryption\Encrypter;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Date;
use Laravel\Passport\Contracts\AuthorizationViewResponse;
use Laravel\Passport\Http\Responses\SimpleViewResponse;
use League\OAuth2\Server\ResourceServer;
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
use Mockery;
use Psr\Http\Message\ServerRequestInterface;
class Passport
{
/**
* Indicates if Passport should validate the permissions of its encryption keys.
*/
public static bool $validateKeyPermissions = false;
/**
* Indicates if the implicit grant type is enabled.
*/
public static bool $implicitGrantEnabled = false;
/**
* Indicates if the password grant type is enabled.
*/
public static bool $passwordGrantEnabled = false;
/**
* The default scope.
*/
public static string $defaultScope = '';
/**
* All of the scopes defined for the application.
*
* @var array<string, string>
*/
public static array $scopes = [
//
];
/**
* The interval when access tokens expire.
*/
public static ?DateInterval $tokensExpireIn = null;
/**
* The date when refresh tokens expire.
*/
public static ?DateInterval $refreshTokensExpireIn = null;
/**
* The date when personal access tokens expire.
*/
public static ?DateInterval $personalAccessTokensExpireIn = null;
/**
* The name for API token cookies.
*/
public static string $cookie = 'laravel_token';
/**
* Indicates if Passport should ignore incoming CSRF tokens.
*/
public static bool $ignoreCsrfToken = false;
/**
* The storage location of the encryption keys.
*/
public static string $keyPath;
/**
* The access token entity class name.
*
* @var class-string<\Laravel\Passport\Bridge\AccessToken>
*/
public static string $accessTokenEntity = Bridge\AccessToken::class;
/**
* The auth code model class name.
*
* @var class-string<\Laravel\Passport\AuthCode>
*/
public static string $authCodeModel = AuthCode::class;
/**
* The client model class name.
*
* @var class-string<\Laravel\Passport\Client>
*/
public static string $clientModel = Client::class;
/**
* Indicates if clients are identified by UUIDs.
*/
public static bool $clientUuids = true;
/**
* The token model class name.
*
* @var class-string<\Laravel\Passport\Token>
*/
public static string $tokenModel = Token::class;
/**
* The refresh token model class name.
*
* @var class-string<\Laravel\Passport\RefreshToken>
*/
public static string $refreshTokenModel = RefreshToken::class;
/**
* Indicates if Passport should unserializes cookies.
*/
public static bool $unserializesCookies = false;
/**
* Indicates if Passport should decrypt cookies.
*/
public static bool $decryptsCookies = true;
/**
* The callback that should be used to generate JWT encryption keys.
*
* @var (\Closure(\Illuminate\Contracts\Encryption\Encrypter): string)|null
*/
public static ?Closure $tokenEncryptionKeyCallback = null;
/**
* Indicates the scope should inherit its parent scope.
*/
public static bool $withInheritedScopes = false;
/**
* The authorization server response type.
*/
public static ?ResponseTypeInterface $authorizationServerResponseType = null;
/**
* Indicates if Passport routes will be registered.
*/
public static bool $registersRoutes = true;
/**
* Indicates if Passport JSON API routes will be registered.
*
* @var bool
*/
public static $registersJsonApiRoutes = false;
/**
* Enable the implicit grant type.
*/
public static function enableImplicitGrant(): void
{
static::$implicitGrantEnabled = true;
}
/**
* Enable the password grant type.
*/
public static function enablePasswordGrant(): void
{
static::$passwordGrantEnabled = true;
}
/**
* Set the default scope(s). Multiple scopes may be an array or specified delimited by spaces.
*
* @deprecated Use defaultScopes.
*
* @param string[]|string $scope
*/
public static function setDefaultScope(array|string $scope): void
{
static::$defaultScope = is_array($scope) ? implode(' ', $scope) : $scope;
}
/**
* Set or get the default scopes.
*
* @param string[]|string|null $scopes
* @return string[]
*/
public static function defaultScopes(array|string|null $scopes = null): array
{
if (! is_null($scopes)) {
static::$defaultScope = is_array($scopes) ? implode(' ', $scopes) : $scopes;
}
return static::$defaultScope ? explode(' ', static::$defaultScope) : [];
}
/**
* Return the scopes in the given list that are actually defined scopes for the application.
*
* @param string[] $scopes
* @return string[]
*/
public static function validScopes(array $scopes): array
{
return array_values(array_unique(array_intersect($scopes, array_keys(static::$scopes))));
}
/**
* Get all of the defined scope IDs.
*
* @return string[]
*/
public static function scopeIds(): array
{
return static::scopes()->pluck('id')->values()->all();
}
/**
* Determine if the given scope has been defined.
*/
public static function hasScope(string $id): bool
{
return $id === '*' || array_key_exists($id, static::$scopes);
}
/**
* Get all of the scopes defined for the application.
*
* @return \Illuminate\Support\Collection<int, \Laravel\Passport\Scope>
*/
public static function scopes(): Collection
{
return collect(static::$scopes)->map(
fn (string $description, string $id): Scope => new Scope($id, $description)
)->values();
}
/**
* Get all of the scopes matching the given IDs.
*
* @param string[] $ids
* @return \Laravel\Passport\Scope[]
*/
public static function scopesFor(array $ids): array
{
return collect($ids)->map(
fn (string $id): ?Scope => isset(static::$scopes[$id]) ? new Scope($id, static::$scopes[$id]) : null
)->filter()->values()->all();
}
/**
* Define the scopes for the application.
*
* @param array<string, string> $scopes
*/
public static function tokensCan(array $scopes): void
{
static::$scopes = $scopes;
}
/**
* Get or set when access tokens expire.
*/
public static function tokensExpireIn(DateTimeInterface|DateInterval|null $date = null): DateInterval
{
if (is_null($date)) {
return static::$tokensExpireIn ??= new DateInterval('P1Y');
}
return static::$tokensExpireIn = $date instanceof DateTimeInterface
? Date::now()->diff($date)
: $date;
}
/**
* Get or set when refresh tokens expire.
*/
public static function refreshTokensExpireIn(DateTimeInterface|DateInterval|null $date = null): DateInterval
{
if (is_null($date)) {
return static::$refreshTokensExpireIn ??= new DateInterval('P1Y');
}
return static::$refreshTokensExpireIn = $date instanceof DateTimeInterface
? Date::now()->diff($date)
: $date;
}
/**
* Get or set when personal access tokens expire.
*/
public static function personalAccessTokensExpireIn(DateTimeInterface|DateInterval|null $date = null): DateInterval
{
if (is_null($date)) {
return static::$personalAccessTokensExpireIn ??= new DateInterval('P1Y');
}
return static::$personalAccessTokensExpireIn = $date instanceof DateTimeInterface
? Date::now()->diff($date)
: $date;
}
/**
* Get or set the name for API token cookies.
*/
public static function cookie(?string $cookie = null): string
{
if (is_null($cookie)) {
return static::$cookie;
}
return static::$cookie = $cookie;
}
/**
* Indicate that Passport should ignore incoming CSRF tokens.
*/
public static function ignoreCsrfToken(bool $ignoreCsrfToken = true): void
{
static::$ignoreCsrfToken = $ignoreCsrfToken;
}
/**
* Set the current user for the application with the given scopes.
*
* @template TUserModel of \Laravel\Passport\HasApiTokens
*
* @param TUserModel $user
* @param string[] $scopes
* @return TUserModel
*/
public static function actingAs($user, array $scopes = [], ?string $guard = 'api')
{
$token = new AccessToken([
'oauth_user_id' => $user->getAuthIdentifier(),
'oauth_scopes' => $scopes,
]);
$user->withAccessToken($token);
if (isset($user->wasRecentlyCreated) && $user->wasRecentlyCreated) {
$user->wasRecentlyCreated = false;
}
app('auth')->guard($guard)->setUser($user);
app('auth')->shouldUse($guard);
return $user;
}
/**
* Set the current client for the application with the given scopes.
*
* @param string[] $scopes
*/
public static function actingAsClient(Client $client, array $scopes = [], ?string $guard = 'api'): Client
{
$mock = Mockery::mock(ResourceServer::class);
$mock->shouldReceive('validateAuthenticatedRequest')->andReturnUsing(
fn (ServerRequestInterface $request) => $request
->withAttribute('oauth_client_id', $client->getKey())
->withAttribute('oauth_scopes', $scopes)
);
app()->instance(ResourceServer::class, $mock);
app('auth')->guard($guard)->setClient($client);
app('auth')->shouldUse($guard);
return $client;
}
/**
* Set the storage location of the encryption keys.
*/
public static function loadKeysFrom(string $path): void
{
static::$keyPath = $path;
}
/**
* The location of the encryption keys.
*/
public static function keyPath(string $file): string
{
$file = ltrim($file, '/\\');
return static::$keyPath
? rtrim(static::$keyPath, '/\\').DIRECTORY_SEPARATOR.$file
: storage_path($file);
}
/**
* Set the access token entity class name.
*
* @param class-string<\Laravel\Passport\Bridge\AccessToken> $accessTokenEntity
*/
public static function useAccessTokenEntity(string $accessTokenEntity): void
{
static::$accessTokenEntity = $accessTokenEntity;
}
/**
* Set the auth code model class name.
*
* @param class-string<\Laravel\Passport\AuthCode> $authCodeModel
*/
public static function useAuthCodeModel(string $authCodeModel): void
{
static::$authCodeModel = $authCodeModel;
}
/**
* Get the auth code model class name.
*
* @return class-string<\Laravel\Passport\AuthCode>
*/
public static function authCodeModel(): string
{
return static::$authCodeModel;
}
/**
* Get a new auth code model instance.
*/
public static function authCode(): AuthCode
{
return new static::$authCodeModel;
}
/**
* Set the client model class name.
*
* @param class-string<\Laravel\Passport\Client> $clientModel
*/
public static function useClientModel(string $clientModel): void
{
static::$clientModel = $clientModel;
}
/**
* Get the client model class name.
*
* @return class-string<\Laravel\Passport\Client>
*/
public static function clientModel(): string
{
return static::$clientModel;
}
/**
* Get a new client model instance.
*/
public static function client(): Client
{
return new static::$clientModel;
}
/**
* Set the token model class name.
*
* @param class-string<\Laravel\Passport\Token> $tokenModel
*/
public static function useTokenModel(string $tokenModel): void
{
static::$tokenModel = $tokenModel;
}
/**
* Get the token model class name.
*
* @return class-string<\Laravel\Passport\Token>
*/
public static function tokenModel(): string
{
return static::$tokenModel;
}
/**
* Get a new personal access client model instance.
*/
public static function token(): Token
{
return new static::$tokenModel;
}
/**
* Set the refresh token model class name.
*
* @param class-string<\Laravel\Passport\RefreshToken> $refreshTokenModel
*/
public static function useRefreshTokenModel(string $refreshTokenModel): void
{
static::$refreshTokenModel = $refreshTokenModel;
}
/**
* Get the refresh token model class name.
*
* @return class-string<\Laravel\Passport\RefreshToken>
*/
public static function refreshTokenModel(): string
{
return static::$refreshTokenModel;
}
/**
* Get a new refresh token model instance.
*/
public static function refreshToken(): RefreshToken
{
return new static::$refreshTokenModel;
}
/**
* Specify the callback that should be invoked to generate encryption keys for encrypting JWT tokens.
*
* @param (\Closure(\Illuminate\Contracts\Encryption\Encrypter): string)|null $callback
*/
public static function encryptTokensUsing(?Closure $callback): void
{
static::$tokenEncryptionKeyCallback = $callback;
}
/**
* Generate an encryption key for encrypting JWT tokens.
*/
public static function tokenEncryptionKey(Encrypter $encrypter): string
{
return is_callable(static::$tokenEncryptionKeyCallback)
? (static::$tokenEncryptionKeyCallback)($encrypter)
: $encrypter->getKey();
}
/**
* Register the views for Passport using conventional names under the given namespace.
*/
public static function viewNamespace(string $namespace): void
{
static::viewPrefix($namespace.'::');
}
/**
* Register the views for Passport using conventional names under the given prefix.
*/
public static function viewPrefix(string $prefix): void
{
static::authorizationView($prefix.'authorize');
}
/**
* Specify which view should be used as the authorization view.
*
* @param (\Closure(array<string, mixed>): (\Symfony\Component\HttpFoundation\Response))|string $view
*/
public static function authorizationView(Closure|string $view): void
{
app()->singleton(AuthorizationViewResponse::class, fn () => new SimpleViewResponse($view));
}
/**
* Configure Passport to not register its routes.
*/
public static function ignoreRoutes(): void
{
static::$registersRoutes = false;
}
/**
* Instruct Passport to enable cookie serialization.
*/
public static function withCookieSerialization(): void
{
static::$unserializesCookies = true;
}
/**
* Instruct Passport to disable cookie serialization.
*/
public static function withoutCookieSerialization(): void
{
static::$unserializesCookies = false;
}
/**
* Instruct Passport to enable cookie encryption.
*/
public static function withCookieEncryption(): void
{
static::$decryptsCookies = true;
}
/**
* Instruct Passport to disable cookie encryption.
*/
public static function withoutCookieEncryption(): void
{
static::$decryptsCookies = false;
}
}