-
Notifications
You must be signed in to change notification settings - Fork 785
/
Copy pathHasApiTokens.php
108 lines (93 loc) · 3.14 KB
/
HasApiTokens.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
<?php
namespace Laravel\Passport;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Relations\HasMany;
use LogicException;
trait HasApiTokens
{
/**
* The current access token for the authentication user.
*/
protected AccessToken|TransientToken|null $accessToken;
/**
* Get all of the user's registered OAuth clients.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany<\Laravel\Passport\Client, $this>
*/
public function clients(): HasMany
{
return $this->hasMany(Passport::clientModel(), 'user_id');
}
/**
* Get all of the access tokens for the user.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany<\Laravel\Passport\Token, $this>
*/
public function tokens(): HasMany
{
return $this->hasMany(Passport::tokenModel(), 'user_id')
->where(function (Builder $query): void {
$query->whereHas('client', function (Builder $query): void {
$query->where(function (Builder $query): void {
$provider = $this->getProvider();
$query->when($provider === config('auth.guards.api.provider'), function (Builder $query): void {
$query->orWhereNull('provider');
})->orWhere('provider', $provider);
});
});
});
}
/**
* Get the current access token being used by the user.
*/
public function token(): AccessToken|TransientToken|null
{
return $this->accessToken;
}
/**
* Get the access token currently associated with the user.
*/
public function currentAccessToken(): AccessToken|TransientToken|null
{
return $this->token();
}
/**
* Determine if the current API token has a given scope.
*/
public function tokenCan(string $scope): bool
{
return $this->accessToken && $this->accessToken->can($scope);
}
/**
* Create a new personal access token for the user.
*/
public function createToken(string $name, array $scopes = []): PersonalAccessTokenResult
{
return app(PersonalAccessTokenFactory::class)->make(
$this->getAuthIdentifier(), $name, $scopes, $this->getProvider()
);
}
/**
* Get the user provider name.
*
* @throws \LogicException
*/
public function getProvider(): string
{
$providers = collect(config('auth.guards'))->where('driver', 'passport')->pluck('provider')->all();
foreach (config('auth.providers') as $provider => $config) {
if (in_array($provider, $providers) && $config['driver'] === 'eloquent' && is_a($this, $config['model'])) {
return $provider;
}
}
throw new LogicException('Unable to determine authentication provider for this model from configuration.');
}
/**
* Set the current access token for the user.
*/
public function withAccessToken(AccessToken|TransientToken|null $accessToken): static
{
$this->accessToken = $accessToken;
return $this;
}
}