Files
NetMesh/electron/cli/netcattyRpcClient.cjs
zhaolei 3c72efcb7f
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
[Init] Initial commit - NetMesh terminal manager
2026-09-13 18:24:01 +08:00

102 lines
2.8 KiB
JavaScript

"use strict";
const fs = require("node:fs");
const net = require("node:net");
const { getCliDiscoveryFilePath } = require("./discoveryPath.cjs");
const { CAPABILITY_SURFACES } = require("../capabilities/constants.cjs");
const { createNdjsonRpcClient } = require("../capabilities/rpcTransport.cjs");
function createError(code, message) {
const err = new Error(message);
err.code = code;
return err;
}
function loadDiscovery() {
const discoveryPath = getCliDiscoveryFilePath();
let raw;
try {
raw = fs.readFileSync(discoveryPath, "utf8");
} catch (err) {
throw createError(
"APP_NOT_RUNNING",
`Netcatty is not running or discovery file is missing at ${discoveryPath}. Start Netcatty first.`,
);
}
let parsed;
try {
parsed = JSON.parse(raw);
} catch (err) {
throw createError(
"DISCOVERY_INVALID",
`Netcatty discovery file at ${discoveryPath} is invalid JSON.`,
);
}
if (!parsed?.port || !parsed?.token) {
throw createError(
"DISCOVERY_INVALID",
`Netcatty discovery file at ${discoveryPath} is missing required port/token fields.`,
);
}
return parsed;
}
async function connectClient() {
const discovery = loadDiscovery();
const socket = await new Promise((resolve, reject) => {
const sock = net.createConnection({ host: "127.0.0.1", port: discovery.port }, () => resolve(sock));
sock.setEncoding("utf8");
sock.once("error", (err) => {
reject(createError("CONNECT_FAILED", `Failed to connect to Netcatty TCP bridge: ${err?.message || err}`));
});
});
const client = createNdjsonRpcClient({
socket,
surface: CAPABILITY_SURFACES.BUILTIN,
createError,
messages: {
connectionClosed: "Connection to Netcatty TCP bridge closed.",
connectionClosedWhileCall: "Connection to Netcatty TCP bridge is closed.",
connectionError: (error) => `Connection to Netcatty TCP bridge failed: ${error?.message || error}`,
rpcTimeout: (method, timeoutMs) => (
`Timed out waiting for Netcatty RPC response to "${method}" after ${timeoutMs}ms.`
),
writeFailed: (method, error) => (
`Failed to send Netcatty RPC "${method}": ${error?.message || error}`
),
},
});
const authResult = await client.call("auth/verify", { token: discovery.token });
if (!authResult?.ok) {
throw createError("AUTH_FAILED", "Failed to authenticate to Netcatty TCP bridge.");
}
try {
const statusResult = await client.call("netcatty/getStatus", {});
client.ingestBridgeStatus(statusResult);
} catch {
// Keep the default RPC timeout when bridge status cannot be fetched.
}
return {
discovery,
async call(method, params) {
return await client.call(method, params);
},
close() {
client.close();
},
};
}
module.exports = {
connectClient,
createError,
};