239 lines
6.8 KiB
JavaScript
239 lines
6.8 KiB
JavaScript
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var url_exports = {};
|
|
__export(url_exports, {
|
|
checkOptionalParameter: () => checkOptionalParameter,
|
|
decodeURIComponent_: () => decodeURIComponent_,
|
|
getPath: () => getPath,
|
|
getPathNoStrict: () => getPathNoStrict,
|
|
getPattern: () => getPattern,
|
|
getQueryParam: () => getQueryParam,
|
|
getQueryParams: () => getQueryParams,
|
|
getQueryStrings: () => getQueryStrings,
|
|
mergePath: () => mergePath,
|
|
splitPath: () => splitPath,
|
|
splitRoutingPath: () => splitRoutingPath
|
|
});
|
|
module.exports = __toCommonJS(url_exports);
|
|
const splitPath = (path) => {
|
|
const paths = path.split("/");
|
|
if (paths[0] === "") {
|
|
paths.shift();
|
|
}
|
|
return paths;
|
|
};
|
|
const splitRoutingPath = (routePath) => {
|
|
const { groups, path } = extractGroupsFromPath(routePath);
|
|
const paths = splitPath(path);
|
|
return replaceGroupMarks(paths, groups);
|
|
};
|
|
const extractGroupsFromPath = (path) => {
|
|
const groups = [];
|
|
path = path.replace(/\{[^}]+\}/g, (match, index) => {
|
|
const mark = `@${index}`;
|
|
groups.push([mark, match]);
|
|
return mark;
|
|
});
|
|
return { groups, path };
|
|
};
|
|
const replaceGroupMarks = (paths, groups) => {
|
|
for (let i = groups.length - 1; i >= 0; i--) {
|
|
const [mark] = groups[i];
|
|
for (let j = paths.length - 1; j >= 0; j--) {
|
|
if (paths[j].includes(mark)) {
|
|
paths[j] = paths[j].replace(mark, groups[i][1]);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return paths;
|
|
};
|
|
const patternCache = {};
|
|
const getPattern = (label) => {
|
|
if (label === "*") {
|
|
return "*";
|
|
}
|
|
const match = label.match(/^\:([^\{\}]+)(?:\{(.+)\})?$/);
|
|
if (match) {
|
|
if (!patternCache[label]) {
|
|
if (match[2]) {
|
|
patternCache[label] = [label, match[1], new RegExp("^" + match[2] + "$")];
|
|
} else {
|
|
patternCache[label] = [label, match[1], true];
|
|
}
|
|
}
|
|
return patternCache[label];
|
|
}
|
|
return null;
|
|
};
|
|
const getPath = (request) => {
|
|
const url = request.url;
|
|
const queryIndex = url.indexOf("?", 8);
|
|
return url.slice(url.indexOf("/", 8), queryIndex === -1 ? void 0 : queryIndex);
|
|
};
|
|
const getQueryStrings = (url) => {
|
|
const queryIndex = url.indexOf("?", 8);
|
|
return queryIndex === -1 ? "" : "?" + url.slice(queryIndex + 1);
|
|
};
|
|
const getPathNoStrict = (request) => {
|
|
const result = getPath(request);
|
|
return result.length > 1 && result[result.length - 1] === "/" ? result.slice(0, -1) : result;
|
|
};
|
|
const mergePath = (...paths) => {
|
|
let p = "";
|
|
let endsWithSlash = false;
|
|
for (let path of paths) {
|
|
if (p[p.length - 1] === "/") {
|
|
p = p.slice(0, -1);
|
|
endsWithSlash = true;
|
|
}
|
|
if (path[0] !== "/") {
|
|
path = `/${path}`;
|
|
}
|
|
if (path === "/" && endsWithSlash) {
|
|
p = `${p}/`;
|
|
} else if (path !== "/") {
|
|
p = `${p}${path}`;
|
|
}
|
|
if (path === "/" && p === "") {
|
|
p = "/";
|
|
}
|
|
}
|
|
return p;
|
|
};
|
|
const checkOptionalParameter = (path) => {
|
|
if (!path.match(/\:.+\?$/)) {
|
|
return null;
|
|
}
|
|
const segments = path.split("/");
|
|
const results = [];
|
|
let basePath = "";
|
|
segments.forEach((segment) => {
|
|
if (segment !== "" && !/\:/.test(segment)) {
|
|
basePath += "/" + segment;
|
|
} else if (/\:/.test(segment)) {
|
|
if (/\?/.test(segment)) {
|
|
if (results.length === 0 && basePath === "") {
|
|
results.push("/");
|
|
} else {
|
|
results.push(basePath);
|
|
}
|
|
const optionalSegment = segment.replace("?", "");
|
|
basePath += "/" + optionalSegment;
|
|
results.push(basePath);
|
|
} else {
|
|
basePath += "/" + segment;
|
|
}
|
|
}
|
|
});
|
|
return results.filter((v, i, a) => a.indexOf(v) === i);
|
|
};
|
|
const _decodeURI = (value) => {
|
|
if (!/[%+]/.test(value)) {
|
|
return value;
|
|
}
|
|
if (value.indexOf("+") !== -1) {
|
|
value = value.replace(/\+/g, " ");
|
|
}
|
|
return /%/.test(value) ? decodeURIComponent_(value) : value;
|
|
};
|
|
const _getQueryParam = (url, key, multiple) => {
|
|
let encoded;
|
|
if (!multiple && key && !/[%+]/.test(key)) {
|
|
let keyIndex2 = url.indexOf(`?${key}`, 8);
|
|
if (keyIndex2 === -1) {
|
|
keyIndex2 = url.indexOf(`&${key}`, 8);
|
|
}
|
|
while (keyIndex2 !== -1) {
|
|
const trailingKeyCode = url.charCodeAt(keyIndex2 + key.length + 1);
|
|
if (trailingKeyCode === 61) {
|
|
const valueIndex = keyIndex2 + key.length + 2;
|
|
const endIndex = url.indexOf("&", valueIndex);
|
|
return _decodeURI(url.slice(valueIndex, endIndex === -1 ? void 0 : endIndex));
|
|
} else if (trailingKeyCode == 38 || isNaN(trailingKeyCode)) {
|
|
return "";
|
|
}
|
|
keyIndex2 = url.indexOf(`&${key}`, keyIndex2 + 1);
|
|
}
|
|
encoded = /[%+]/.test(url);
|
|
if (!encoded) {
|
|
return void 0;
|
|
}
|
|
}
|
|
const results = {};
|
|
encoded ??= /[%+]/.test(url);
|
|
let keyIndex = url.indexOf("?", 8);
|
|
while (keyIndex !== -1) {
|
|
const nextKeyIndex = url.indexOf("&", keyIndex + 1);
|
|
let valueIndex = url.indexOf("=", keyIndex);
|
|
if (valueIndex > nextKeyIndex && nextKeyIndex !== -1) {
|
|
valueIndex = -1;
|
|
}
|
|
let name = url.slice(
|
|
keyIndex + 1,
|
|
valueIndex === -1 ? nextKeyIndex === -1 ? void 0 : nextKeyIndex : valueIndex
|
|
);
|
|
if (encoded) {
|
|
name = _decodeURI(name);
|
|
}
|
|
keyIndex = nextKeyIndex;
|
|
if (name === "") {
|
|
continue;
|
|
}
|
|
let value;
|
|
if (valueIndex === -1) {
|
|
value = "";
|
|
} else {
|
|
value = url.slice(valueIndex + 1, nextKeyIndex === -1 ? void 0 : nextKeyIndex);
|
|
if (encoded) {
|
|
value = _decodeURI(value);
|
|
}
|
|
}
|
|
if (multiple) {
|
|
if (!(results[name] && Array.isArray(results[name]))) {
|
|
results[name] = [];
|
|
}
|
|
;
|
|
results[name].push(value);
|
|
} else {
|
|
results[name] ??= value;
|
|
}
|
|
}
|
|
return key ? results[key] : results;
|
|
};
|
|
const getQueryParam = _getQueryParam;
|
|
const getQueryParams = (url, key) => {
|
|
return _getQueryParam(url, key, true);
|
|
};
|
|
const decodeURIComponent_ = decodeURIComponent;
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
checkOptionalParameter,
|
|
decodeURIComponent_,
|
|
getPath,
|
|
getPathNoStrict,
|
|
getPattern,
|
|
getQueryParam,
|
|
getQueryParams,
|
|
getQueryStrings,
|
|
mergePath,
|
|
splitPath,
|
|
splitRoutingPath
|
|
});
|