File size: 11,520 Bytes
f778c12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | // Gateway RPC helpers for node CLI commands, including lazy runtime loading and option parsing.
import { randomUUID } from "node:crypto";
import {
parseStrictFiniteNumber,
parseStrictNonNegativeInteger,
parseStrictPositiveInteger,
} from "@openclaw/normalization-core/number-coercion";
import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";
import type { Command } from "commander";
import { GatewayClientRequestError } from "../../../packages/gateway-client/src/request-error.js";
import {
GATEWAY_CLIENT_MODES,
GATEWAY_CLIENT_NAMES,
} from "../../../packages/gateway-protocol/src/client-info.js";
import { readConnectErrorDetailCode } from "../../../packages/gateway-protocol/src/connect-error-details.js";
import { readMissingScopeError } from "../../../packages/gateway-protocol/src/gateway-error-details.js";
import type { OperatorScope } from "../../gateway/method-scopes.js";
import { resolveNodeFromNodeList } from "../../shared/node-resolve.js";
import { callGatewayFromCliWithTransport } from "../gateway-rpc.js";
import { parseTimeoutMsWithFallback } from "../parse-timeout.js";
import { parseNodeList, parsePairingList } from "./format.js";
import type { NodeListNode, NodesRpcOpts } from "./types.js";
const STORED_DEVICE_AUTH_FALLBACK_DETAIL_CODES = new Set([
"AUTH_REQUIRED",
"AUTH_UNAUTHORIZED",
"AUTH_TOKEN_MISMATCH",
"AUTH_DEVICE_TOKEN_MISMATCH",
"AUTH_SCOPE_MISMATCH",
"PAIRING_REQUIRED",
]);
const NODE_PAIR_APPROVAL_GATEWAY_METHODS = new Set<string>(["node.pair.list", "node.pair.approve"]);
const DEFAULT_NODES_RPC_TIMEOUT_MS = 10_000;
function resolveNodesTransportTimeoutMs(
opts: NodesRpcOpts,
invokeTimeoutMs?: unknown,
): number | null {
const transportTimeoutMs = parseTimeoutMsWithFallback(
opts.timeout,
DEFAULT_NODES_RPC_TIMEOUT_MS,
{
invalidType: "error",
},
);
if (invokeTimeoutMs === 0) {
// Zero disables the node deadline; null keeps Gateway startup bounded but the request unbounded.
return null;
}
if (
typeof invokeTimeoutMs !== "number" ||
!Number.isSafeInteger(invokeTimeoutMs) ||
invokeTimeoutMs <= 0
) {
return transportTimeoutMs;
}
// Gateway transport starts before the node timer; retain one normal RPC timeout for forwarding.
return Math.max(transportTimeoutMs, invokeTimeoutMs + DEFAULT_NODES_RPC_TIMEOUT_MS);
}
function isDiagnosticsAuthFallbackError(value: unknown): value is Error {
if (
value instanceof Error &&
(value.name === "GatewayCredentialsRequiredError" ||
value.name === "GatewayStoredDeviceAuthUnavailableError" ||
value.name === "GatewayLocalBackendSharedAuthUnavailableError")
) {
return true;
}
if (!(value instanceof Error) || value.name !== "GatewayClientRequestError") {
return false;
}
const details = (value as Error & { details?: unknown }).details;
const detailCode = readConnectErrorDetailCode(details);
if (detailCode !== null && STORED_DEVICE_AUTH_FALLBACK_DETAIL_CODES.has(detailCode)) {
return true;
}
return readMissingScopeError(value)?.missingScope === "operator.read";
}
function isUnknownGatewayMethodError(
value: unknown,
method: string,
): value is GatewayClientRequestError {
return (
value instanceof GatewayClientRequestError &&
value.gatewayCode === "INVALID_REQUEST" &&
!value.retryable &&
value.message === `unknown method: ${method}` &&
(value.retryAfterMs === undefined ||
(Number.isInteger(value.retryAfterMs) && value.retryAfterMs >= 0))
);
}
/** Attach shared Gateway connection/json options to a node command. */
export const nodesCallOpts = (cmd: Command, defaults?: { timeoutMs?: number }) =>
cmd
.option("--url <url>", "Gateway WebSocket URL (defaults to gateway.remote.url when configured)")
.option("--token <token>", "Gateway token (if required)")
.option("--timeout <ms>", "Timeout in ms", String(defaults?.timeoutMs ?? 10_000))
.option("--json", "Output JSON", false);
/** Call a Gateway method through the lazily loaded node CLI RPC runtime. */
export const callNodesGatewayCli = async (
method: string,
opts: NodesRpcOpts,
params?: unknown,
callOpts?: {
scopes?: OperatorScope[];
useStoredDeviceAuth?: boolean;
requiredStoredDeviceAuthScopes?: OperatorScope[];
useLocalBackendSharedAuth?: boolean;
},
) => {
const invokeTimeoutMs =
method === "node.invoke" &&
params !== null &&
typeof params === "object" &&
!Array.isArray(params)
? (params as { timeoutMs?: unknown }).timeoutMs
: undefined;
const useLocalBackendSharedAuth = callOpts?.useLocalBackendSharedAuth === true;
return await callGatewayFromCliWithTransport(method, opts, params, {
label: `Nodes ${method}`,
timeoutMs: resolveNodesTransportTimeoutMs(opts, invokeTimeoutMs),
scopes: callOpts?.scopes,
useStoredDeviceAuth: callOpts?.useStoredDeviceAuth,
requiredStoredDeviceAuthScopes: callOpts?.requiredStoredDeviceAuthScopes,
requireLocalBackendSharedAuth: useLocalBackendSharedAuth,
clientName: useLocalBackendSharedAuth
? GATEWAY_CLIENT_NAMES.GATEWAY_CLIENT
: GATEWAY_CLIENT_NAMES.CLI,
mode: useLocalBackendSharedAuth ? GATEWAY_CLIENT_MODES.BACKEND : GATEWAY_CLIENT_MODES.CLI,
sharedStateMode: "read-only",
});
};
/** Read node diagnostics with pairing details when authorized, otherwise keep read-only access. */
export const callNodeDiagnosticsGatewayCli = async (
method: "node.list" | "node.describe",
opts: NodesRpcOpts,
params?: unknown,
) => {
try {
return await callNodesGatewayCli(method, opts, params, {
useStoredDeviceAuth: true,
requiredStoredDeviceAuthScopes: ["operator.read", "operator.pairing"],
});
} catch (error) {
if (!isDiagnosticsAuthFallbackError(error)) {
throw error;
}
}
try {
return await callNodesGatewayCli(method, opts, params, {
scopes: ["operator.read", "operator.pairing"],
useLocalBackendSharedAuth: true,
});
} catch (error) {
if (!isDiagnosticsAuthFallbackError(error)) {
throw error;
}
}
return await callNodesGatewayCli(method, opts, params);
};
/** Call pairing approval methods with explicit operator scopes. */
export const callNodePairApprovalGatewayCli = async (
method: "node.pair.list" | "node.pair.approve",
opts: NodesRpcOpts,
params: unknown,
callOpts: { scopes: OperatorScope[] },
) => {
if (!NODE_PAIR_APPROVAL_GATEWAY_METHODS.has(method)) {
throw new Error(`unsupported node pair approval gateway method: ${method}`);
}
return await callGatewayFromCliWithTransport(method, opts, params, {
label: `Nodes ${method}`,
timeoutMs: resolveNodesTransportTimeoutMs(opts),
scopes: callOpts.scopes,
clientName: GATEWAY_CLIENT_NAMES.GATEWAY_CLIENT,
mode: GATEWAY_CLIENT_MODES.BACKEND,
sharedStateMode: "read-only",
});
};
/** Build a node.invoke payload with an idempotency key and optional timeout. */
export function buildNodeInvokeParams(params: {
nodeId: string;
command: string;
params?: Record<string, unknown>;
timeoutMs?: number;
idempotencyKey?: string;
}): Record<string, unknown> {
const invokeParams: Record<string, unknown> = {
nodeId: params.nodeId,
command: params.command,
params: params.params,
idempotencyKey: params.idempotencyKey ?? randomUUID(),
};
if (typeof params.timeoutMs === "number" && Number.isFinite(params.timeoutMs)) {
invokeParams.timeoutMs = params.timeoutMs;
}
return invokeParams;
}
function hasOptionalValue(value: unknown): boolean {
return value !== undefined && value !== null;
}
/** Parse an optional positive integer node CLI flag. */
export function parseOptionalNodePositiveInteger(value: unknown, flag: string): number | undefined {
if (!hasOptionalValue(value)) {
return undefined;
}
const parsed = parseStrictPositiveInteger(value);
if (parsed === undefined) {
throw new Error(`${flag} must be a positive integer.`);
}
return parsed;
}
/** Parse an optional non-negative integer node CLI flag. */
export function parseOptionalNodeNonNegativeInteger(
value: unknown,
flag: string,
): number | undefined {
if (!hasOptionalValue(value)) {
return undefined;
}
const parsed = parseStrictNonNegativeInteger(value);
if (parsed === undefined) {
throw new Error(`${flag} must be a non-negative integer.`);
}
return parsed;
}
/** Parse an optional finite number node CLI flag with optional bounds. */
export function parseOptionalNodeFiniteNumber(
value: unknown,
flag: string,
bounds?: {
minExclusive?: number;
minInclusive?: number;
maxInclusive?: number;
},
): number | undefined {
if (!hasOptionalValue(value)) {
return undefined;
}
const parsed = parseStrictFiniteNumber(value);
if (parsed === undefined) {
throw new Error(`${flag} must be a finite number.`);
}
if (bounds?.minExclusive !== undefined && parsed <= bounds.minExclusive) {
throw new Error(`${flag} must be greater than ${bounds.minExclusive}.`);
}
if (bounds?.minInclusive !== undefined && parsed < bounds.minInclusive) {
throw new Error(`${flag} must be at least ${bounds.minInclusive}.`);
}
if (bounds?.maxInclusive !== undefined && parsed > bounds.maxInclusive) {
throw new Error(`${flag} must be at most ${bounds.maxInclusive}.`);
}
return parsed;
}
/** Return the local-development hint for known unsigned Peekaboo bridge authorization failures. */
export function unauthorizedHintForMessage(message: string): string | null {
const haystack = normalizeLowercaseStringOrEmpty(message);
if (
haystack.includes("unauthorizedclient") ||
haystack.includes("bridge client is not authorized") ||
haystack.includes("unsigned bridge clients are not allowed")
) {
return [
"peekaboo bridge rejected the client.",
"sign the peekaboo CLI (TeamID Y5PE65HELJ) or launch the host with",
"PEEKABOO_ALLOW_UNSIGNED_SOCKET_CLIENTS=1 for local dev.",
].join(" ");
}
return null;
}
/** Resolve a node query to a node id via live node list or paired-node fallback. */
export async function resolveCliNodeId(opts: NodesRpcOpts, query: string) {
return (await resolveCliNode(opts, query)).nodeId;
}
/** Resolve a node through the pairing-aware diagnostics view when available. */
export async function resolveNodeDiagnosticsId(opts: NodesRpcOpts, query: string) {
try {
const res = await callNodeDiagnosticsGatewayCli("node.list", opts, {});
return resolveNodeFromNodeList(parseNodeList(res), query).nodeId;
} catch (error) {
if (!isUnknownGatewayMethodError(error, "node.list")) {
throw error;
}
return await resolveCliNodeId(opts, query);
}
}
/** Resolve a node query to the best available node record. */
export async function resolveCliNode(opts: NodesRpcOpts, query: string): Promise<NodeListNode> {
let nodes: NodeListNode[];
try {
const res = await callNodesGatewayCli("node.list", opts, {});
nodes = parseNodeList(res);
} catch (error) {
if (!isUnknownGatewayMethodError(error, "node.list")) {
throw error;
}
const res = await callNodesGatewayCli("node.pair.list", opts, {});
const { paired } = parsePairingList(res);
nodes = paired.map((n) => ({
nodeId: n.nodeId,
displayName: n.displayName,
platform: n.platform,
version: n.version,
remoteIp: n.remoteIp,
}));
}
return resolveNodeFromNodeList(nodes, query);
}
|