-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathLexikJoseEncoder.php
300 lines (256 loc) · 9.61 KB
/
LexikJoseEncoder.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
<?php
declare(strict_types=1);
namespace SpomkyLabs\LexikJoseBundle\Encoder;
use Exception;
use function is_string;
use Jose\Component\Checker\ClaimCheckerManager;
use Jose\Component\Checker\HeaderCheckerManager;
use Jose\Component\Checker\InvalidClaimException;
use Jose\Component\Checker\InvalidHeaderException;
use Jose\Component\Core\JWKSet;
use Jose\Component\Core\Util\JsonConverter;
use Jose\Component\Encryption\JWEBuilder;
use Jose\Component\Encryption\JWEDecrypter;
use Jose\Component\Encryption\Serializer\CompactSerializer as JWECompactSerializer;
use Jose\Component\Signature\JWSBuilder;
use Jose\Component\Signature\JWSVerifier;
use Jose\Component\Signature\Serializer\CompactSerializer as JWSCompactSerializer;
use Lexik\Bundle\JWTAuthenticationBundle\Encoder\JWTEncoderInterface;
use Lexik\Bundle\JWTAuthenticationBundle\Exception\JWTDecodeFailureException;
use Lexik\Bundle\JWTAuthenticationBundle\Exception\JWTEncodeFailureException;
use ParagonIE\ConstantTime\Base64UrlSafe;
/**
* Json Web Token encoder/decoder.
*
* This encoder uses web-token/jwt-framework to create and load the assertions
*/
final class LexikJoseEncoder implements JWTEncoderInterface
{
private readonly string $issuer;
private readonly string $audience;
private readonly JWSBuilder $jwsBuilder;
private readonly JWSVerifier $jwsLoader;
private readonly ClaimCheckerManager $claimCheckerManager;
private readonly HeaderCheckerManager $signatureHeaderCheckerManager;
private ?HeaderCheckerManager $encryptionHeaderCheckerManager = null;
private JWKSet $signatureKeyset;
private readonly int|string $signatureKeyIndex;
private readonly string $signatureAlgorithm;
private ?JWEBuilder $jweBuilder = null;
private ?JWEDecrypter $jweLoader = null;
private ?JWKSet $encryptionKeyset = null;
private int|string|null $encryptionKeyIndex = null;
private ?string $keyEncryptionAlgorithm = null;
private ?string $contentEncryptionAlgorithm = null;
private readonly int $ttl;
private readonly array $mandatoryClaims;
/**
* LexikJoseEncoder constructor.
*
* @param int|string $signatureKeyIndex
*/
public function __construct(
JWSBuilder $jwsBuilder,
JWSVerifier $jwsLoader,
ClaimCheckerManager $claimCheckerManager,
HeaderCheckerManager $signatureHeaderCheckerManager,
JWKSet $signatureKeyset,
$signatureKeyIndex,
string $signatureAlgorithm,
string $issuer,
string $audience,
int $ttl,
array $mandatoryClaims = []
) {
$this->jwsBuilder = $jwsBuilder;
$this->jwsLoader = $jwsLoader;
$this->claimCheckerManager = $claimCheckerManager;
$this->signatureHeaderCheckerManager = $signatureHeaderCheckerManager;
$this->signatureKeyset = $signatureKeyset;
$this->signatureKeyIndex = $signatureKeyIndex;
$this->signatureAlgorithm = $signatureAlgorithm;
$this->issuer = $issuer;
$this->audience = $audience;
$this->ttl = $ttl;
$this->mandatoryClaims = $mandatoryClaims;
}
/**
* @param int|string $encryptionKeyIndex
*/
public function enableEncryptionSupport(
JWEBuilder $jweBuilder,
JWEDecrypter $jweLoader,
HeaderCheckerManager $encryptionHeaderCheckerManager,
JWKSet $encryptionKeyset,
$encryptionKeyIndex,
string $keyEncryptionAlgorithm,
string $contentEncryptionAlgorithm
): void {
$this->jweBuilder = $jweBuilder;
$this->jweLoader = $jweLoader;
$this->encryptionKeyset = $encryptionKeyset;
$this->encryptionKeyIndex = $encryptionKeyIndex;
$this->keyEncryptionAlgorithm = $keyEncryptionAlgorithm;
$this->contentEncryptionAlgorithm = $contentEncryptionAlgorithm;
$this->encryptionHeaderCheckerManager = $encryptionHeaderCheckerManager;
}
/**
* {@inheritdoc}
*/
public function encode(array $payload): string
{
try {
$jwt = $this->sign($payload);
if ($this->jweBuilder !== null) {
$jwt = $this->encrypt($jwt);
}
return $jwt;
} catch (Exception $e) {
throw new JWTEncodeFailureException(
'encoding_error',
'An error occurred while trying to encode the JWT token: ' . $e->getMessage(),
$e
);
}
}
public function encrypt(string $jws): string
{
if ($this->jweBuilder === null || $this->encryptionKeyset === null || $this->encryptionKeyIndex === null) {
throw new JWTDecodeFailureException(
'decoding_error',
'The service is not configured for issuing encrypted tokens.'
);
}
$headers = $this->getEncryptionHeader();
$encryptionKey = $this->encryptionKeyset->get($this->encryptionKeyIndex);
if ($encryptionKey->has('kid')) {
$headers['kid'] = $encryptionKey->get('kid');
}
$jwe = $this->jweBuilder
->create()
->withPayload($jws)
->withSharedProtectedHeader($headers)
->addRecipient($encryptionKey)
->build()
;
return (new JWECompactSerializer())->serialize($jwe, 0);
}
/**
* {@inheritdoc}
*/
public function decode($token): array
{
try {
if ($this->jweBuilder !== null) {
$token = $this->decrypt($token);
}
return $this->verify($token);
} catch (InvalidClaimException $e) {
$reason = match ($e->getClaim()) {
'exp' => JWTDecodeFailureException::EXPIRED_TOKEN,
default => JWTDecodeFailureException::INVALID_TOKEN,
};
throw new JWTDecodeFailureException($reason, sprintf(
'Invalid JWT Token. The following claim was not verified: %s.',
$e->getClaim()
));
} catch (InvalidHeaderException $e) {
throw new JWTDecodeFailureException(JWTDecodeFailureException::INVALID_TOKEN, sprintf(
'Invalid JWT Token. The following header was not verified: %s.',
$e->getHeader()
));
} catch (Exception $e) {
throw new JWTDecodeFailureException(JWTDecodeFailureException::INVALID_TOKEN, sprintf(
'Invalid JWT Token: %s',
$e->getMessage()
), $e);
}
}
private function sign(array $payload): string
{
$payload += $this->getAdditionalPayload();
$headers = $this->getSignatureHeader();
$signatureKey = $this->signatureKeyset->get($this->signatureKeyIndex);
if ($signatureKey->has('kid')) {
$headers['kid'] = $signatureKey->get('kid');
}
$jws = $this->jwsBuilder
->create()
->withPayload(JsonConverter::encode($payload))
->addSignature($signatureKey, $headers)
->build()
;
return (new JWSCompactSerializer())->serialize($jws, 0);
}
private function decrypt(string $token): string
{
if ($this->jweLoader === null || $this->encryptionKeyset === null || $this->encryptionHeaderCheckerManager === null) {
throw new JWTDecodeFailureException(
'decoding_error',
'The service is not configured for accepting encrypted tokens.'
);
}
$serializer = new JWECompactSerializer();
$jwe = $serializer->unserialize($token);
$this->encryptionHeaderCheckerManager->check($jwe, 0);
if ($this->jweLoader->decryptUsingKeySet($jwe, $this->encryptionKeyset, 0) === false) {
throw new JWTDecodeFailureException(
'decoding_error',
'An error occurred while trying to decrypt the JWT token.'
);
}
return $jwe->getPayload();
}
private function verify(string $token): array
{
$serializer = new JWSCompactSerializer();
$jws = $serializer->unserialize($token);
$this->signatureHeaderCheckerManager->check($jws, 0);
if ($this->jwsLoader->verifyWithKeySet($jws, $this->signatureKeyset, 0) === false) {
throw new JWTDecodeFailureException(
'decoding_error',
'An error occurred while trying to verify the JWT token.'
);
}
$jwt = $jws->getPayload();
if (! is_string($jwt)) {
throw new JWTDecodeFailureException(
'decoding_error',
'An error occurred while trying to verify the JWT token.'
);
}
$payload = JsonConverter::decode($jwt);
$this->claimCheckerManager->check($payload, $this->mandatoryClaims);
return $payload;
}
private function getAdditionalPayload(): array
{
return [
'jti' => Base64UrlSafe::encode(random_bytes(64)),
'exp' => time() + $this->ttl,
'iat' => time(),
'iss' => $this->issuer,
'aud' => $this->audience,
];
}
private function getSignatureHeader(): array
{
return [
'typ' => 'JWT',
'alg' => $this->signatureAlgorithm,
'crit' => ['alg'],
];
}
private function getEncryptionHeader(): array
{
return [
'typ' => 'JWT',
'cty' => 'JWT',
'alg' => $this->keyEncryptionAlgorithm,
'enc' => $this->contentEncryptionAlgorithm,
'iss' => $this->issuer,
'aud' => $this->audience,
'crit' => ['iss', 'aud', 'alg', 'enc'],
];
}
}