forked from panva/jose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.ts
More file actions
563 lines (517 loc) · 11.7 KB
/
errors.ts
File metadata and controls
563 lines (517 loc) · 11.7 KB
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
/**
* JOSE module errors and error codes
*
* @module
*/
import type * as types from '../types.d.ts'
/**
* A generic Error that all other JOSE specific Error subclasses extend.
*
* @example
*
* Checking thrown error is a JOSE one
*
* ```js
* if (err instanceof jose.errors.JOSEError) {
* // ...
* }
* ```
*/
export class JOSEError extends Error {
/**
* A unique error code for the particular error subclass.
*
* @ignore
*/
static code = 'ERR_JOSE_GENERIC'
/** A unique error code for {@link JOSEError}. */
code = 'ERR_JOSE_GENERIC'
/** @ignore */
constructor(message?: string, options?: { cause?: unknown }) {
super(message, options)
this.name = this.constructor.name
// @ts-ignore
Error.captureStackTrace?.(this, this.constructor)
}
}
/**
* An error subclass thrown when a JWT Claim Set member validation fails.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWT_CLAIM_VALIDATION_FAILED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWTClaimValidationFailed) {
* // ...
* }
* ```
*/
export class JWTClaimValidationFailed extends JOSEError {
/** @ignore */
static override code = 'ERR_JWT_CLAIM_VALIDATION_FAILED'
/** A unique error code for {@link JWTClaimValidationFailed}. */
override code = 'ERR_JWT_CLAIM_VALIDATION_FAILED'
/** The Claim for which the validation failed. */
claim: string
/** Reason code for the validation failure. */
reason: string
/**
* The parsed JWT Claims Set (aka payload). Other JWT claims may or may not have been verified at
* this point. The JSON Web Signature (JWS) or a JSON Web Encryption (JWE) structures' integrity
* has however been verified. Claims Set verification happens after the JWS Signature or JWE
* Decryption processes.
*/
payload: types.JWTPayload
/** @ignore */
constructor(
message: string,
payload: types.JWTPayload,
claim = 'unspecified',
reason = 'unspecified',
) {
super(message, { cause: { claim, reason, payload } })
this.claim = claim
this.reason = reason
this.payload = payload
}
}
/**
* An error subclass thrown when a JWT is expired.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWT_EXPIRED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWTExpired) {
* // ...
* }
* ```
*/
export class JWTExpired extends JOSEError implements JWTClaimValidationFailed {
/** @ignore */
static override code = 'ERR_JWT_EXPIRED'
/** A unique error code for {@link JWTExpired}. */
override code = 'ERR_JWT_EXPIRED'
/** The Claim for which the validation failed. */
claim: string
/** Reason code for the validation failure. */
reason: string
/**
* The parsed JWT Claims Set (aka payload). Other JWT claims may or may not have been verified at
* this point. The JSON Web Signature (JWS) or a JSON Web Encryption (JWE) structures' integrity
* has however been verified. Claims Set verification happens after the JWS Signature or JWE
* Decryption processes.
*/
payload: types.JWTPayload
/** @ignore */
constructor(
message: string,
payload: types.JWTPayload,
claim = 'unspecified',
reason = 'unspecified',
) {
super(message, { cause: { claim, reason, payload } })
this.claim = claim
this.reason = reason
this.payload = payload
}
}
/**
* An error subclass thrown when a JOSE Algorithm is not allowed per developer preference.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JOSE_ALG_NOT_ALLOWED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JOSEAlgNotAllowed) {
* // ...
* }
* ```
*/
export class JOSEAlgNotAllowed extends JOSEError {
/** @ignore */
static override code = 'ERR_JOSE_ALG_NOT_ALLOWED'
/** A unique error code for {@link JOSEAlgNotAllowed}. */
override code = 'ERR_JOSE_ALG_NOT_ALLOWED'
}
/**
* An error subclass thrown when a particular feature or algorithm is not supported by this
* implementation or JOSE in general.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JOSE_NOT_SUPPORTED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JOSENotSupported) {
* // ...
* }
* ```
*/
export class JOSENotSupported extends JOSEError {
/** @ignore */
static override code = 'ERR_JOSE_NOT_SUPPORTED'
/** A unique error code for {@link JOSENotSupported}. */
override code = 'ERR_JOSE_NOT_SUPPORTED'
}
/**
* An error subclass thrown when a JWE ciphertext decryption fails.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWE_DECRYPTION_FAILED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWEDecryptionFailed) {
* // ...
* }
* ```
*/
export class JWEDecryptionFailed extends JOSEError {
/** @ignore */
static override code = 'ERR_JWE_DECRYPTION_FAILED'
/** A unique error code for {@link JWEDecryptionFailed}. */
override code = 'ERR_JWE_DECRYPTION_FAILED'
/** @ignore */
constructor(message = 'decryption operation failed', options?: { cause?: unknown }) {
super(message, options)
}
}
/**
* An error subclass thrown when a JWE is invalid.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWE_INVALID') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWEInvalid) {
* // ...
* }
* ```
*/
export class JWEInvalid extends JOSEError {
/** @ignore */
static override code = 'ERR_JWE_INVALID'
/** A unique error code for {@link JWEInvalid}. */
override code = 'ERR_JWE_INVALID'
}
/**
* An error subclass thrown when a JWS is invalid.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWS_INVALID') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWSInvalid) {
* // ...
* }
* ```
*/
export class JWSInvalid extends JOSEError {
/** @ignore */
static override code = 'ERR_JWS_INVALID'
/** A unique error code for {@link JWSInvalid}. */
override code = 'ERR_JWS_INVALID'
}
/**
* An error subclass thrown when a JWT is invalid.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWT_INVALID') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWTInvalid) {
* // ...
* }
* ```
*/
export class JWTInvalid extends JOSEError {
/** @ignore */
static override code = 'ERR_JWT_INVALID'
/** A unique error code for {@link JWTInvalid}. */
override code = 'ERR_JWT_INVALID'
}
/**
* An error subclass thrown when a JWK is invalid.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWK_INVALID') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWKInvalid) {
* // ...
* }
* ```
*/
export class JWKInvalid extends JOSEError {
/** @ignore */
static override code = 'ERR_JWK_INVALID'
/** A unique error code for {@link JWKInvalid}. */
override code = 'ERR_JWK_INVALID'
}
/**
* An error subclass thrown when a JWKS is invalid.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWKS_INVALID') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWKSInvalid) {
* // ...
* }
* ```
*/
export class JWKSInvalid extends JOSEError {
/** @ignore */
static override code = 'ERR_JWKS_INVALID'
/** A unique error code for {@link JWKSInvalid}. */
override code = 'ERR_JWKS_INVALID'
}
/**
* An error subclass thrown when no keys match from a JWKS.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWKS_NO_MATCHING_KEY') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWKSNoMatchingKey) {
* // ...
* }
* ```
*/
export class JWKSNoMatchingKey extends JOSEError {
/** @ignore */
static override code = 'ERR_JWKS_NO_MATCHING_KEY'
/** A unique error code for {@link JWKSNoMatchingKey}. */
override code = 'ERR_JWKS_NO_MATCHING_KEY'
/** @ignore */
constructor(
kid?: string
) {
const postfix = typeof kid === 'string' && kid.length > 0 ? ` for kid: ${kid}` : '';
super(`no applicable key found in the JSON Web Key Set${postfix}`)
}
}
/**
* An error subclass thrown when multiple keys match from a JWKS.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWKS_MULTIPLE_MATCHING_KEYS') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWKSMultipleMatchingKeys) {
* // ...
* }
* ```
*/
export class JWKSMultipleMatchingKeys extends JOSEError {
/** @ignore */
[Symbol.asyncIterator]!: () => AsyncIterableIterator<types.CryptoKey>
/** @ignore */
static override code = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS'
/** A unique error code for {@link JWKSMultipleMatchingKeys}. */
override code = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS'
/** @ignore */
constructor(
message = 'multiple matching keys found in the JSON Web Key Set',
options?: { cause?: unknown },
) {
super(message, options)
}
}
/**
* Timeout was reached when retrieving the JWKS response.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWKS_TIMEOUT') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWKSTimeout) {
* // ...
* }
* ```
*/
export class JWKSTimeout extends JOSEError {
/** @ignore */
static override code = 'ERR_JWKS_TIMEOUT'
/** A unique error code for {@link JWKSTimeout}. */
override code = 'ERR_JWKS_TIMEOUT'
/** @ignore */
constructor(message = 'request timed out', options?: { cause?: unknown }) {
super(message, options)
}
}
/**
* An error subclass thrown when JWS signature verification fails.
*
* @example
*
* Checking thrown error is this one using a stable error code
*
* ```js
* if (err.code === 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED') {
* // ...
* }
* ```
*
* @example
*
* Checking thrown error is this one using `instanceof`
*
* ```js
* if (err instanceof jose.errors.JWSSignatureVerificationFailed) {
* // ...
* }
* ```
*/
export class JWSSignatureVerificationFailed extends JOSEError {
/** @ignore */
static override code = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED'
/** A unique error code for {@link JWSSignatureVerificationFailed}. */
override code = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED'
/** @ignore */
constructor(message = 'signature verification failed', options?: { cause?: unknown }) {
super(message, options)
}
}