-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
191 lines (171 loc) · 4.19 KB
/
utils.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
// Copyright 2022-latest the httpland authors. All rights reserved. MIT license.
// This module is browser compatible.
import {
concatPath,
head,
isIterable,
isOk,
partition,
prop,
Result,
unsafe,
} from "./deps.ts";
import {
PathnameRoutes,
URLPatternRoute,
URLRouteHandler,
URLRoutes,
} from "./types.ts";
/** Nested URL pathname convertor.
* It provides a hierarchy of routing tables.
* You can define a tree structure with a depth of 1. To nest more, combine this.
*
* ```ts
* import {
* nest,
* URLRouter,
* } from "https://deno.land/x/http_router@$VERSION/mod.ts";
*
* const routeHandler = () => new Response();
* const api = nest("/api", {
* ...nest("v1", {
* users: routeHandler,
* products: routeHandler,
* }),
* });
* const handler = URLRouter({ ...api, "/": routeHandler });
* ```
*/
export function nest(
root: string,
routes: PathnameRoutes,
): PathnameRoutes {
return Object.entries(routes).reduceRight((acc, [path, handler]) => {
return { ...acc, [concatPath(root, path)]: handler };
}, {} as PathnameRoutes);
}
/** Returns all elements in the given value that produce a intersect value using the given selector. */
export function intersectBy<T>(
value: Iterable<T>,
selector: (current: T, prev: T) => boolean,
): T[] {
const selectedValues: T[] = [];
const ret: T[] = [];
for (const element of value) {
const has = selectedValues.some((v) => selector(element, v));
if (has) {
if (!ret.find((v) => selector(element, v))) {
ret.push(element);
}
} else {
selectedValues.push(element);
}
}
return ret;
}
/** Check `URLPattern` object equality. */
export function equalsURLPattern(left: URLPattern, right: URLPattern): boolean {
const props: readonly (keyof URLPattern)[] = [
"exec",
"hash",
"hostname",
"password",
"pathname",
"port",
"protocol",
"search",
"test",
"username",
] as const;
return props.every((prop) => equalsProp(prop, left, right));
}
function equalsProp<T extends PropertyKey, U extends { [k in T]: unknown }>(
prop: T,
left: U,
right: U,
): boolean {
return left[prop] === right[prop];
}
/** Validate {@link URLRoutes}.
*
* ```ts
* import {
* URLRouter,
* URLRoutes,
* validateURLRoutes,
* } from "https://deno.land/x/http_router@$VERSION/mod.ts";
*
* const routes: URLRoutes = {
* "?": () => new Response(),
* };
* const result = validateURLRoutes(routes);
*
* if (result !== true) {
* // do something
* }
*
* const handler = URLRouter(routes);
* ```
*/
export function validateURLRoutes(
routes: URLRoutes,
): true | AggregateError | TypeError {
const iterable = urlPatternRouteFrom(routes);
const entries = Array.from(iterable).map(route2URLPatternRoute);
const [okResults, errorResults] = partition(entries, isOk);
if (errorResults.length) {
const errors = errorResults.map(prop("value"));
return AggregateError(errors, "Invalid URL pattern.");
}
const urlPatterns = okResults.map(prop("value")).map<URLPattern>(head);
const intersections = intersectBy(urlPatterns, equalsURLPattern);
if (intersections.length) {
return new TypeError(
`Duplicate same meaning routes. ${inspect(intersections)}`,
);
}
return true;
}
export function urlPatternRouteFrom(
routes: URLRoutes,
): Iterable<URLPatternRoute> {
return isIterable(routes)
? routes
: Object.entries(routes).map(([pathname, handler]) =>
[{ pathname }, handler] as const
);
}
export function route2URLPatternRoute(
route: URLPatternRoute,
): Result<[URLPattern, URLRouteHandler], TypeError> {
return unsafe(
() => [new URLPattern(route[0]), route[1]],
);
}
export function inspectURLPattern(value: URLPattern): string {
const {
hash,
hostname,
protocol,
username,
password,
port,
pathname,
search,
} = value;
return `URLPattern {
protocol: "${protocol}",
username: "${username}",
password: "${password}",
hostname: "${hostname}",
port: "${port}",
pathname: "${pathname}",
search: "${search}",
hash: "${hash}"
}`;
}
export function inspect(value: URLPattern[]): string {
return `[
${value.map(inspectURLPattern).join(", \n ")}
]`;
}