-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader_utils.ts
36 lines (34 loc) · 1.05 KB
/
header_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
// Copyright 2018-2024 the oak authors. All rights reserved. MIT license.
/** With a provided attribute pattern, return a RegExp which will match and
* capture in the first group the value of the attribute from a header value. */
export function toParamRegExp(
attributePattern: string,
flags?: string,
): RegExp {
// deno-fmt-ignore
return new RegExp(
`(?:^|;)\\s*${attributePattern}\\s*=\\s*` +
`(` +
`[^";\\s][^;\\s]*` +
`|` +
`"(?:[^"\\\\]|\\\\"?)+"?` +
`)`,
flags
);
}
/** Unquotes attribute values that might be pass as part of a header. */
export function unquote(value: string): string {
if (value.startsWith(`"`)) {
const parts = value.slice(1).split(`\\"`);
for (let i = 0; i < parts.length; ++i) {
const quoteIndex = parts[i].indexOf(`"`);
if (quoteIndex !== -1) {
parts[i] = parts[i].slice(0, quoteIndex);
parts.length = i + 1; // Truncates and stops the loop
}
parts[i] = parts[i].replace(/\\(.)/g, "$1");
}
value = parts.join(`"`);
}
return value;
}