-
-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathindex.ts
More file actions
680 lines (569 loc) · 16.2 KB
/
Copy pathindex.ts
File metadata and controls
680 lines (569 loc) · 16.2 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
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
const DEFAULT_DELIMITER = "/";
const NOOP_VALUE = (value: string) => value;
const ID_START = /^[$_\p{ID_Start}]$/u;
const ID_CONTINUE = /^[$\u200c\u200d\p{ID_Continue}]$/u;
const ID = /^[$_\p{ID_Start}][$\u200c\u200d\p{ID_Continue}]*$/u;
/**
* Encode a string into another string.
*/
export type Encode = (value: string) => string;
/**
* Decode a string into another string.
*/
export type Decode = (value: string) => string;
export interface ParseOptions {
/**
* A function for encoding input strings.
*/
encodePath?: Encode;
}
export interface PathToRegexpOptions {
/**
* Matches the path completely without trailing characters. (default: `true`)
*/
end?: boolean;
/**
* Allows optional trailing delimiter to match. (default: `true`)
*/
trailing?: boolean;
/**
* Match will be case sensitive. (default: `false`)
*/
sensitive?: boolean;
/**
* The default delimiter for segments. (default: `'/'`)
*/
delimiter?: string;
}
export interface MatchOptions extends PathToRegexpOptions {
/**
* Function for decoding strings for params, or `false` to disable entirely. (default: `decodeURIComponent`)
*/
decode?: Decode | false;
}
export interface CompileOptions {
/**
* Function for encoding input strings for output into the path, or `false` to disable entirely. (default: `encodeURIComponent`)
*/
encode?: Encode | false;
/**
* The default delimiter for segments. (default: `'/'`)
*/
delimiter?: string;
}
/**
* Escape text for stringify to path.
*/
function escapeText(str: string) {
return str.replace(/[{}()\[\]+?!:*\\]/g, "\\$&");
}
/**
* Escape a regular expression string.
*/
function escape(str: string) {
return str.replace(/[.+*?^${}()[\]|/\\]/g, "\\$&");
}
/**
* Plain text.
*/
export interface Text {
type: "text";
value: string;
}
/**
* A parameter designed to match arbitrary text within a segment.
*/
export interface Parameter {
type: "param";
name: string;
}
/**
* A wildcard parameter designed to match multiple segments.
*/
export interface Wildcard {
type: "wildcard";
name: string;
}
/**
* A set of possible tokens to expand when matching.
*/
export interface Group {
type: "group";
tokens: Token[];
}
/**
* A token that corresponds with a regexp capture.
*/
export type Key = Parameter | Wildcard;
/**
* A sequence of `path-to-regexp` keys that match capturing groups.
*/
export type Keys = Array<Key>;
/**
* A sequence of path match characters.
*/
export type Token = Text | Parameter | Wildcard | Group;
/**
* Tokenized path instance.
*/
export class TokenData {
constructor(
public readonly tokens: Token[],
public readonly originalPath?: string,
) {}
}
/**
* ParseError is thrown when there is an error processing the path.
*/
export class PathError extends TypeError {
constructor(
message: string,
public readonly originalPath: string | undefined,
) {
let text = message;
if (originalPath) text += `: ${originalPath}`;
text += `; visit https://git.new/pathToRegexpError for info`;
super(text);
}
}
/**
* Parse a string for the raw tokens.
*/
export function parse(str: string, options: ParseOptions = {}): TokenData {
const { encodePath = NOOP_VALUE } = options;
const chars = [...str];
let index = 0;
function consumeUntil(end: string): Token[] {
const output: Token[] = [];
let path = "";
function writePath() {
if (!path) return;
output.push({
type: "text",
value: encodePath(path),
});
path = "";
}
while (index < chars.length) {
const value = chars[index++];
if (value === end) {
writePath();
return output;
}
if (value === "\\") {
if (index === chars.length) {
throw new PathError(`Unexpected end after \\ at index ${index}`, str);
}
path += chars[index++];
continue;
}
if (value === ":" || value === "*") {
const type = value === ":" ? "param" : "wildcard";
let name = "";
if (ID_START.test(chars[index])) {
do {
name += chars[index++];
} while (ID_CONTINUE.test(chars[index]));
} else if (chars[index] === '"') {
let quoteStart = index;
while (index < chars.length) {
if (chars[++index] === '"') {
index++;
quoteStart = 0;
break;
}
// Increment over escape characters.
if (chars[index] === "\\") index++;
name += chars[index];
}
if (quoteStart) {
throw new PathError(
`Unterminated quote at index ${quoteStart}`,
str,
);
}
}
if (!name) {
throw new PathError(`Missing parameter name at index ${index}`, str);
}
writePath();
output.push({ type, name });
continue;
}
if (value === "{") {
writePath();
output.push({
type: "group",
tokens: consumeUntil("}"),
});
continue;
}
if (
value === "}" ||
value === "(" ||
value === ")" ||
value === "[" ||
value === "]" ||
value === "+" ||
value === "?" ||
value === "!"
) {
throw new PathError(`Unexpected ${value} at index ${index - 1}`, str);
}
path += value;
}
if (end) {
throw new PathError(
`Unexpected end at index ${index}, expected ${end}`,
str,
);
}
writePath();
return output;
}
return new TokenData(consumeUntil(""), str);
}
/**
* Compile a string to a template function for the path.
*/
export function compile<P extends ParamData = ParamData>(
path: Path,
options: CompileOptions & ParseOptions = {},
) {
const { encode = encodeURIComponent, delimiter = DEFAULT_DELIMITER } =
options;
const data = typeof path === "object" ? path : parse(path, options);
const fn = tokensToFunction(data.tokens, delimiter, encode);
return function path(params: P = {} as P) {
const missing: string[] = [];
const path = fn(params, missing);
if (missing.length) {
throw new TypeError(`Missing parameters: ${missing.join(", ")}`);
}
return path;
};
}
export type ParamData = Partial<Record<string, string | string[]>>;
export type PathFunction<P extends ParamData> = (data?: P) => string;
/**
* Internal path builder function.
*/
type TokenEncoder = (data: ParamData, missing: string[]) => string;
function tokensToFunction(
tokens: Token[],
delimiter: string,
encode: Encode | false,
): TokenEncoder {
const encoders = tokens.map((token) =>
tokenToFunction(token, delimiter, encode),
);
return (data: ParamData, missing: string[]) => {
let result = "";
for (const encoder of encoders) {
result += encoder(data, missing);
}
return result;
};
}
/**
* Convert a single token into a path building function.
*/
function tokenToFunction(
token: Token,
delimiter: string,
encode: Encode | false,
): TokenEncoder {
if (token.type === "text") return () => token.value;
if (token.type === "group") {
const fn = tokensToFunction(token.tokens, delimiter, encode);
return (data, missing) => {
const len = missing.length;
const value = fn(data, missing);
if (missing.length === len) return value;
missing.length = len; // Reset optional group.
return "";
};
}
const encodeValue = encode || NOOP_VALUE;
if (token.type === "wildcard" && encode !== false) {
return (data, missing) => {
const value = data[token.name];
if (value == null) {
missing.push(token.name);
return "";
}
if (!Array.isArray(value) || value.length === 0) {
throw new TypeError(`Expected "${token.name}" to be a non-empty array`);
}
let result = "";
for (let i = 0; i < value.length; i++) {
if (typeof value[i] !== "string") {
throw new TypeError(`Expected "${token.name}/${i}" to be a string`);
}
if (i > 0) result += delimiter;
result += encodeValue(value[i]);
}
return result;
};
}
return (data, missing) => {
const value = data[token.name];
if (value == null) {
missing.push(token.name);
return "";
}
if (typeof value !== "string" || value.length === 0) {
throw new TypeError(`Expected "${token.name}" to be a non-empty string`);
}
return encodeValue(value);
};
}
/**
* A match result contains data about the path match.
*/
export interface MatchResult<P extends ParamData> {
path: string;
params: P;
}
/**
* A match is either `false` (no match) or a match result.
*/
export type Match<P extends ParamData> = false | MatchResult<P>;
/**
* The match function takes a string and returns whether it matched the path.
*/
export type MatchFunction<P extends ParamData> = (path: string) => Match<P>;
/**
* Supported path types.
*/
export type Path = string | TokenData;
/**
* Transform a path into a match function.
*/
export function match<P extends ParamData>(
path: Path | Path[],
options: MatchOptions & ParseOptions = {},
): MatchFunction<P> {
const { decode = decodeURIComponent, delimiter = DEFAULT_DELIMITER } =
options;
const { regexp, keys } = pathToRegexp(path, options);
const decoders = keys.map((key) => {
if (decode === false) return NOOP_VALUE;
if (key.type === "param") return decode;
return (value: string) => value.split(delimiter).map(decode);
});
return function match(input: string) {
const m = regexp.exec(input);
if (!m) return false;
const path = m[0];
const params = Object.create(null);
for (let i = 1; i < m.length; i++) {
if (m[i] === undefined) continue;
const key = keys[i - 1];
const decoder = decoders[i - 1];
params[key.name] = decoder(m[i]);
}
return { path, params };
};
}
/**
* Transform a path into a regular expression and capture keys.
*/
export function pathToRegexp(
path: Path | Path[],
options: PathToRegexpOptions & ParseOptions = {},
) {
const {
delimiter = DEFAULT_DELIMITER,
end = true,
sensitive = false,
trailing = true,
} = options;
const keys: Keys = [];
let source = "";
let combinations = 0;
function process(path: Path | Path[]) {
if (Array.isArray(path)) {
for (const p of path) process(p);
return;
}
const data = typeof path === "object" ? path : parse(path, options);
flatten(data.tokens, 0, [], (tokens) => {
if (combinations >= 256) {
throw new PathError("Too many path combinations", data.originalPath);
}
if (combinations > 0) source += "|";
source += toRegExpSource(tokens, delimiter, keys, data.originalPath);
combinations++;
});
}
process(path);
let pattern = `^(?:${source})`;
if (trailing) pattern += "(?:" + escape(delimiter) + "$)?";
pattern += end ? "$" : "(?=" + escape(delimiter) + "|$)";
return { regexp: new RegExp(pattern, sensitive ? "" : "i"), keys };
}
/**
* Generate a flat list of sequence tokens from the given tokens.
*/
function flatten(
tokens: Token[],
index: number,
result: Exclude<Token, Group>[],
callback: (result: Exclude<Token, Group>[]) => void,
): void {
while (index < tokens.length) {
const token = tokens[index++];
if (token.type === "group") {
const len = result.length;
flatten(token.tokens, 0, result, (seq) =>
flatten(tokens, index, seq, callback),
);
result.length = len;
continue;
}
result.push(token);
}
callback(result);
}
/**
* Transform a flat sequence of tokens into a regular expression.
*/
function toRegExpSource(
tokens: Exclude<Token, Group>[],
delimiter: string,
keys: Keys,
originalPath: string | undefined,
): string {
let result = "";
let backtrack = "";
let wildcardBacktrack = "";
let prevCaptureType: 0 | 1 | 2 = 0;
let hasSegmentCapture = 0;
let index = 0;
function hasInSegment(index: number, type: Token["type"]) {
while (index < tokens.length) {
const token = tokens[index++];
if (token.type === type) return true;
if (token.type === "text") {
if (token.value.includes(delimiter)) break;
}
}
return false;
}
function peekText(index: number) {
let result = "";
while (index < tokens.length) {
const token = tokens[index++];
if (token.type !== "text") break;
result += token.value;
}
return result;
}
while (index < tokens.length) {
const token = tokens[index++];
if (token.type === "text") {
result += escape(token.value);
backtrack += token.value;
if (prevCaptureType === 2) wildcardBacktrack += token.value;
if (token.value.includes(delimiter)) hasSegmentCapture = 0;
continue;
}
if (token.type === "param" || token.type === "wildcard") {
if (prevCaptureType && !backtrack) {
throw new PathError(
`Missing text before "${token.name}" ${token.type}`,
originalPath,
);
}
if (token.type === "param") {
result +=
hasSegmentCapture & 2 // Seen wildcard in segment.
? `(${negate(delimiter, backtrack)}+)`
: hasInSegment(index, "wildcard") // See wildcard later in segment.
? `(${negate(delimiter, peekText(index))}+)`
: hasSegmentCapture & 1 // Seen parameter in segment.
? `(${negate(delimiter, backtrack)}+|${escape(backtrack)})`
: `(${negate(delimiter, "")}+)`;
hasSegmentCapture |= prevCaptureType = 1;
} else {
result +=
hasSegmentCapture & 2 // Seen wildcard in segment.
? `(${negate(backtrack, "")}+)`
: wildcardBacktrack // No capture in segment, seen wildcard in path.
? `(${negate(wildcardBacktrack, "")}+|${negate(delimiter, "")}+)`
: `([^]+)`;
wildcardBacktrack = "";
hasSegmentCapture |= prevCaptureType = 2;
}
keys.push(token);
backtrack = "";
continue;
}
throw new TypeError(`Unknown token type: ${(token as any).type}`);
}
return result;
}
/**
* Block backtracking on previous text/delimiter.
*/
function negate(a: string, b: string): string {
if (b.length > a.length) return negate(b, a); // Longest string first.
if (a === b) b = ""; // Cleaner regex strings, no duplication.
if (b.length > 1) return `(?:(?!${escape(a)}|${escape(b)})[^])`;
if (a.length > 1) return `(?:(?!${escape(a)})[^${escape(b)}])`;
return `[^${escape(a + b)}]`;
}
/**
* Stringify an array of tokens into a path string.
*/
function stringifyTokens(tokens: Token[], index: number): string {
let value = "";
while (index < tokens.length) {
const token = tokens[index++];
if (token.type === "text") {
value += escapeText(token.value);
continue;
}
if (token.type === "group") {
value += "{" + stringifyTokens(token.tokens, 0) + "}";
continue;
}
if (token.type === "param") {
value += ":" + stringifyName(token.name, tokens[index]);
continue;
}
if (token.type === "wildcard") {
value += "*" + stringifyName(token.name, tokens[index]);
continue;
}
throw new TypeError(`Unknown token type: ${(token as any).type}`);
}
return value;
}
/**
* Stringify token data into a path string.
*/
export function stringify(data: TokenData): string {
return stringifyTokens(data.tokens, 0);
}
/**
* Wrap a parameter name in quotes, escaping only the characters the parser
* treats specially inside a quoted name (`"` and `\`). `JSON.stringify` can't
* be used here because it emits escapes like `\n` that the parser reads back as
* the literal character `n`, so names with control characters wouldn't survive
* a `parse` -> `stringify` -> `parse` round trip.
*/
function quoteName(name: string): string {
return `"${name.replace(/["\\]/g, "\\$&")}"`;
}
/**
* Stringify a parameter name, escaping when it cannot be emitted directly.
*/
function stringifyName(name: string, next: Token | undefined): string {
if (!ID.test(name)) return quoteName(name);
if (next?.type === "text" && ID_CONTINUE.test(next.value[0])) {
return quoteName(name);
}
return name;
}