-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ts
491 lines (401 loc) · 9.85 KB
/
index.ts
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
export interface HttpError extends Error {
httpStatus: number;
}
export interface HttpProblem extends HttpError {
type: string | null;
title: string;
detail: string | null;
instance: string | null;
}
export function isHttpError(e: unknown): e is HttpError {
if (!e) return false;
return Number.isInteger((e as HttpError).httpStatus);
}
export function isHttpProblem(e: unknown): e is HttpProblem {
if (!e) return false;
return (e as HttpProblem).title !== undefined && isHttpError(e);
}
export class HttpErrorBase extends Error implements HttpProblem {
type: string | null = null;
httpStatus: number = 500;
title: string = 'Internal Server Error';
detail: string|null = null;
instance: string | null = null;
constructor(detail: string|null = null) {
super(detail || 'HTTP error');
this.detail = detail;
}
}
export function isClientError(e: Error): boolean {
return isHttpError(e) && e.httpStatus >= 400 && e.httpStatus <= 499;
}
export function isServerError(e: Error): boolean {
return isHttpError(e) && e.httpStatus >= 500 && e.httpStatus <= 599;
}
export class BadRequest extends HttpErrorBase {
httpStatus = 400;
title = 'Bad Request';
}
type AuthenticateChallenge = string | string[];
/**
* Emits a 401 Unauthorized.
*
* This response must come with a WWW-Authenticate header. This challenge can
* optionally be provided via the constructor.
*
* examples:
* new Unauthorized('Login failed', 'Basic');
* new Unauthorized('Login failed', 'Basic; realm="secret area"');
* new Unauthorized('Login failed', ['Basic; realm="secret area', 'Bearer']);
*/
export class Unauthorized extends HttpErrorBase {
httpStatus = 401;
title = 'Unauthorized';
wwwAuthenticate?: AuthenticateChallenge;
constructor(detail: string|null = null, wwwAuthenticate?: AuthenticateChallenge) {
super(detail);
this.wwwAuthenticate = wwwAuthenticate;
}
}
/**
* Emits 402 Payment Required
*/
export class PaymentRequired extends HttpErrorBase {
httpStatus = 402;
title = 'Payment Required';
}
/**
* Emits 403 Forbidden
*/
export class Forbidden extends HttpErrorBase {
httpStatus = 403;
title = 'Forbidden';
}
/**
* Emits 404 Not Found
*/
export class NotFound extends HttpErrorBase {
httpStatus = 404;
title = 'Not Found';
}
/**
* Emits 405 Method Not Allowed.
*
* The 405 Method Not Allowed HTTP response requires an Allow header.
* You can optionally use the second argument to provide this.
*
* Example:
* new MethodNotAllowed('This resource is read-only', ['GET', 'HEAD', 'OPTIONS']);
*/
export class MethodNotAllowed extends HttpErrorBase {
httpStatus = 405;
title = 'Method Not Allowed';
allow?: string[];
constructor(detail: string|null = null, allow?: string[]) {
super(detail);
this.allow = allow;
}
}
/**
* Emits 406 Not Acceptable
*/
export class NotAcceptable extends HttpErrorBase {
httpStatus = 406;
title = 'Not Acceptable';
}
/**
* Emits a 407 Proxy Autentication Required
*
* This response must come with a Proxy-Authenticate header. This challenge can
* optionally be provided via the constructor.
*
* examples:
* new ProxyAuthenticationRequired('Login failed', 'Basic');
* new ProxyAuthenticationRequired('Login failed', 'Basic; realm="secret area"');
* new ProxyAuthenticationRequired('Login failed', ['Basic; realm="secret area', 'Bearer']);
*/
export class ProxyAuthenticationRequired extends HttpErrorBase {
httpStatus = 407;
title = 'Proxy Authentication Required';
proxyAuthenticate?: AuthenticateChallenge;
constructor(detail: string|null = null, proxyAuthenticate?: AuthenticateChallenge) {
super(detail);
this.proxyAuthenticate = proxyAuthenticate;
}
}
/**
* Emits 408 Request Timeout
*/
export class RequestTimeout extends HttpErrorBase {
httpStatus = 408;
title = 'Request Timeout';
}
/**
* Emits 409 Conflict
*/
export class Conflict extends HttpErrorBase {
httpStatus = 409;
title = 'Conflict';
}
/**
* Emits 410 Gone
*/
export class Gone extends HttpErrorBase {
httpStatus = 410;
title = 'Gone';
}
/**
* Emits 411 Length Required
*/
export class LengthRequired extends HttpErrorBase {
httpStatus = 411;
title = 'LengthRequired';
}
/**
* Emits 412 Precondition Failed
*/
export class PreconditionFailed extends HttpErrorBase {
httpStatus = 412;
title = 'PreconditionFailed';
}
/**
* Emits 413 Content Too Large
*
* If the status is temporary, it's possible for a server to send a
* Retry-After header to try again. This value may be embeded in this
* exception.
*
* Example:
*
* throw new PayloadTooLarge('Send the large file again in 10 minutes', 600);
*/
export class ContentTooLarge extends HttpErrorBase {
httpStatus = 413;
title = 'Content Too Large';
retryAfter: number | null;
constructor(detail: string|null = null, retryAfter: number|null = null) {
super(detail);
this.retryAfter = retryAfter;
}
}
/**
* Payload Too Large was the old name of this error, but all instances of
* Payload have been renamed to Content in RFC9110.
*
* @deprecated
*/
export class PayloadTooLarge extends ContentTooLarge {}
/**
* Emits 414 URI Too Long
*/
export class UriTooLong extends HttpErrorBase {
httpStatus = 414;
title = 'URI Too Long';
}
/**
* Emits 415 Unsupported Media Type
*/
export class UnsupportedMediaType extends HttpErrorBase {
httpStatus = 415;
title = 'Unsupported Media Type';
}
/**
* Emits 416 Range Not Satisfiable
*/
export class RangeNotSatisfiable extends HttpErrorBase {
httpStatus = 416;
title = 'Range Not Satisfiable';
}
/**
* Emits 417 Expectation Failed
*/
export class ExpectationFailed extends HttpErrorBase {
httpStatus = 417;
title = 'Expectation Failed';
}
/**
* Emits 421 Misdirected Request
*/
export class MisdirectedRequest extends HttpErrorBase {
httpStatus = 421;
title = 'Misdirected Request';
}
/**
* Emits 422 Unprocessable Content
*/
export class UnprocessableContent extends HttpErrorBase {
httpStatus = 422;
title = 'Unprocessable Entity';
}
/**
* RFC9110 renamed this to Unprocessable Content.
*
* @deprecated
*/
export class UnprocessableEntity extends UnprocessableContent {
}
/**
* Emits 423 Locked
*/
export class Locked extends HttpErrorBase {
httpStatus = 423;
title = 'Locked';
}
/**
* Emits 424 FailedDependency
*/
export class FailedDependency extends HttpErrorBase {
httpStatus = 424;
title = 'Failed Dependency';
}
/**
* Emits 425 Too Early
*/
export class TooEarly extends HttpErrorBase {
httpStatus = 425;
title = 'Too Early';
}
/**
* Emits 426 Upgrade Required
*/
export class UpgradeRequired extends HttpErrorBase {
httpStatus = 426;
title = 'Upgrade Required';
}
/**
* Emits 428 Precondition Required
*/
export class PreconditionRequired extends HttpErrorBase {
httpStatus = 428;
title = 'Precondition Required';
}
/**
* Emits 429 Too Many Requests
*
* When sending this status the server may also send a Retry-After header
* indicating when it's safe try again.
*
* It's possible to supply this information via the second argument.
*
* Example:
* throw new TooManyRequests('Try again in 10 minutes', 600)
*
*/
export class TooManyRequests extends HttpErrorBase {
httpStatus = 429;
title = 'Too Many Requests';
retryAfter: number | null;
constructor(detail: string|null = null, retryAfter: number|null = null) {
super(detail);
this.retryAfter = retryAfter;
}
}
/**
* Emits 431 Request Header Fields Too Large
*/
export class RequestHeaderFieldsTooLarge extends HttpErrorBase {
httpStatus = 431;
title = 'Request Header Fields Too Large';
}
/**
* Emits 451 Unavailable For Legal Reasons
*/
export class UnavailableForLegalReasons extends HttpErrorBase {
httpStatus = 451;
title = 'Unavailable For Legal Reasons';
}
/**
* Emits 500 Internal Server Error
*/
export class InternalServerError extends HttpErrorBase {
httpStatus = 500;
title = 'Internal Server Error';
}
/**
* Emits 501 Not Implemented
*/
export class NotImplemented extends HttpErrorBase {
httpStatus = 501;
title = 'Not Implemented';
}
/**
* Emits 502 Bad Gateway
*/
export class BadGateway extends HttpErrorBase {
httpStatus = 502;
title = 'Bad Gateway';
}
/**
* Emits 503 Service Unavailable.
*
* When sending this status the server may also send a Retry-After header
* indicating when it's safe try again.
*
* It's possible to supply this information via the second argument.
*
* Example:
* throw new ServiceUnavailable('We\'re down temporarily', 600)
*
*/
export class ServiceUnavailable extends HttpErrorBase {
httpStatus = 503;
title = 'Service Unavailable';
retryAfter: number | null;
constructor(detail: string|null = null, retryAfter: number|null = null) {
super(detail);
this.retryAfter = retryAfter;
}
}
/**
* Emits 504 Gateway Timeout
*/
export class GatewayTimeout extends HttpErrorBase {
httpStatus = 504;
title = 'Gateway Timeout';
}
/**
* Emits 505 HTTP Version Not Supported
*/
export class HttpVersionNotSupported extends HttpErrorBase {
httpStatus = 505;
title = 'HTTP Version Not Supported';
}
/**
* Emits 506 Variant Also Negotiates
*/
export class VariantAlsoNegotiates extends HttpErrorBase {
httpStatus = 506;
title = 'Variant Also Negotiates';
}
/**
* Emits 507 Insufficient Storage
*/
export class UnsufficientStorage extends HttpErrorBase {
httpStatus = 507;
title = 'Unsufficient Storage';
}
/**
* Emits 508 Loop Detected
*/
export class LoopDetected extends HttpErrorBase {
httpStatus = 508;
title = 'Loop Detected';
}
/**
* Emits 510 Not Extended.
*
* This status code has been marked as obsolute.
*
* @deprecated
*/
export class NotExtended extends HttpErrorBase {
httpStatus = 510;
title = 'Not Extended';
}
/**
* Emits 511 Network Authentication Required
*/
export class NetworkAuthenticationRequired extends HttpErrorBase {
httpStatus = 511;
title = 'Network Authentication Required';
}