mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 09:21:23 +00:00
Co-authored-by: Oliver Drobnik <333270+odrobnik@users.noreply.github.com> Co-authored-by: thisischappy <257418353+thisischappy@users.noreply.github.com>
201 lines
5.7 KiB
TypeScript
201 lines
5.7 KiB
TypeScript
import type { AgentToolResult } from "@mariozechner/pi-agent-core";
|
|
import { dispatchChannelMessageAction } from "../../channels/plugins/message-actions.js";
|
|
import type { ChannelId, ChannelThreadingToolContext } from "../../channels/plugins/types.js";
|
|
import type { OpenClawConfig } from "../../config/config.js";
|
|
import { appendAssistantMessageToSessionTranscript } from "../../config/sessions.js";
|
|
import { getAgentScopedMediaLocalRoots } from "../../media/local-roots.js";
|
|
import type { GatewayClientMode, GatewayClientName } from "../../utils/message-channel.js";
|
|
import { throwIfAborted } from "./abort.js";
|
|
import type { OutboundSendDeps } from "./deliver.js";
|
|
import type { MessagePollResult, MessageSendResult } from "./message.js";
|
|
import { sendMessage, sendPoll } from "./message.js";
|
|
import { extractToolPayload } from "./tool-payload.js";
|
|
|
|
export type OutboundGatewayContext = {
|
|
url?: string;
|
|
token?: string;
|
|
timeoutMs?: number;
|
|
clientName: GatewayClientName;
|
|
clientDisplayName?: string;
|
|
mode: GatewayClientMode;
|
|
};
|
|
|
|
export type OutboundSendContext = {
|
|
cfg: OpenClawConfig;
|
|
channel: ChannelId;
|
|
params: Record<string, unknown>;
|
|
/** Active agent id for per-agent outbound media root scoping. */
|
|
agentId?: string;
|
|
accountId?: string | null;
|
|
gateway?: OutboundGatewayContext;
|
|
toolContext?: ChannelThreadingToolContext;
|
|
deps?: OutboundSendDeps;
|
|
dryRun: boolean;
|
|
mirror?: {
|
|
sessionKey: string;
|
|
agentId?: string;
|
|
text?: string;
|
|
mediaUrls?: string[];
|
|
};
|
|
abortSignal?: AbortSignal;
|
|
silent?: boolean;
|
|
};
|
|
|
|
type PluginHandledResult = {
|
|
handledBy: "plugin";
|
|
payload: unknown;
|
|
toolResult: AgentToolResult<unknown>;
|
|
};
|
|
|
|
async function tryHandleWithPluginAction(params: {
|
|
ctx: OutboundSendContext;
|
|
action: "send" | "poll";
|
|
onHandled?: () => Promise<void> | void;
|
|
}): Promise<PluginHandledResult | null> {
|
|
if (params.ctx.dryRun) {
|
|
return null;
|
|
}
|
|
const mediaLocalRoots = getAgentScopedMediaLocalRoots(
|
|
params.ctx.cfg,
|
|
params.ctx.agentId ?? params.ctx.mirror?.agentId,
|
|
);
|
|
const handled = await dispatchChannelMessageAction({
|
|
channel: params.ctx.channel,
|
|
action: params.action,
|
|
cfg: params.ctx.cfg,
|
|
params: params.ctx.params,
|
|
mediaLocalRoots,
|
|
accountId: params.ctx.accountId ?? undefined,
|
|
gateway: params.ctx.gateway,
|
|
toolContext: params.ctx.toolContext,
|
|
dryRun: params.ctx.dryRun,
|
|
});
|
|
if (!handled) {
|
|
return null;
|
|
}
|
|
await params.onHandled?.();
|
|
return {
|
|
handledBy: "plugin",
|
|
payload: extractToolPayload(handled),
|
|
toolResult: handled,
|
|
};
|
|
}
|
|
|
|
export async function executeSendAction(params: {
|
|
ctx: OutboundSendContext;
|
|
to: string;
|
|
message: string;
|
|
mediaUrl?: string;
|
|
mediaUrls?: string[];
|
|
gifPlayback?: boolean;
|
|
bestEffort?: boolean;
|
|
replyToId?: string;
|
|
threadId?: string | number;
|
|
}): Promise<{
|
|
handledBy: "plugin" | "core";
|
|
payload: unknown;
|
|
toolResult?: AgentToolResult<unknown>;
|
|
sendResult?: MessageSendResult;
|
|
}> {
|
|
throwIfAborted(params.ctx.abortSignal);
|
|
const pluginHandled = await tryHandleWithPluginAction({
|
|
ctx: params.ctx,
|
|
action: "send",
|
|
onHandled: async () => {
|
|
if (!params.ctx.mirror) {
|
|
return;
|
|
}
|
|
const mirrorText = params.ctx.mirror.text ?? params.message;
|
|
const mirrorMediaUrls =
|
|
params.ctx.mirror.mediaUrls ??
|
|
params.mediaUrls ??
|
|
(params.mediaUrl ? [params.mediaUrl] : undefined);
|
|
await appendAssistantMessageToSessionTranscript({
|
|
agentId: params.ctx.mirror.agentId,
|
|
sessionKey: params.ctx.mirror.sessionKey,
|
|
text: mirrorText,
|
|
mediaUrls: mirrorMediaUrls,
|
|
});
|
|
},
|
|
});
|
|
if (pluginHandled) {
|
|
return pluginHandled;
|
|
}
|
|
|
|
throwIfAborted(params.ctx.abortSignal);
|
|
const result: MessageSendResult = await sendMessage({
|
|
cfg: params.ctx.cfg,
|
|
to: params.to,
|
|
content: params.message,
|
|
agentId: params.ctx.agentId,
|
|
mediaUrl: params.mediaUrl || undefined,
|
|
mediaUrls: params.mediaUrls,
|
|
channel: params.ctx.channel || undefined,
|
|
accountId: params.ctx.accountId ?? undefined,
|
|
replyToId: params.replyToId,
|
|
threadId: params.threadId,
|
|
gifPlayback: params.gifPlayback,
|
|
dryRun: params.ctx.dryRun,
|
|
bestEffort: params.bestEffort ?? undefined,
|
|
deps: params.ctx.deps,
|
|
gateway: params.ctx.gateway,
|
|
mirror: params.ctx.mirror,
|
|
abortSignal: params.ctx.abortSignal,
|
|
silent: params.ctx.silent,
|
|
});
|
|
|
|
return {
|
|
handledBy: "core",
|
|
payload: result,
|
|
sendResult: result,
|
|
};
|
|
}
|
|
|
|
export async function executePollAction(params: {
|
|
ctx: OutboundSendContext;
|
|
to: string;
|
|
question: string;
|
|
options: string[];
|
|
maxSelections: number;
|
|
durationSeconds?: number;
|
|
durationHours?: number;
|
|
threadId?: string;
|
|
isAnonymous?: boolean;
|
|
}): Promise<{
|
|
handledBy: "plugin" | "core";
|
|
payload: unknown;
|
|
toolResult?: AgentToolResult<unknown>;
|
|
pollResult?: MessagePollResult;
|
|
}> {
|
|
const pluginHandled = await tryHandleWithPluginAction({
|
|
ctx: params.ctx,
|
|
action: "poll",
|
|
});
|
|
if (pluginHandled) {
|
|
return pluginHandled;
|
|
}
|
|
|
|
const result: MessagePollResult = await sendPoll({
|
|
cfg: params.ctx.cfg,
|
|
to: params.to,
|
|
question: params.question,
|
|
options: params.options,
|
|
maxSelections: params.maxSelections,
|
|
durationSeconds: params.durationSeconds ?? undefined,
|
|
durationHours: params.durationHours ?? undefined,
|
|
channel: params.ctx.channel,
|
|
accountId: params.ctx.accountId ?? undefined,
|
|
threadId: params.threadId ?? undefined,
|
|
silent: params.ctx.silent ?? undefined,
|
|
isAnonymous: params.isAnonymous ?? undefined,
|
|
dryRun: params.ctx.dryRun,
|
|
gateway: params.ctx.gateway,
|
|
});
|
|
|
|
return {
|
|
handledBy: "core",
|
|
payload: result,
|
|
pollResult: result,
|
|
};
|
|
}
|