-
Notifications
You must be signed in to change notification settings - Fork 0
/
rt.ts
402 lines (360 loc) · 9.23 KB
/
rt.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
/**
* createRouter creates a new router.
*/
export function createRouter<T>(
fn?: (r: Router<T>) => Router<T>,
state?: RouterState<T>,
): Router<T> {
const router = new Router<T>(state);
if (fn) {
return fn(router);
}
return router;
}
/**
* METHODS is the list of HTTP methods.
*/
export const METHODS = [
"CONNECT",
"DELETE",
"GET",
"HEAD",
"OPTIONS",
"PATCH",
"POST",
"PUT",
"TRACE",
] as const;
/**
* Method is a type which represents an HTTP method.
*/
export type Method = typeof METHODS[number];
/**
* Match is a type which matches a Request object.
*/
export type Match =
| ((r: RouterRequest) => boolean | Promise<boolean>)
| {
/**
* pattern is the URL pattern to match on.
*/
pattern?: URLPattern;
/**
* method is the HTTP method to match on.
*/
method?: Method;
};
/**
* Handle is called to handle a request.
*/
export interface Handle<TParam extends string = string, TState = unknown> {
(ctx: RouterContext<TParam, TState>): Promise<Response> | Response;
}
/**
* ErrorHandle is called to handle an error.
*/
export interface ErrorHandle {
(error: Error): Promise<Response> | Response;
}
/**
* DefaultHandle is called to handle a request when no routes are matched.
*/
type DefaultHandle<TState> = Handle<never, TState>;
/**
* Route represents a the pairing of a matcher and a handler.
*/
export interface Route<TParam extends string = string, TState = unknown> {
/**
* match is called to match a request.
*/
match?: Match;
/**
* handle is called to handle a request.
*/
handle: Handle<TParam, TState>;
}
/**
* Routes is a sequence of routes.
*/
export type Routes<TParam extends string = string, TState = unknown> = Array<
Route<TParam, TState>
>;
/**
* RouterContext is the object passed to a router.
*/
export interface RouterContext<TParam extends string, TState>
extends RouterRequest {
/**
* params is a map of matched parameters from the URL pattern.
*/
params: { [key in TParam]: string };
/**
* state is the state passed to the router. Modify this to pass data between
* routes.
*/
state: TState;
/**
* next executes the next matched route in the sequence. If no more routes are
* matched, the default handler is called.
*/
next: () => Promise<Response>;
}
/**
* RouterRequest is the object passed to a router.
*/
interface RouterRequest {
/**
* request is the original request object.
*/
request: Request;
/**
* url is the parsed fully qualified URL of the request.
*/
url: URL;
}
/**
* RouterState is the state passed to a router.
*/
type RouterState<T> = (r: RouterRequest) => T;
/**
* RouterInterface is the interface for a router.
*/
type RouterInterface<T> = Record<
Lowercase<Method>,
((pattern: string, handle: Handle) => Router<T>)
>;
/**
* Router is an HTTP router based on the `URLPattern` API.
*/
export class Router<T> implements RouterInterface<T> {
public routes: Routes<string, T> = [];
public defaultHandle?: DefaultHandle<T>;
public errorHandle?: ErrorHandle;
public constructor(public readonly state?: RouterState<T>) {}
/**
* fetch invokes the router for the given request.
*/
public async fetch(
request: Request,
url: URL = new URL(request.url),
state: T =
(this.state !== undefined ? this.state({ request, url }) : {}) as T,
i = 0,
): Promise<Response> {
try {
while (i < this.routes.length) {
const route = this.routes[i];
const matchedMethod = route.match === undefined ||
typeof route.match !== "function" &&
(route.match.method === undefined ||
route.match.method === request.method);
if (!matchedMethod) {
i++;
continue;
}
const matchedFn = typeof route.match === "function" &&
await route.match({ request, url });
const matchedPattern = route.match !== undefined &&
typeof route.match !== "function" &&
route.match.pattern !== undefined &&
route.match.pattern.exec(request.url);
let params: Record<string, string> = {};
if (matchedPattern) {
params = matchedPattern?.pathname
? Object.entries(matchedPattern.pathname.groups)
.reduce(
(groups, [key, value]) => {
if (value !== undefined) {
groups[key] = value;
}
return groups;
},
{} as { [key: string]: string },
)
: {};
}
// If the route matches, call it and return the response.
if (route.match === undefined || matchedFn || matchedPattern) {
return await route.handle({
request,
url,
params,
state,
next: () => this.fetch(request, url, state, i + 1),
});
}
i++;
}
if (this.defaultHandle !== undefined) {
return await this.defaultHandle({
request,
url,
params: {},
state,
next: () => {
throw new Error("next() called from default handler");
},
});
}
} catch (error) {
if (this.errorHandle !== undefined) {
return await this.errorHandle(error);
}
}
return new Response("Internal Server Error", { status: 500 });
}
/**
* with appends a route to the router.
*/
public with<TParam extends string>(route: Route<TParam, T>): this;
public with<TParam extends string>(
match: Match,
handle: Handle<TParam, T>,
): this;
public with<TParam extends string>(
routeOrMatch: Match | Route<TParam, T>,
handle?: Handle<TParam, T>,
): this {
if (handle === undefined && "handle" in routeOrMatch) {
this.routes.push(routeOrMatch);
} else if (handle !== undefined && !("handle" in routeOrMatch)) {
this.routes.push({ match: routeOrMatch, handle });
} else {
throw new Error("Invalid arguments");
}
return this;
}
/**
* use appends a sequence of routers to the router.
*/
public use(data: Routes | Router<T>): this {
if (data instanceof Router) {
this.routes.push(...data.routes);
} else {
this.routes.push(...data);
}
return this;
}
/**
* default sets the router's default handler.
*/
public default(handle: DefaultHandle<T> | undefined): this {
this.defaultHandle = handle;
return this;
}
/**
* error sets the router's error handler.
*/
public error(handle: ErrorHandle | undefined): this {
this.errorHandle = handle;
return this;
}
/**
* connect appends a router for the CONNECT method to the router.
*/
public connect<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "CONNECT",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* delete appends a router for the DELETE method to the router.
*/
public delete<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "DELETE",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* get appends a router for the GET method to the router.
*/
public get<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "GET",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* head appends a router for the HEAD method to the router.
*/
public head<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "HEAD",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* options appends a router for the OPTIONS method to the router.
*/
public options<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "OPTIONS",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* patch appends a router for the PATCH method to the router.
*/
public patch<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "PATCH",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* post appends a router for the POST method to the router.
*/
public post<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "POST",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* put appends a router for the PUT method to the router.
*/
public put<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "PUT",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
/**
* trace appends a router for the TRACE method to the router.
*/
public trace<TParam extends string>(
pattern: string,
handle: Handle<TParam, T>,
): this {
return this.with({
method: "TRACE",
pattern: new URLPattern({ pathname: pattern }),
}, handle);
}
}