53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import type { ChannelOutboundAdapter } from "clawdbot/plugin-sdk";
|
|
|
|
import { getMatrixRuntime } from "./runtime.js";
|
|
import { sendMessageMatrix, sendPollMatrix } from "./matrix/send.js";
|
|
|
|
export const matrixOutbound: ChannelOutboundAdapter = {
|
|
deliveryMode: "direct",
|
|
chunker: (text, limit) => getMatrixRuntime().channel.text.chunkMarkdownText(text, limit),
|
|
textChunkLimit: 4000,
|
|
sendText: async ({ to, text, deps, replyToId, threadId }) => {
|
|
const send = deps?.sendMatrix ?? sendMessageMatrix;
|
|
const resolvedThreadId =
|
|
threadId !== undefined && threadId !== null ? String(threadId) : undefined;
|
|
const result = await send(to, text, {
|
|
replyToId: replyToId ?? undefined,
|
|
threadId: resolvedThreadId,
|
|
});
|
|
return {
|
|
channel: "matrix",
|
|
messageId: result.messageId,
|
|
roomId: result.roomId,
|
|
};
|
|
},
|
|
sendMedia: async ({ to, text, mediaUrl, deps, replyToId, threadId }) => {
|
|
const send = deps?.sendMatrix ?? sendMessageMatrix;
|
|
const resolvedThreadId =
|
|
threadId !== undefined && threadId !== null ? String(threadId) : undefined;
|
|
const result = await send(to, text, {
|
|
mediaUrl,
|
|
replyToId: replyToId ?? undefined,
|
|
threadId: resolvedThreadId,
|
|
});
|
|
return {
|
|
channel: "matrix",
|
|
messageId: result.messageId,
|
|
roomId: result.roomId,
|
|
};
|
|
},
|
|
sendPoll: async ({ to, poll, threadId }) => {
|
|
const resolvedThreadId =
|
|
threadId !== undefined && threadId !== null ? String(threadId) : undefined;
|
|
const result = await sendPollMatrix(to, poll, {
|
|
threadId: resolvedThreadId,
|
|
});
|
|
return {
|
|
channel: "matrix",
|
|
messageId: result.eventId,
|
|
roomId: result.roomId,
|
|
pollId: result.eventId,
|
|
};
|
|
},
|
|
};
|