mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 23:24:07 +00:00
84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
import { redactSensitiveText } from "../logging/redact.js";
|
|
|
|
function hasRawExplicitPort(raw: string): boolean {
|
|
const authority = raw.replace(/^[a-z][a-z0-9+.-]*:\/\//i, "").split(/[/?#]/, 1)[0] ?? "";
|
|
const hostPort = authority.includes("@")
|
|
? authority.slice(authority.lastIndexOf("@") + 1)
|
|
: authority;
|
|
|
|
if (hostPort.startsWith("[")) {
|
|
return /^\[[^\]]+\]:\d+$/.test(hostPort);
|
|
}
|
|
|
|
return /:\d+$/.test(hostPort);
|
|
}
|
|
|
|
export function parseBrowserHttpUrl(raw: string, label: string) {
|
|
const trimmed = raw.trim();
|
|
const parsed = new URL(trimmed);
|
|
const allowed = ["http:", "https:", "ws:", "wss:"];
|
|
if (!allowed.includes(parsed.protocol)) {
|
|
throw new Error(`${label} must be http(s) or ws(s), got: ${parsed.protocol.replace(":", "")}`);
|
|
}
|
|
|
|
const isSecure = parsed.protocol === "https:" || parsed.protocol === "wss:";
|
|
const hasExplicitPort = hasRawExplicitPort(trimmed);
|
|
const port = parsed.port ? Number.parseInt(parsed.port, 10) : isSecure ? 443 : 80;
|
|
|
|
if (hasExplicitPort && !parsed.port) {
|
|
const defaultPort = isSecure ? 443 : 80;
|
|
if (port !== defaultPort) {
|
|
throw new Error(`${label} has invalid port: ${parsed.port}`);
|
|
}
|
|
}
|
|
if (Number.isNaN(port) || port <= 0 || port > 65_535) {
|
|
throw new Error(`${label} has invalid port: ${parsed.port}`);
|
|
}
|
|
|
|
const normalized = parsed.toString().replace(/\/$/, "");
|
|
let normalizedWithPort: string;
|
|
if (hasExplicitPort && !parsed.port) {
|
|
const proto = parsed.protocol + "//";
|
|
const rest = normalized.slice(proto.length);
|
|
const atIdx = rest.indexOf("@");
|
|
const hostStart = atIdx >= 0 ? atIdx + 1 : 0;
|
|
const hostPart = rest.slice(hostStart);
|
|
const hostLen = hostPart.startsWith("[")
|
|
? hostPart.indexOf("]") + 1
|
|
: (() => {
|
|
const idx = hostPart.search(/[:/]/);
|
|
return idx < 0 ? hostPart.length : idx;
|
|
})();
|
|
const insertAt = hostStart + hostLen;
|
|
normalizedWithPort = proto + rest.slice(0, insertAt) + ":" + port + rest.slice(insertAt);
|
|
} else {
|
|
normalizedWithPort = normalized;
|
|
}
|
|
|
|
return {
|
|
parsed,
|
|
port,
|
|
hasExplicitPort,
|
|
normalized,
|
|
normalizedWithPort,
|
|
};
|
|
}
|
|
|
|
export function redactCdpUrl(cdpUrl: string | null | undefined): string | null | undefined {
|
|
if (typeof cdpUrl !== "string") {
|
|
return cdpUrl;
|
|
}
|
|
const trimmed = cdpUrl.trim();
|
|
if (!trimmed) {
|
|
return trimmed;
|
|
}
|
|
try {
|
|
const parsed = new URL(trimmed);
|
|
parsed.username = "";
|
|
parsed.password = "";
|
|
return redactSensitiveText(parsed.toString().replace(/\/$/, ""));
|
|
} catch {
|
|
return redactSensitiveText(trimmed);
|
|
}
|
|
}
|