[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:
127
domain/jmsDeepLink.ts
Normal file
127
domain/jmsDeepLink.ts
Normal file
@@ -0,0 +1,127 @@
|
||||
import type { Host } from "./models";
|
||||
|
||||
export interface JmsDeepLinkTarget {
|
||||
protocol: string;
|
||||
hostname: string;
|
||||
port: number;
|
||||
username: string;
|
||||
password: string;
|
||||
label: string;
|
||||
}
|
||||
|
||||
export interface JmsDeepLinkDraftOptions {
|
||||
id: string;
|
||||
now: number;
|
||||
}
|
||||
|
||||
const JMS_PROTOCOL_PREFIX = "jms://";
|
||||
|
||||
const decodeBase64Payload = (encoded: string): string | null => {
|
||||
let normalized = encoded.replace(/-/g, "+").replace(/_/g, "/");
|
||||
while (normalized.length % 4 !== 0) {
|
||||
normalized += "=";
|
||||
}
|
||||
try {
|
||||
if (typeof Buffer !== "undefined") {
|
||||
return Buffer.from(normalized, "base64").toString("utf8");
|
||||
}
|
||||
const binary = globalThis.atob(normalized);
|
||||
const bytes = Uint8Array.from(binary, (char) => char.charCodeAt(0));
|
||||
return new TextDecoder().decode(bytes);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
const parsePort = (value: unknown): number | null => {
|
||||
const port = typeof value === "string" ? Number(value.trim()) : Number(value);
|
||||
if (!Number.isInteger(port) || port < 1 || port > 65535) {
|
||||
return null;
|
||||
}
|
||||
return port;
|
||||
};
|
||||
|
||||
const nonEmptyString = (value: unknown): string | null => {
|
||||
if (typeof value !== "string") return null;
|
||||
const trimmed = value.trim();
|
||||
return trimmed ? trimmed : null;
|
||||
};
|
||||
|
||||
export const isSupportedJmsProtocol = (protocol: string): boolean => {
|
||||
const normalized = protocol.toLowerCase();
|
||||
return normalized === "ssh" || normalized === "sftp" || normalized === "telnet";
|
||||
};
|
||||
|
||||
export const parseJmsDeepLink = (rawUrl: string): JmsDeepLinkTarget | null => {
|
||||
if (typeof rawUrl !== "string") return null;
|
||||
const trimmed = rawUrl.trim();
|
||||
if (!trimmed.toLowerCase().startsWith(JMS_PROTOCOL_PREFIX)) return null;
|
||||
|
||||
const encoded = trimmed.slice(JMS_PROTOCOL_PREFIX.length).replace(/\/+$/, "");
|
||||
if (!encoded) return null;
|
||||
|
||||
const jsonText = decodeBase64Payload(encoded);
|
||||
if (!jsonText) return null;
|
||||
|
||||
let payload: Record<string, unknown>;
|
||||
try {
|
||||
payload = JSON.parse(jsonText) as Record<string, unknown>;
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
|
||||
const protocol = String(payload.protocol || "").toLowerCase();
|
||||
if (!protocol) return null;
|
||||
|
||||
const tokenId = nonEmptyString(
|
||||
(payload.token as Record<string, unknown> | undefined)?.id ?? payload.id,
|
||||
);
|
||||
const tokenValue = nonEmptyString(
|
||||
(payload.token as Record<string, unknown> | undefined)?.value ?? payload.value,
|
||||
);
|
||||
if (!tokenId || !tokenValue) return null;
|
||||
|
||||
const endpoint = payload.endpoint as Record<string, unknown> | undefined;
|
||||
const hostname = nonEmptyString(endpoint?.host);
|
||||
const port = parsePort(endpoint?.port);
|
||||
if (!hostname || port === null) return null;
|
||||
|
||||
const asset = payload.asset as Record<string, unknown> | undefined;
|
||||
const label = nonEmptyString(asset?.name) || nonEmptyString(payload.name) || hostname;
|
||||
|
||||
return {
|
||||
protocol,
|
||||
hostname,
|
||||
port,
|
||||
username: `JMS-${tokenId}`,
|
||||
password: tokenValue,
|
||||
label,
|
||||
};
|
||||
};
|
||||
|
||||
export const buildJmsDeepLinkEphemeralHost = (
|
||||
target: JmsDeepLinkTarget,
|
||||
options: JmsDeepLinkDraftOptions,
|
||||
): Host => {
|
||||
return {
|
||||
id: options.id,
|
||||
label: target.label,
|
||||
hostname: target.hostname,
|
||||
username: target.username,
|
||||
port: target.port,
|
||||
password: target.password,
|
||||
authMethod: "password",
|
||||
savePassword: false,
|
||||
ephemeral: true,
|
||||
protocol: "ssh",
|
||||
// JumpServer sftp payloads target file transfer: connect the gateway
|
||||
// shell and surface Netcatty's SFTP side panel for that session.
|
||||
...(target.protocol === "sftp" ? { autoOpenSftpPanel: true } : {}),
|
||||
group: "",
|
||||
tags: [],
|
||||
os: "linux",
|
||||
createdAt: options.now,
|
||||
moshEnabled: false,
|
||||
etEnabled: false,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user