-
Notifications
You must be signed in to change notification settings - Fork 1
/
router.ts
2011 lines (1974 loc) Β· 56.8 KB
/
router.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
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2018-2024 the oak authors. All rights reserved.
/**
* The main module of acorn that contains the core {@linkcode Router} which
* is focused on creating servers for handling RESTful type services.
*
* @module
*/
import type { KeyRing } from "@oak/commons/cookie_map";
import { createHttpError, isHttpError } from "@oak/commons/http_errors";
import type { HttpMethod } from "@oak/commons/method";
import { isClientErrorStatus, Status, STATUS_TEXT } from "@oak/commons/status";
import { assert } from "@std/assert/assert";
import type { InferOutput } from "@valibot/valibot";
import {
configure,
getLogger,
type Logger,
type LoggerOptions,
} from "./logger.ts";
import type { CloudflareWorkerRequestEvent } from "./request_event_cfw.ts";
import { PathRoute, type RouteHandler, type RouteOptions } from "./route.ts";
import {
type StatusHandler,
type StatusRange,
StatusRoute,
type StatusRouteDescriptor,
type StatusRouteInit,
} from "./status_route.ts";
import type {
Addr,
CloudflareExecutionContext,
CloudflareFetchHandler,
ParamsDictionary,
QueryParamsDictionary,
Removeable,
RequestEvent,
RequestServerConstructor,
Route,
RouteParameters,
TlsOptions,
} from "./types.ts";
import { isBun, isNode } from "./utils.ts";
import type {
BodySchema,
QueryStringSchema,
SchemaDescriptor,
} from "./schema.ts";
import { NOT_ALLOWED } from "./constants.ts";
/**
* The description of a route which can be used when registering a route with
* the {@linkcode Router}, which incorporates the path, handler, and other
* route specific options.
*/
export interface RouteDescriptor<
Path extends string,
Env extends Record<string, string> = Record<string, string>,
Params extends ParamsDictionary | undefined = ParamsDictionary,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
> extends
RouteInitWithHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
> {
path: Path;
}
export interface RouteDescriptorWithMethod<
Path extends string,
Env extends Record<string, string> = Record<string, string>,
Params extends ParamsDictionary | undefined = ParamsDictionary,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
> extends
RouteDescriptor<
Path,
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
> {
method: HttpMethod[] | HttpMethod;
}
/**
* Options which can be provided when creating a route.
*/
export interface RouteInit<
QSSchema extends QueryStringSchema,
BSchema extends BodySchema,
ResSchema extends BodySchema,
> {
/**
* The schema to be used for validating the query string, the request body,
* and the response body.
*/
schema?: SchemaDescriptor<QSSchema, BSchema, ResSchema> | undefined;
}
/**
* Options which can be provided when creating a route that also include the
* handler.
*/
export interface RouteInitWithHandler<
Env extends Record<string, string> = Record<string, string>,
Params extends ParamsDictionary | undefined = ParamsDictionary,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
> extends RouteInit<QSSchema, BSchema, ResSchema> {
/**
* The handler function which will be called when the route is matched.
*/
handler: RouteHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>;
}
/**
* Details provided an `onError` hook.
*/
export interface ErrorDetails<
Env extends Record<string, string> = Record<string, string>,
> {
/**
* The error message which was generated.
*/
message: string;
/**
* The cause of the error. This is typically an `Error` instance, but can be
* any value.
*/
cause: unknown;
/**
* The request event which was being processed when the error occurred.
*
* If the error occurs outside of handling a request, this will be
* `undefined`.
*/
requestEvent?: RequestEvent<Env>;
/**
* If the error occurred before a response was returned to the client, this
* will be `true`. This indicates that the error hook can return a response
* which will be sent to the client instead of the default response.
*/
respondable?: boolean;
/**
* If a route was matched, this will be the route that was matched.
*/
route?: Route;
}
/**
* Details provided to an `onHandled` hook.
*/
export interface HandledDetails<
Env extends Record<string, string> = Record<string, string>,
> {
/**
* The duration in milliseconds that it took to handle the request.
*
* acorn attempts to use high precision timing to determine the duration, but
* this is runtime dependent. If it is high precision timing, the number will
* be a float.
*/
duration: number;
/**
* The request event which was processed.
*/
requestEvent: RequestEvent<Env>;
/**
* The response which is being returned to the client.
*/
response: Response;
/**
* If a route was matched, this will be the route that was matched.
*/
route?: Route;
}
/**
* Options which can be specified when listening for requests.
*/
export interface ListenOptions {
/**
* The server constructor to use when listening for requests. This is not
* commonly used, but can be used to provide a custom server implementation.
*
* When not provided, the default server constructor for the detected
* runtime will be used.
*/
server?: RequestServerConstructor;
/**
* The port to listen on.
*/
port?: number;
/**
* The hostname to listen on.
*/
hostname?: string;
/**
* Determines if the server should be considered to be listening securely,
* irrespective of the TLS configuration.
*
* Typically if there is a TLS configuration, the server is considered to be
* listening securely. However, in some cases, like when using Deno Deploy
* you don't specify any TLS configuration, but the server is still listening
* securely.
*/
secure?: boolean;
/**
* The signal to use to stop listening for requests. When this signal is
* aborted, the server will stop listening for requests and finish processing
* any requests that are currently being handled.
*/
signal?: AbortSignal;
/**
* The TLS configuration to use when listening for requests.
*/
tls?: TlsOptions;
/**
* A callback which is invoked when the server starts listening for requests.
*
* The address that the server is listening on is provided.
*/
onListen?(addr: Addr): void;
}
/**
* Details provided to an `onNotFound` hook.
*/
export interface NotFoundDetails<
Env extends Record<string, string> = Record<string, string>,
> {
/**
* The request event which is being processed.
*/
requestEvent: RequestEvent<Env>;
/**
* The response which is being potentially being returned to the client.
* If present this will have a status of `404 Not Found` which was returned
* by the handler.
*/
response?: Response;
/**
* If a route was matched, this will be the route that was matched. The
* not found hook is called when a route is matched and the router handler
* returns a response with `404 Not Found` status.
*/
route?: Route;
}
/**
* Options which can be specified when creating an instance of
* {@linkcode Router}.
*
* @template Env a type which allows strongly typing the environment variables
* that are made available on the context used within handlers.
*/
export interface RouterOptions<
Env extends Record<string, string> = Record<string, string>,
> extends RouteOptions {
/**
* Determines if when returning a router generated client error, like a `400
* Bad Request` or `404 Not Found`, the error stack should be exposed in the
* response.
*
* @default true
*/
expose?: boolean;
/**
* An optional key ring which is used for signing and verifying cookies, which
* helps ensure that the cookie values are resistent to client side tampering.
*
* When supplied, only verified cookies are made available in the context.
*/
keys?: KeyRing;
/**
* An optional logger configuration which can be used to configure the
* integrated logger. There are three ways to output logs:
*
* - output logs to the console
* - output logs to a file
* - output logs to a {@linkcode WritableStream}
*
* If the value of the option is `true`, logs will be output to the console at
* the `"WARN"` level. If you provide an object, you can choose the level
* and other configuration options for each log sink of `console`, `file`, and
* `stream`.
*
* @default false
*
* @example Output logs to the console
*
* ```ts
* import { Router } from "@oak/acorn";
*
* const router = new Router({ logger: true });
* ```
*
* @example Output debug logs to the console
*
* ```ts
* import { Router } from "@oak/acorn";
*
* const router = new Router({
* logger: {
* console: { level: "debug" },
* },
* });
* ```
*
* @example Output logs to a file
*
* ```ts
* import { Router } from "@oak/acorn";
*
* const router = new Router({
* logger: {
* file: { path: "/path/to/logfile.log" },
* },
* });
* ```
*/
logger?: boolean | LoggerOptions;
/**
* An optional handler when an error is encountered by the router.
*
* If a response has not yet been returned to the client, the handler can
* return a {@linkcode Response} which will be sent to the client.
*
* If there is no handler or if the handler does not return a response, a
* default response will be returned to the client.
*/
onError?(
details: ErrorDetails<Env>,
): Promise<Response | undefined | void> | Response | undefined | void;
/**
* A callback which is invoked each time the router completes handling a
* request and starts returning a response to the client.
*
* Details around the request and response are provided. In certain situations
* where the response is not finalized, like when upgrading to web sockets or
* sending server sent events, the response will not be included in the
* details.
*/
onHandled?(details: HandledDetails<Env>): Promise<void> | void;
/**
* A handler which is invoked each time a router has matched any handlers and
* there is no match or the status of a response is currently a _404 Not
* Found_. The handler can return a response. If a response is returned, this
* will override the default response.
*
* This handler will be processed before any of the status handlers that
* maybe registered with the router.
*/
onNotFound?(
details: NotFoundDetails<Env>,
): Promise<Response | undefined | void> | Response | undefined | void;
/**
* A callback that is each time a request is presented to the router.
*/
onRequest?(requestEvent: RequestEvent<Env>): Promise<void> | void;
/**
* When there is an uncaught exception thrown during the handling of a
* request, the router will pass a request through to an origin server
* allowing the service behind the router to handle any unexpected error cases
* that arise.
*
* **Note:** This option is only available when running on Cloudflare Workers.
*/
passThroughOnException?: boolean;
/**
* When providing default responses like internal server errors or not found
* requests, the router uses content negotiation to determine the appropriate
* response. This option determines if JSON or HTML will be preferred for
* these responses.
*
* @default true
*/
preferJson?: boolean;
}
let CFWRequestEventCtor: typeof CloudflareWorkerRequestEvent | undefined;
/**
* The main class of acorn, which provides the functionality of receiving
* requests and routing them to specific handlers.
*
* @example Simplistic router on Deno/Node.js/Bun
*
* ```ts
* import { Router } from "@oak/acorn";
*
* const router = new Router();
*
* router.get(() => ({ hello: "world" }));
*
* router.listen({ port: 8080 });
* ```
*
* @example Simplistic router on Cloudflare Workers
*
* ```ts
* import { Router } from "@oak/acorn";
*
* const router = new Router();
*
* router.get(() => ({ hello: "world" }));
*
* export default router;
* ```
*
* @template Env a type which allows strongly typing the environment variables
* that are made available on the context used within handlers.
*/
export class Router<
Env extends Record<string, string> = Record<string, string>,
> {
#expose: boolean;
#handling = new Set<Promise<Response>>();
#logger: Logger;
#keys?: KeyRing;
#onError?: (
details: ErrorDetails<Env>,
) => Promise<Response | undefined | void> | Response | undefined | void;
#onHandled?: (details: HandledDetails<Env>) => Promise<void> | void;
#onNotFound?: (
details: NotFoundDetails<Env>,
) => Promise<Response | undefined | void> | Response | undefined | void;
#onRequest?: (requestEvent: RequestEvent<Env>) => Promise<void> | void;
#passThroughOnException?: boolean;
#preferJson: boolean;
#routeOptions: { sensitive?: boolean; strict?: boolean };
#routes = new Set<Route>();
#statusRoutes = new Set<StatusRoute<Env>>();
#addRoute<
Path extends string,
Params extends RouteParameters<Path>,
QSSchema extends QueryStringSchema,
QueryParams extends InferOutput<QSSchema>,
BSchema extends BodySchema = BodySchema,
RequestBody = unknown,
ResSchema extends BodySchema = BodySchema,
ResponseBody = unknown,
>(
methods: HttpMethod[],
pathOrDescriptor:
| Path
| RouteDescriptor<
Path,
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>,
handlerOrInit?:
| RouteHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>
| RouteInitWithHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>
| undefined,
init?: RouteInit<QSSchema, BSchema, ResSchema>,
): Removeable {
let path: Path;
let handler: RouteHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>;
let schemaDescriptor: SchemaDescriptor<QSSchema, BSchema, ResSchema> = {};
if (typeof pathOrDescriptor === "string") {
path = pathOrDescriptor;
assert(handlerOrInit);
if (typeof handlerOrInit === "function") {
handler = handlerOrInit;
} else {
assert(!init, "Invalid arguments");
const { handler: h, ...i } = handlerOrInit;
handler = h;
init = i;
}
} else {
assert(!handlerOrInit && !init, "Invalid arguments.");
const { path: p, handler: h, ...i } = pathOrDescriptor;
path = p;
handler = h;
init = i;
}
if (init && init.schema) {
schemaDescriptor = init.schema;
}
const route = new PathRoute<
Path,
Params,
Env,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>(
path,
methods,
schemaDescriptor,
handler,
this.#keys,
this.#expose,
this.#routeOptions,
);
this.#logger.debug(`adding route for ${methods.join(", ")} ${path}`);
this.#routes.add(route);
return {
remove: () => {
this.#logger.debug(`removing route for ${methods.join(", ")} ${path}`);
this.#routes.delete(route);
},
};
}
async #error(
id: string,
message: string,
cause: unknown,
start: number,
requestEvent?: RequestEvent<Env>,
route?: Route,
): Promise<void> {
if (!(isHttpError(cause) && isClientErrorStatus(cause.status))) {
this.#logger.error(
`${requestEvent?.id} error handling request: ${message}`,
);
}
const duration = performance.now() - start;
if (this.#onError) {
this.#logger.debug(`${requestEvent?.id} calling onError for request`);
const maybeResponse = await this.#onError({
message,
cause,
requestEvent,
respondable: requestEvent && !requestEvent.responded,
route,
});
if (requestEvent && !requestEvent?.responded && maybeResponse) {
this.#logger
.debug(
`${requestEvent?.id} responding with onError response for request`,
);
this.#logResponse(
id,
requestEvent.request.method,
route?.path ?? requestEvent.url.pathname,
maybeResponse.status,
duration,
);
return requestEvent.respond(maybeResponse);
}
}
if (requestEvent && !requestEvent?.responded) {
this.#logger
.debug(
`${requestEvent?.id} responding with default response for request`,
);
if (isHttpError(cause)) {
this.#logResponse(
id,
requestEvent.request.method,
route?.path ?? requestEvent.url.pathname,
cause.status,
duration,
);
return requestEvent.respond(
cause.asResponse({
request: requestEvent.request,
prefer: this.#preferJson ? "json" : "html",
headers: {
"x-request-id": requestEvent.id,
},
}),
);
} else {
this.#logResponse(
id,
requestEvent.request.method,
route?.path ?? requestEvent.url.pathname,
Status.InternalServerError,
duration,
);
return requestEvent.respond(
createHttpError(
Status.InternalServerError,
message,
{ cause },
).asResponse({
request: requestEvent.request,
prefer: this.#preferJson ? "json" : "html",
headers: { "x-request-id": requestEvent.id },
}),
);
}
}
}
async #handle(
requestEvent: RequestEvent<Env>,
secure: boolean,
): Promise<void> {
const id = requestEvent.id;
this.#logger.debug(
`${id} handling request: ${requestEvent.url.toString()}`,
);
const start = performance.now();
let response: Response | undefined | void;
let route: Route | undefined;
this.#handling.add(requestEvent.response);
requestEvent.response.then(() =>
this.#handling.delete(requestEvent.response)
).catch((cause) => {
this.#logger.error(`${id} error deleting handling handle for request`);
this.#error(
id,
"Error deleting handling handle.",
cause,
start,
requestEvent,
);
});
this.#onRequest?.(requestEvent);
const responseHeaders = new Headers();
const allowed: HttpMethod[] = [];
if (!requestEvent.responded) {
for (route of this.#routes) {
const matches = route.matches(
requestEvent.request.method as HttpMethod,
requestEvent.url.pathname,
);
if (matches === true) {
this.#logger.debug(`${id} request matched`);
try {
response = await route.handle(
requestEvent,
responseHeaders,
secure,
);
if (response && !requestEvent.responded) {
response = await this.#handleStatus(
requestEvent,
responseHeaders,
response,
secure,
route,
);
if (!requestEvent.responded) {
await requestEvent.respond(response);
}
}
if (requestEvent.responded) {
break;
}
} catch (cause) {
await this.#error(
id,
"Error during handling.",
cause,
start,
requestEvent,
route,
);
if (requestEvent.responded) {
break;
}
}
} else {
if (matches === NOT_ALLOWED) {
allowed.push(...route.methods);
}
route = undefined;
}
}
}
if (!requestEvent.responded) {
if (allowed.length) {
if (requestEvent.request.method === "OPTIONS") {
this.#logger.debug(`${id} responding to OPTIONS`);
response = new Response(null, {
status: Status.NoContent,
headers: { "x-request-id": id, "allowed": allowed.join(", ") },
});
} else {
this.#logger.debug(`${id} method not allowed`);
response = createHttpError(
Status.MethodNotAllowed,
"Method Not Allowed",
{ expose: this.#expose },
)
.asResponse({
prefer: this.#preferJson ? "json" : "html",
headers: { "x-request-id": id, "allowed": allowed.join(", ") },
});
}
} else {
this.#logger.debug(`${id} not found`);
response = response ??
createHttpError(
Status.NotFound,
"Not Found",
{ expose: this.#expose },
).asResponse({
prefer: this.#preferJson ? "json" : "html",
headers: { "x-request-id": id },
});
}
response = await this.#handleStatus(
requestEvent,
responseHeaders,
response,
secure,
);
requestEvent.respond(response);
}
const duration = performance.now() - start;
if (response) {
this.#logResponse(
id,
requestEvent.request.method,
route?.path ?? requestEvent.url.pathname,
response.status,
duration,
);
this.#onHandled?.({ duration, requestEvent, response, route });
} else {
this.#logger
.debug(
`${id} responded to outside handle loop in ${
parseFloat(duration.toFixed(2))
}ms`,
);
}
}
async #handleStatus(
requestEvent: RequestEvent<Env>,
responseHeaders: Headers,
response: Response,
secure: boolean,
route?: Route,
): Promise<Response> {
if (response.status === Status.NotFound && this.#onNotFound) {
this.#logger.debug(`${requestEvent.id} calling onNotFound`);
response = await this.#onNotFound?.({ requestEvent, response, route }) ??
response;
}
let result: Response | Promise<Response> = response;
for (const route of this.#statusRoutes) {
if (route.matches(response)) {
this.#logger
.debug(`${requestEvent.id} matched status route ${route.status}`);
result = route.handle(
requestEvent,
responseHeaders,
secure,
response,
);
}
}
return result;
}
#logResponse(
id: string,
method: string,
pathname: string,
status: Status,
duration: number,
) {
this.#logger.info(
`${method} ${pathname} ${status} ${STATUS_TEXT[status]} [${id}] (${
duration.toFixed(2)
}ms)`,
);
}
constructor(options: RouterOptions<Env> = {}) {
const {
expose = true,
keys,
onError,
onHandled,
onNotFound,
onRequest,
passThroughOnException,
preferJson = true,
logger,
...routerOptions
} = options;
this.#expose = expose;
this.#keys = keys;
this.#onError = onError;
this.#onHandled = onHandled;
this.#onNotFound = onNotFound;
this.#onRequest = onRequest;
this.#passThroughOnException = passThroughOnException;
this.#preferJson = preferJson;
this.#routeOptions = routerOptions;
if (logger) {
configure(typeof logger === "object" ? logger : undefined);
}
this.#logger = getLogger("acorn.router");
}
/**
* Define a route based on the provided descriptor.
*
* This provides a way to register a route with a specific method or set of
* methods, versus having to call the method specific to the HTTP method.
*/
route<
Path extends string,
Params extends ParamsDictionary | undefined = RouteParameters<Path>,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
>(
descriptor: RouteDescriptorWithMethod<
Path,
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>,
): Removeable {
const { method, ...routeDescriptor } = descriptor;
return this.#addRoute(
Array.isArray(method) ? method : [method],
// deno-lint-ignore no-explicit-any
routeDescriptor as any,
);
}
/**
* Register a handler provided in the descriptor that will be invoked on when
* the specified `.path` is matched along with the common HTTP methods of
* `GET`, `HEAD`, `OPTIONS`, `POST`, `PUT`, `PATCH`, and `DELETE`.
*/
all<
Path extends string,
Params extends ParamsDictionary | undefined = RouteParameters<Path>,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
>(
descriptor: RouteDescriptor<
Path,
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>,
): Removeable;
/**
* Register a handler provided in the init that will be invoked on when
* the specified path is matched along with the common HTTP methods of
* `GET`, `HEAD`, `OPTIONS`, `POST`, `PUT`, `PATCH`, and `DELETE`.
*/
all<
Path extends string,
Params extends ParamsDictionary | undefined = RouteParameters<Path>,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
>(
path: Path,
init: RouteInitWithHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>,
): Removeable;
/**
* Register a provider handler provided that will be invoked on when
* the specified path is matched along with the common HTTP methods of
* `GET`, `HEAD`, `POST`, `PUT`, `PATCH`, and `DELETE`.
*
* Optional init can be supplied to adjust other aspects of how the route will
* work.
*/
all<
Path extends string,
Params extends ParamsDictionary | undefined = RouteParameters<Path>,
QSSchema extends QueryStringSchema = QueryStringSchema,
QueryParams extends InferOutput<QSSchema> = QueryParamsDictionary,
BSchema extends BodySchema = BodySchema,
RequestBody = InferOutput<BSchema>,
ResSchema extends BodySchema = BodySchema,
ResponseBody = InferOutput<ResSchema>,
>(
path: Path,
handler: RouteHandler<
Env,
Params,
QSSchema,
QueryParams,
BSchema,
RequestBody,
ResSchema,
ResponseBody
>,
init?: RouteInit<QSSchema, BSchema, ResSchema>,
): Removeable;
all<Path extends string>(
pathOrDescriptor:
| Path
| RouteDescriptor<Path>,
handlerOrInit?:
| RouteHandler<Env>
| RouteInitWithHandler<Env>
| undefined,
init?: RouteInit<QueryStringSchema, BodySchema, BodySchema>,