|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @author Alex Bilbie <[email protected]> |
|
5
|
|
|
* @copyright Copyright (c) Alex Bilbie |
|
6
|
|
|
* @license http://mit-license.org/ |
|
7
|
|
|
* |
|
8
|
|
|
* @link https://github.com/thephpleague/oauth2-server |
|
9
|
|
|
*/ |
|
10
|
|
|
|
|
11
|
|
|
declare(strict_types=1); |
|
12
|
|
|
|
|
13
|
|
|
namespace League\OAuth2\Server\Entities\Traits; |
|
14
|
|
|
|
|
15
|
|
|
use DateTimeImmutable; |
|
16
|
|
|
use League\OAuth2\Server\Entities\ClientEntityInterface; |
|
17
|
|
|
use League\OAuth2\Server\Entities\ScopeEntityInterface; |
|
18
|
|
|
|
|
19
|
|
|
use function array_values; |
|
20
|
|
|
|
|
21
|
|
|
trait TokenEntityTrait |
|
22
|
|
|
{ |
|
23
|
|
|
/** |
|
24
|
|
|
* @var ScopeEntityInterface[] |
|
25
|
|
|
*/ |
|
26
|
|
|
protected array $scopes = []; |
|
27
|
|
|
|
|
28
|
|
|
protected DateTimeImmutable $expiryDateTime; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* @var non-empty-string|null |
|
|
|
|
|
|
32
|
|
|
*/ |
|
33
|
|
|
protected string|null $userIdentifier = null; |
|
34
|
|
|
|
|
35
|
|
|
protected ClientEntityInterface $client; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* Associate a scope with the token. |
|
39
|
|
|
*/ |
|
40
|
10 |
|
public function addScope(ScopeEntityInterface $scope): void |
|
41
|
|
|
{ |
|
42
|
10 |
|
$this->scopes[$scope->getIdentifier()] = $scope; |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* Return an array of scopes associated with the token. |
|
47
|
|
|
* |
|
48
|
|
|
* @return ScopeEntityInterface[] |
|
49
|
|
|
*/ |
|
50
|
15 |
|
public function getScopes(): array |
|
51
|
|
|
{ |
|
52
|
15 |
|
return array_values($this->scopes); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* Get the token's expiry date time. |
|
57
|
|
|
*/ |
|
58
|
21 |
|
public function getExpiryDateTime(): DateTimeImmutable |
|
59
|
|
|
{ |
|
60
|
21 |
|
return $this->expiryDateTime; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* Set the date time when the token expires. |
|
65
|
|
|
*/ |
|
66
|
52 |
|
public function setExpiryDateTime(DateTimeImmutable $dateTime): void |
|
67
|
|
|
{ |
|
68
|
52 |
|
$this->expiryDateTime = $dateTime; |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* Set the identifier of the user associated with the token. |
|
73
|
|
|
* |
|
74
|
|
|
* @param non-empty-string $identifier The identifier of the user |
|
|
|
|
|
|
75
|
|
|
*/ |
|
76
|
20 |
|
public function setUserIdentifier(string $identifier): void |
|
77
|
|
|
{ |
|
78
|
20 |
|
$this->userIdentifier = $identifier; |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* Get the token user's identifier. |
|
83
|
|
|
* |
|
84
|
|
|
* @return non-empty-string|null |
|
|
|
|
|
|
85
|
|
|
*/ |
|
86
|
19 |
|
public function getUserIdentifier(): string|null |
|
87
|
|
|
{ |
|
88
|
19 |
|
return $this->userIdentifier; |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
/** |
|
92
|
|
|
* Get the client that the token was issued to. |
|
93
|
|
|
*/ |
|
94
|
39 |
|
public function getClient(): ClientEntityInterface |
|
95
|
|
|
{ |
|
96
|
39 |
|
return $this->client; |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
/** |
|
100
|
|
|
* Set the client that the token was issued to. |
|
101
|
|
|
*/ |
|
102
|
49 |
|
public function setClient(ClientEntityInterface $client): void |
|
103
|
|
|
{ |
|
104
|
49 |
|
$this->client = $client; |
|
105
|
|
|
} |
|
106
|
|
|
} |
|
107
|
|
|
|