mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 14:21:12 +00:00
426 lines
15 KiB
TypeScript
426 lines
15 KiB
TypeScript
/**
|
|
* Thin ClickClack REST/websocket client used by gateway, resolver, and outbound
|
|
* delivery code.
|
|
*/
|
|
import {
|
|
readProviderJsonResponse,
|
|
readResponseTextLimited,
|
|
} from "openclaw/plugin-sdk/provider-http";
|
|
import { WebSocket } from "ws";
|
|
import type {
|
|
ClickClackBotCommand,
|
|
ClickClackChannel,
|
|
ClickClackEvent,
|
|
ClickClackMessage,
|
|
ClickClackMessageProvenance,
|
|
ClickClackUser,
|
|
ClickClackWorkspace,
|
|
} from "./types.js";
|
|
|
|
type ClickClackUpload = {
|
|
id: string;
|
|
workspace_id: string;
|
|
owner_id: string;
|
|
nonce?: string;
|
|
filename: string;
|
|
content_type: string;
|
|
byte_size: number;
|
|
width: number;
|
|
height: number;
|
|
duration_ms: number;
|
|
created_at: string;
|
|
};
|
|
|
|
/**
|
|
* Serializes optional provenance into the wire fields. Unknown JSON fields
|
|
* are ignored by servers without the provenance columns, so these are safe
|
|
* to send unconditionally when present.
|
|
*/
|
|
function provenanceFields(provenance?: ClickClackMessageProvenance): Record<string, string> {
|
|
const fields: Record<string, string> = {};
|
|
if (provenance?.model?.trim()) {
|
|
fields.author_model = provenance.model.trim();
|
|
}
|
|
if (provenance?.thinking?.trim()) {
|
|
fields.author_thinking = provenance.thinking.trim();
|
|
}
|
|
if (provenance?.runtime?.trim()) {
|
|
fields.author_runtime = provenance.runtime.trim();
|
|
}
|
|
return fields;
|
|
}
|
|
|
|
type ClientOptions = {
|
|
baseUrl: string;
|
|
token: string;
|
|
correlationId?: string;
|
|
fetch?: typeof fetch;
|
|
};
|
|
|
|
const CLICKCLACK_ERROR_BODY_LIMIT_BYTES = 8 * 1024;
|
|
const CLICKCLACK_CORRELATION_ID_MAX_LENGTH = 128;
|
|
const CLICKCLACK_CORRELATION_ID_PATTERN = /^[A-Za-z0-9._:-]+$/u;
|
|
const CLICKCLACK_CORRELATION_ID_HEADER = "X-Correlation-ID";
|
|
// Keep REST and websocket JSON under the same bounded response budget. ClickClack
|
|
// accepts 1 MiB request bodies, then wraps and re-encodes them as events, so a
|
|
// valid frame can exceed 1 MiB before ws hands it to the event parser.
|
|
const CLICKCLACK_INBOUND_JSON_LIMIT_BYTES = 16 * 1024 * 1024;
|
|
// Match Slack relay / Mattermost / Signal channel gateway handshake floors.
|
|
// Without this, gateway.ts waits forever for close/error when TCP accepts but
|
|
// never upgrades, pinning the monitor reconnect loop.
|
|
const CLICKCLACK_WEBSOCKET_HANDSHAKE_TIMEOUT_MS = 30_000;
|
|
|
|
class ClickClackHttpError extends Error {
|
|
constructor(
|
|
readonly status: number,
|
|
detail: string,
|
|
readonly headers: Headers,
|
|
) {
|
|
super(`ClickClack ${status}: ${detail}`);
|
|
}
|
|
}
|
|
|
|
/** Accepts the same bounded request-correlation shape as the ClickClack API. */
|
|
export function normalizeClickClackCorrelationId(value: unknown): string | undefined {
|
|
if (typeof value !== "string") {
|
|
return undefined;
|
|
}
|
|
const normalized = value.trim();
|
|
if (
|
|
!normalized ||
|
|
normalized.length > CLICKCLACK_CORRELATION_ID_MAX_LENGTH ||
|
|
!CLICKCLACK_CORRELATION_ID_PATTERN.test(normalized)
|
|
) {
|
|
return undefined;
|
|
}
|
|
return normalized;
|
|
}
|
|
|
|
/**
|
|
* Creates a typed client for the ClickClack API using bearer-token auth.
|
|
*/
|
|
export function createClickClackClient(options: ClientOptions) {
|
|
const baseUrl = options.baseUrl.replace(/\/$/, "");
|
|
const fetcher = options.fetch ?? fetch;
|
|
const correlationId = normalizeClickClackCorrelationId(options.correlationId);
|
|
const headers = {
|
|
Authorization: `Bearer ${options.token}`,
|
|
Accept: "application/json",
|
|
};
|
|
|
|
async function request<T>(path: string, init: RequestInit = {}): Promise<T> {
|
|
const requestHeaders = new Headers(init.headers);
|
|
for (const [key, value] of Object.entries(headers)) {
|
|
requestHeaders.set(key, value);
|
|
}
|
|
if (correlationId) {
|
|
requestHeaders.set(CLICKCLACK_CORRELATION_ID_HEADER, correlationId);
|
|
}
|
|
if (init.body && !(init.body instanceof FormData)) {
|
|
requestHeaders.set("Content-Type", "application/json");
|
|
}
|
|
const response = await fetcher(`${baseUrl}${path}`, { ...init, headers: requestHeaders });
|
|
if (!response.ok) {
|
|
const detail = await readResponseTextLimited(response, CLICKCLACK_ERROR_BODY_LIMIT_BYTES);
|
|
throw new ClickClackHttpError(response.status, detail, new Headers(response.headers));
|
|
}
|
|
return await readProviderJsonResponse<T>(response, "ClickClack response", {
|
|
maxBytes: CLICKCLACK_INBOUND_JSON_LIMIT_BYTES,
|
|
});
|
|
}
|
|
|
|
async function fetchEventPage(
|
|
workspaceId: string,
|
|
pageOptions: {
|
|
afterCursor?: string;
|
|
limit?: number;
|
|
includeTail?: boolean;
|
|
} = {},
|
|
): Promise<{ events: ClickClackEvent[]; tailCursor?: string }> {
|
|
const query = new URLSearchParams({ workspace_id: workspaceId });
|
|
if (pageOptions.afterCursor) {
|
|
query.set("after_cursor", pageOptions.afterCursor);
|
|
}
|
|
if (pageOptions.limit !== undefined) {
|
|
query.set("limit", String(pageOptions.limit));
|
|
}
|
|
if (pageOptions.includeTail) {
|
|
query.set("include_tail", "true");
|
|
}
|
|
const data = await request<{ events: ClickClackEvent[]; tail_cursor?: unknown }>(
|
|
`/api/realtime/events?${query.toString()}`,
|
|
);
|
|
return {
|
|
events: data.events,
|
|
...(typeof data.tail_cursor === "string" ? { tailCursor: data.tail_cursor } : {}),
|
|
};
|
|
}
|
|
|
|
return {
|
|
me: async (): Promise<ClickClackUser> => {
|
|
const data = await request<{ user: ClickClackUser }>("/api/me");
|
|
return data.user;
|
|
},
|
|
setBotCommands: async (
|
|
commands: { command: string; description: string; args_hint?: string }[],
|
|
): Promise<ClickClackBotCommand[]> => {
|
|
const data = await request<{ bot_commands: ClickClackBotCommand[] }>(
|
|
"/api/bots/self/commands",
|
|
{
|
|
method: "PUT",
|
|
body: JSON.stringify({ commands }),
|
|
},
|
|
);
|
|
return data.bot_commands;
|
|
},
|
|
workspaces: async (): Promise<ClickClackWorkspace[]> => {
|
|
const data = await request<{ workspaces: ClickClackWorkspace[] }>("/api/workspaces");
|
|
return data.workspaces;
|
|
},
|
|
channels: async (workspaceId: string): Promise<ClickClackChannel[]> => {
|
|
const data = await request<{ channels: ClickClackChannel[] }>(
|
|
`/api/workspaces/${encodeURIComponent(workspaceId)}/channels`,
|
|
);
|
|
return data.channels;
|
|
},
|
|
channelMessages: async (
|
|
channelId: string,
|
|
afterSeq: number,
|
|
limit = 20,
|
|
): Promise<ClickClackMessage[]> => {
|
|
const data = await request<{ messages: ClickClackMessage[] }>(
|
|
`/api/channels/${encodeURIComponent(channelId)}/messages?after_seq=${afterSeq}&limit=${limit}`,
|
|
);
|
|
return data.messages;
|
|
},
|
|
directMessages: async (
|
|
conversationId: string,
|
|
afterSeq: number,
|
|
limit = 20,
|
|
): Promise<ClickClackMessage[]> => {
|
|
const data = await request<{ messages: ClickClackMessage[] }>(
|
|
`/api/dms/${encodeURIComponent(conversationId)}/messages?after_seq=${afterSeq}&limit=${limit}`,
|
|
);
|
|
return data.messages;
|
|
},
|
|
thread: async (
|
|
messageId: string,
|
|
): Promise<{ root: ClickClackMessage; replies: ClickClackMessage[] }> =>
|
|
await request<{ root: ClickClackMessage; replies: ClickClackMessage[] }>(
|
|
`/api/messages/${encodeURIComponent(messageId)}/thread`,
|
|
),
|
|
message: async (
|
|
messageId: string,
|
|
): Promise<ClickClackMessage & { attachments?: Array<{ id: string }> }> => {
|
|
const data = await request<{
|
|
message: ClickClackMessage & { attachments?: Array<{ id: string }> };
|
|
}>(`/api/messages/${encodeURIComponent(messageId)}`);
|
|
return data.message;
|
|
},
|
|
findMessageByNonce: async (params: {
|
|
workspaceId: string;
|
|
nonce: string;
|
|
}): Promise<(ClickClackMessage & { attachments?: Array<{ id: string }> }) | undefined> => {
|
|
const query = new URLSearchParams({
|
|
workspace_id: params.workspaceId,
|
|
nonce: params.nonce,
|
|
});
|
|
try {
|
|
const data = await request<{
|
|
message: ClickClackMessage & { attachments?: Array<{ id: string }> };
|
|
}>(`/api/messages/by-nonce?${query.toString()}`);
|
|
return data.message;
|
|
} catch (error) {
|
|
if (error instanceof ClickClackHttpError && error.status === 404) {
|
|
if (error.headers.get("X-ClickClack-Message-Nonce") === "supported") {
|
|
return undefined;
|
|
}
|
|
throw new Error("ClickClack server does not support durable message nonce lookup", {
|
|
cause: error,
|
|
});
|
|
}
|
|
throw error;
|
|
}
|
|
},
|
|
createChannelMessage: async (
|
|
channelId: string,
|
|
body: string,
|
|
opts?: {
|
|
provenance?: ClickClackMessageProvenance;
|
|
quotedMessageId?: string;
|
|
nonce?: string;
|
|
},
|
|
): Promise<ClickClackMessage> => {
|
|
const data = await request<{ message: ClickClackMessage }>(
|
|
`/api/channels/${encodeURIComponent(channelId)}/messages`,
|
|
{
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
body,
|
|
...(opts?.quotedMessageId ? { quoted_message_id: opts.quotedMessageId } : {}),
|
|
...(opts?.nonce ? { nonce: opts.nonce } : {}),
|
|
...provenanceFields(opts?.provenance),
|
|
}),
|
|
},
|
|
);
|
|
return data.message;
|
|
},
|
|
createThreadReply: async (
|
|
messageId: string,
|
|
body: string,
|
|
opts?: { provenance?: ClickClackMessageProvenance; nonce?: string },
|
|
): Promise<ClickClackMessage> => {
|
|
const data = await request<{ message: ClickClackMessage }>(
|
|
`/api/messages/${encodeURIComponent(messageId)}/thread/replies`,
|
|
{
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
body,
|
|
...(opts?.nonce ? { nonce: opts.nonce } : {}),
|
|
...provenanceFields(opts?.provenance),
|
|
}),
|
|
},
|
|
);
|
|
return data.message;
|
|
},
|
|
createDirectConversation: async (
|
|
workspaceId: string,
|
|
memberIds: string[],
|
|
): Promise<{ id: string }> => {
|
|
const data = await request<{ conversation: { id: string } }>("/api/dms", {
|
|
method: "POST",
|
|
body: JSON.stringify({ workspace_id: workspaceId, member_ids: memberIds }),
|
|
});
|
|
return data.conversation;
|
|
},
|
|
createUpload: async (params: {
|
|
workspaceId: string;
|
|
buffer: Buffer;
|
|
filename: string;
|
|
contentType: string;
|
|
nonce?: string;
|
|
}): Promise<ClickClackUpload> => {
|
|
const form = new FormData();
|
|
const bytes = new Uint8Array(params.buffer);
|
|
form.append("file", new Blob([bytes], { type: params.contentType }), params.filename);
|
|
const query = new URLSearchParams({ workspace_id: params.workspaceId });
|
|
if (params.nonce) {
|
|
query.set("nonce", params.nonce);
|
|
}
|
|
const data = await request<{ upload: ClickClackUpload }>(`/api/uploads?${query.toString()}`, {
|
|
method: "POST",
|
|
body: form,
|
|
});
|
|
return data.upload;
|
|
},
|
|
findUploadByNonce: async (params: {
|
|
workspaceId: string;
|
|
nonce: string;
|
|
}): Promise<ClickClackUpload | undefined> => {
|
|
const query = new URLSearchParams({
|
|
workspace_id: params.workspaceId,
|
|
nonce: params.nonce,
|
|
});
|
|
try {
|
|
const data = await request<{ upload: ClickClackUpload }>(
|
|
`/api/uploads/by-nonce?${query.toString()}`,
|
|
);
|
|
return data.upload;
|
|
} catch (error) {
|
|
if (error instanceof ClickClackHttpError && error.status === 404) {
|
|
if (error.headers.get("X-ClickClack-Upload-Nonce") === "supported") {
|
|
return undefined;
|
|
}
|
|
throw new Error("ClickClack server does not support durable upload nonce lookup", {
|
|
cause: error,
|
|
});
|
|
}
|
|
throw error;
|
|
}
|
|
},
|
|
attachUpload: async (messageId: string, uploadId: string): Promise<void> => {
|
|
await request<{ ok: true }>(`/api/messages/${encodeURIComponent(messageId)}/attachments`, {
|
|
method: "POST",
|
|
body: JSON.stringify({ upload_id: uploadId }),
|
|
});
|
|
},
|
|
/**
|
|
* POSTs a durable agent activity row (agent_commentary / agent_tool)
|
|
* through the normal message create path. Requires a bot token carrying
|
|
* the agent_activity:write scope on the ClickClack side.
|
|
*/
|
|
createActivityMessage: async (params: {
|
|
channelId?: string;
|
|
conversationId?: string;
|
|
body: string;
|
|
kind: "agent_commentary" | "agent_tool";
|
|
turnId?: string;
|
|
provenance?: ClickClackMessageProvenance;
|
|
}): Promise<ClickClackMessage> => {
|
|
if (!params.channelId && !params.conversationId) {
|
|
throw new Error("createActivityMessage requires a channelId or conversationId");
|
|
}
|
|
const path = params.channelId
|
|
? `/api/channels/${encodeURIComponent(params.channelId)}/messages`
|
|
: `/api/dms/${encodeURIComponent(params.conversationId ?? "")}/messages`;
|
|
const data = await request<{ message: ClickClackMessage }>(path, {
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
body: params.body,
|
|
kind: params.kind,
|
|
turn_id: params.turnId,
|
|
...provenanceFields(params.provenance),
|
|
}),
|
|
});
|
|
return data.message;
|
|
},
|
|
/** PATCHes the body of an existing message (activity row coalescing). */
|
|
updateMessageBody: async (messageId: string, body: string): Promise<ClickClackMessage> => {
|
|
const data = await request<{ message: ClickClackMessage }>(
|
|
`/api/messages/${encodeURIComponent(messageId)}`,
|
|
{ method: "PATCH", body: JSON.stringify({ body }) },
|
|
);
|
|
return data.message;
|
|
},
|
|
createDirectMessage: async (
|
|
conversationId: string,
|
|
body: string,
|
|
opts?: { quotedMessageId?: string; nonce?: string },
|
|
): Promise<ClickClackMessage> => {
|
|
const data = await request<{ message: ClickClackMessage }>(
|
|
`/api/dms/${encodeURIComponent(conversationId)}/messages`,
|
|
{
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
body,
|
|
...(opts?.quotedMessageId ? { quoted_message_id: opts.quotedMessageId } : {}),
|
|
...(opts?.nonce ? { nonce: opts.nonce } : {}),
|
|
}),
|
|
},
|
|
);
|
|
return data.message;
|
|
},
|
|
events: async (workspaceId: string, afterCursor?: string): Promise<ClickClackEvent[]> =>
|
|
(await fetchEventPage(workspaceId, { afterCursor })).events,
|
|
eventPage: fetchEventPage,
|
|
websocket: (workspaceId: string, afterCursor?: string): WebSocket => {
|
|
const url = new URL(`${baseUrl}/api/realtime/ws`);
|
|
url.protocol = url.protocol === "https:" ? "wss:" : "ws:";
|
|
url.searchParams.set("workspace_id", workspaceId);
|
|
if (afterCursor) {
|
|
url.searchParams.set("after_cursor", afterCursor);
|
|
}
|
|
return new WebSocket(url, {
|
|
headers: {
|
|
Authorization: `Bearer ${options.token}`,
|
|
},
|
|
handshakeTimeout: CLICKCLACK_WEBSOCKET_HANDSHAKE_TIMEOUT_MS,
|
|
maxPayload: CLICKCLACK_INBOUND_JSON_LIMIT_BYTES,
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
/** Client shape returned by `createClickClackClient`. */
|
|
export type ClickClackClient = ReturnType<typeof createClickClackClient>;
|