[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:
167
domain/telnetDeepLink.ts
Normal file
167
domain/telnetDeepLink.ts
Normal file
@@ -0,0 +1,167 @@
|
||||
import type { Host, Identity } from "./models";
|
||||
|
||||
export interface TelnetDeepLinkTarget {
|
||||
rawUrl: string;
|
||||
username?: string;
|
||||
password?: string;
|
||||
hostname: string;
|
||||
port?: number;
|
||||
}
|
||||
|
||||
export interface TelnetDeepLinkDraftOptions {
|
||||
id: string;
|
||||
now: number;
|
||||
}
|
||||
|
||||
const DEFAULT_TELNET_PORT = 23;
|
||||
|
||||
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.telnetPort ?? (host.protocol === "telnet" ? host.port : undefined) ?? DEFAULT_TELNET_PORT;
|
||||
|
||||
const getHostUsername = (host: Host): string =>
|
||||
(host.telnetUsername !== undefined ? host.telnetUsername : host.username || "").trim();
|
||||
|
||||
const isTelnetHost = (host: Host): boolean =>
|
||||
host.protocol === "telnet" || host.telnetEnabled === true;
|
||||
|
||||
export const materializeTelnetDeepLinkMatchHost = (
|
||||
host: Host,
|
||||
identities: Pick<Identity, "id" | "username">[],
|
||||
): Host => {
|
||||
if (!host.telnetIdentityId) return host;
|
||||
const identity = identities.find((item) => item.id === host.telnetIdentityId);
|
||||
const username = identity?.username?.trim();
|
||||
return username ? { ...host, telnetUsername: username } : host;
|
||||
};
|
||||
|
||||
export const parseTelnetDeepLink = (rawUrl: string): TelnetDeepLinkTarget | 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 !== "telnet:") 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 shouldHandleTelnetDeepLink = (rawUrl: string, enabled: boolean): boolean =>
|
||||
enabled && parseTelnetDeepLink(rawUrl) !== null;
|
||||
|
||||
export const findTelnetDeepLinkHost = (
|
||||
hosts: Host[],
|
||||
target: TelnetDeepLinkTarget,
|
||||
options?: { ignoreTargetUsername?: boolean },
|
||||
): Host | null => {
|
||||
const targetHost = normalizeHostname(target.hostname);
|
||||
const targetPort = target.port ?? DEFAULT_TELNET_PORT;
|
||||
const candidates = hosts.filter((host) => {
|
||||
if (!isTelnetHost(host)) return false;
|
||||
if (normalizeHostname(host.hostname) !== targetHost) return false;
|
||||
if (!options?.ignoreTargetUsername && target.username && getHostUsername(host) !== target.username) return false;
|
||||
if (getHostPort(host) !== targetPort) return false;
|
||||
return true;
|
||||
});
|
||||
|
||||
return candidates.length === 1 ? candidates[0] : null;
|
||||
};
|
||||
|
||||
export const buildTelnetDeepLinkConnectionHost = (host: Host): Host => ({
|
||||
...host,
|
||||
protocol: "telnet",
|
||||
port: getHostPort(host),
|
||||
telnetEnabled: true,
|
||||
telnetPort: getHostPort(host),
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
});
|
||||
|
||||
export const buildTelnetDeepLinkEphemeralHostFromSaved = (
|
||||
effectiveSavedHost: Host,
|
||||
target: TelnetDeepLinkTarget,
|
||||
options: TelnetDeepLinkDraftOptions,
|
||||
): Host => ({
|
||||
...buildTelnetDeepLinkConnectionHost(effectiveSavedHost),
|
||||
id: options.id,
|
||||
createdAt: options.now,
|
||||
...(target.username ? { username: target.username, telnetUsername: target.username } : {}),
|
||||
...(target.password ? { telnetPassword: target.password } : {}),
|
||||
telnetIdentityId: undefined,
|
||||
savePassword: false,
|
||||
group: "",
|
||||
ephemeral: true,
|
||||
});
|
||||
|
||||
export const buildTelnetDeepLinkHostDraft = (
|
||||
target: TelnetDeepLinkTarget,
|
||||
options: TelnetDeepLinkDraftOptions,
|
||||
): Host => ({
|
||||
id: options.id,
|
||||
label: target.username ? `${target.username}@${target.hostname}` : target.hostname,
|
||||
hostname: target.hostname,
|
||||
username: target.username || "",
|
||||
port: target.port ?? DEFAULT_TELNET_PORT,
|
||||
group: "",
|
||||
tags: [],
|
||||
os: "linux",
|
||||
protocol: "telnet",
|
||||
telnetEnabled: true,
|
||||
telnetPort: target.port ?? DEFAULT_TELNET_PORT,
|
||||
...(target.username ? { telnetUsername: target.username } : {}),
|
||||
...(target.password ? { telnetPassword: target.password } : {}),
|
||||
savePassword: false,
|
||||
ephemeral: true,
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
createdAt: options.now,
|
||||
});
|
||||
|
||||
export const buildTelnetDeepLinkOpenHost = (
|
||||
hosts: Host[],
|
||||
target: TelnetDeepLinkTarget,
|
||||
options: TelnetDeepLinkDraftOptions,
|
||||
): Host => {
|
||||
const matchedHost = target.password ? null : findTelnetDeepLinkHost(hosts, target);
|
||||
return buildTelnetDeepLinkConnectionHost(
|
||||
matchedHost ?? buildTelnetDeepLinkHostDraft(target, options),
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user