[Init] Initial commit - NetMesh terminal manager
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
This commit is contained in:
237
domain/sshDeepLink.ts
Normal file
237
domain/sshDeepLink.ts
Normal file
@@ -0,0 +1,237 @@
|
||||
import type { Host } from "./models";
|
||||
|
||||
export interface SshDeepLinkTarget {
|
||||
rawUrl: string;
|
||||
username?: string;
|
||||
password?: string;
|
||||
hostname: string;
|
||||
port?: number;
|
||||
}
|
||||
|
||||
export interface SshDeepLinkDraftOptions {
|
||||
id: string;
|
||||
now: number;
|
||||
}
|
||||
|
||||
const DEFAULT_SSH_PORT = 22;
|
||||
const URL_SCHEME_PATTERN = /^[a-z][a-z0-9+.-]*:/i;
|
||||
|
||||
const normalizeHostname = (value: string): string =>
|
||||
value.trim().replace(/^\[(.*)\]$/, "$1").toLowerCase();
|
||||
|
||||
const decodeUrlComponent = (value: string): string => {
|
||||
try {
|
||||
return decodeURIComponent(value);
|
||||
} catch {
|
||||
return value;
|
||||
}
|
||||
};
|
||||
|
||||
const getHostPort = (host: Host): number => host.port ?? DEFAULT_SSH_PORT;
|
||||
|
||||
const isPrimarySshHost = (host: Host): boolean =>
|
||||
host.protocol === undefined || host.protocol === "ssh";
|
||||
|
||||
export const parseSshDeepLink = (rawUrl: string): SshDeepLinkTarget | null => {
|
||||
if (typeof rawUrl !== "string") return null;
|
||||
const trimmed = rawUrl.trim();
|
||||
if (!trimmed) return null;
|
||||
|
||||
let parsed: URL;
|
||||
try {
|
||||
parsed = new URL(trimmed);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (parsed.protocol !== "ssh:") return null;
|
||||
|
||||
const hostname = normalizeHostname(parsed.hostname);
|
||||
if (!hostname) return null;
|
||||
|
||||
const portText = parsed.port;
|
||||
const port = portText ? Number(portText) : undefined;
|
||||
if (port !== undefined && (!Number.isInteger(port) || port < 1 || port > 65535)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const username = parsed.username
|
||||
? decodeUrlComponent(parsed.username).trim()
|
||||
: undefined;
|
||||
const password = parsed.password
|
||||
? decodeUrlComponent(parsed.password)
|
||||
: undefined;
|
||||
|
||||
return {
|
||||
rawUrl: trimmed,
|
||||
...(username ? { username } : {}),
|
||||
...(password ? { password } : {}),
|
||||
hostname,
|
||||
...(port ? { port } : {}),
|
||||
};
|
||||
};
|
||||
|
||||
export const shouldHandleSshDeepLink = (rawUrl: string, enabled: boolean): boolean =>
|
||||
enabled && parseSshDeepLink(rawUrl) !== null;
|
||||
|
||||
export const findSshDeepLinkHost = (
|
||||
hosts: Host[],
|
||||
target: SshDeepLinkTarget,
|
||||
): Host | null => {
|
||||
const targetHost = normalizeHostname(target.hostname);
|
||||
const targetPort = target.port ?? DEFAULT_SSH_PORT;
|
||||
const candidates = hosts.filter((host) => {
|
||||
if (!isPrimarySshHost(host)) return false;
|
||||
if (normalizeHostname(host.hostname) !== targetHost) return false;
|
||||
if (target.username && (host.username || "").trim() !== target.username) return false;
|
||||
if (getHostPort(host) !== targetPort) return false;
|
||||
return true;
|
||||
});
|
||||
|
||||
return candidates.length === 1 ? candidates[0] : null;
|
||||
};
|
||||
|
||||
export const buildSshDeepLinkConnectionHost = (host: Host): Host => ({
|
||||
...host,
|
||||
protocol: "ssh",
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
});
|
||||
|
||||
export const buildSshDeepLinkOpenHost = (
|
||||
hosts: Host[],
|
||||
target: SshDeepLinkTarget,
|
||||
options: SshDeepLinkDraftOptions,
|
||||
): Host => buildSshDeepLinkConnectionHost(
|
||||
findSshDeepLinkHost(hosts, target) ?? buildSshDeepLinkHostDraft(target, options),
|
||||
);
|
||||
|
||||
export const buildSshDeepLinkEphemeralHost = (
|
||||
target: SshDeepLinkTarget,
|
||||
options: SshDeepLinkDraftOptions,
|
||||
): Host => ({
|
||||
...buildSshDeepLinkHostDraft(target, options),
|
||||
...(target.password ? { password: target.password, authMethod: "password" as const } : {}),
|
||||
savePassword: false,
|
||||
ephemeral: true,
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
});
|
||||
|
||||
/**
|
||||
* Ephemeral host for a password deep link that uniquely matches a saved
|
||||
* vault host: keep the saved host's non-credential settings (proxy, jump
|
||||
* chain, charset, ...) but authenticate with exactly the URL credentials,
|
||||
* so vault identities and key references never override the one-time
|
||||
* password.
|
||||
*
|
||||
* Pass the group-resolved effective host (not the raw vault host): group
|
||||
* defaults must already be materialized here, because this builder clears
|
||||
* `group` so that later effective-host resolution cannot re-inherit group
|
||||
* credentials (identity, key, password) over the URL password.
|
||||
*/
|
||||
export const buildSshDeepLinkEphemeralHostFromSaved = (
|
||||
effectiveSavedHost: Host,
|
||||
target: SshDeepLinkTarget,
|
||||
options: SshDeepLinkDraftOptions,
|
||||
): Host => ({
|
||||
...effectiveSavedHost,
|
||||
id: options.id,
|
||||
createdAt: options.now,
|
||||
...(target.username ? { username: target.username } : {}),
|
||||
...(target.password ? { password: target.password, authMethod: "password" as const } : {}),
|
||||
identityId: undefined,
|
||||
identityFileId: undefined,
|
||||
identityFilePaths: undefined,
|
||||
savePassword: false,
|
||||
group: "",
|
||||
ephemeral: true,
|
||||
protocol: "ssh",
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
});
|
||||
|
||||
export const buildSshDeepLinkHostDraft = (
|
||||
target: SshDeepLinkTarget,
|
||||
options: SshDeepLinkDraftOptions,
|
||||
): Host => ({
|
||||
id: options.id,
|
||||
label: target.username ? `${target.username}@${target.hostname}` : target.hostname,
|
||||
hostname: target.hostname,
|
||||
username: target.username || "",
|
||||
...(target.port !== undefined ? { port: target.port } : {}),
|
||||
group: "",
|
||||
tags: [],
|
||||
os: "linux",
|
||||
protocol: "ssh",
|
||||
createdAt: options.now,
|
||||
});
|
||||
|
||||
const normalizeBareHostReference = (value: string): string | null => {
|
||||
const decoded = decodeUrlComponent(value).trim().replace(/^\.\/+/, "").replace(/\/+$/, "");
|
||||
if (!decoded || decoded.includes(" ") || decoded.startsWith("#") || decoded.startsWith("/")) return null;
|
||||
if (URL_SCHEME_PATTERN.test(decoded)) return null;
|
||||
return decoded;
|
||||
};
|
||||
|
||||
const isDocumentRelativeLink = (value: string): boolean => {
|
||||
const trimmed = value.trim();
|
||||
return trimmed.startsWith("#")
|
||||
|| trimmed.startsWith("/")
|
||||
|| trimmed.startsWith("./")
|
||||
|| trimmed.startsWith("../")
|
||||
|| trimmed.includes("/")
|
||||
|| trimmed.includes("?")
|
||||
|| trimmed.includes("#");
|
||||
};
|
||||
|
||||
const parseBareHostReference = (value: string): SshDeepLinkTarget | null => {
|
||||
const reference = normalizeBareHostReference(value);
|
||||
if (!reference) return null;
|
||||
return parseSshDeepLink(`ssh://${reference}`);
|
||||
};
|
||||
|
||||
const findHostByLabel = (hosts: Host[], label: string): Host | null => {
|
||||
const needle = label.trim().toLowerCase();
|
||||
if (!needle) return null;
|
||||
const candidates = hosts.filter((host) =>
|
||||
isPrimarySshHost(host) && (host.label || "").trim().toLowerCase() === needle,
|
||||
);
|
||||
return candidates.length === 1 ? candidates[0] : null;
|
||||
};
|
||||
|
||||
export const buildSshNoteLinkOpenHost = (
|
||||
hosts: Host[],
|
||||
href: string,
|
||||
label: string | undefined,
|
||||
options: SshDeepLinkDraftOptions,
|
||||
): Host | null => {
|
||||
const normalizedHref = href.trim();
|
||||
const deepLinkTarget = parseSshDeepLink(href);
|
||||
if (deepLinkTarget) {
|
||||
return buildSshDeepLinkOpenHost(hosts, deepLinkTarget, options);
|
||||
}
|
||||
|
||||
if (URL_SCHEME_PATTERN.test(normalizedHref)) {
|
||||
return null;
|
||||
}
|
||||
if (isDocumentRelativeLink(normalizedHref)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const references = [href, label]
|
||||
.filter((value): value is string => Boolean(value?.trim()));
|
||||
for (const reference of references) {
|
||||
const target = parseBareHostReference(reference);
|
||||
if (!target) continue;
|
||||
const host = findSshDeepLinkHost(hosts, target);
|
||||
if (host) return buildSshDeepLinkConnectionHost(host);
|
||||
}
|
||||
|
||||
for (const reference of references) {
|
||||
const host = findHostByLabel(hosts, reference);
|
||||
if (host) return buildSshDeepLinkConnectionHost(host);
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
Reference in New Issue
Block a user