mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
Merged via /review-pr -> /prepare-pr -> /merge-pr.
Prepared head SHA: 5e2285b6a0
Co-authored-by: Marvae <11957602+Marvae@users.noreply.github.com>
Co-authored-by: obviyus <22031114+obviyus@users.noreply.github.com>
Reviewed-by: @obviyus
154 lines
4.4 KiB
TypeScript
154 lines
4.4 KiB
TypeScript
import type { Bot } from "grammy";
|
|
import { createDraftStreamLoop } from "../channels/draft-stream-loop.js";
|
|
import { buildTelegramThreadParams, type TelegramThreadSpec } from "./bot/helpers.js";
|
|
|
|
const TELEGRAM_STREAM_MAX_CHARS = 4096;
|
|
const DEFAULT_THROTTLE_MS = 1000;
|
|
|
|
export type TelegramDraftStream = {
|
|
update: (text: string) => void;
|
|
flush: () => Promise<void>;
|
|
messageId: () => number | undefined;
|
|
clear: () => Promise<void>;
|
|
stop: () => Promise<void>;
|
|
/** Reset internal state so the next update creates a new message instead of editing. */
|
|
forceNewMessage: () => void;
|
|
};
|
|
|
|
export function createTelegramDraftStream(params: {
|
|
api: Bot["api"];
|
|
chatId: number;
|
|
maxChars?: number;
|
|
thread?: TelegramThreadSpec | null;
|
|
replyToMessageId?: number;
|
|
throttleMs?: number;
|
|
/** Minimum chars before sending first message (debounce for push notifications) */
|
|
minInitialChars?: number;
|
|
log?: (message: string) => void;
|
|
warn?: (message: string) => void;
|
|
}): TelegramDraftStream {
|
|
const maxChars = Math.min(
|
|
params.maxChars ?? TELEGRAM_STREAM_MAX_CHARS,
|
|
TELEGRAM_STREAM_MAX_CHARS,
|
|
);
|
|
const throttleMs = Math.max(250, params.throttleMs ?? DEFAULT_THROTTLE_MS);
|
|
const minInitialChars = params.minInitialChars;
|
|
const chatId = params.chatId;
|
|
const threadParams = buildTelegramThreadParams(params.thread);
|
|
const replyParams =
|
|
params.replyToMessageId != null
|
|
? { ...threadParams, reply_to_message_id: params.replyToMessageId }
|
|
: threadParams;
|
|
|
|
let streamMessageId: number | undefined;
|
|
let lastSentText = "";
|
|
let stopped = false;
|
|
let isFinal = false;
|
|
|
|
const sendOrEditStreamMessage = async (text: string): Promise<boolean> => {
|
|
// Allow final flush even if stopped (e.g., after clear()).
|
|
if (stopped && !isFinal) {
|
|
return false;
|
|
}
|
|
const trimmed = text.trimEnd();
|
|
if (!trimmed) {
|
|
return false;
|
|
}
|
|
if (trimmed.length > maxChars) {
|
|
// Telegram text messages/edits cap at 4096 chars.
|
|
// Stop streaming once we exceed the cap to avoid repeated API failures.
|
|
stopped = true;
|
|
params.warn?.(
|
|
`telegram stream preview stopped (text length ${trimmed.length} > ${maxChars})`,
|
|
);
|
|
return false;
|
|
}
|
|
if (trimmed === lastSentText) {
|
|
return true;
|
|
}
|
|
|
|
// Debounce first preview send for better push notification quality.
|
|
if (typeof streamMessageId !== "number" && minInitialChars != null && !isFinal) {
|
|
if (trimmed.length < minInitialChars) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
lastSentText = trimmed;
|
|
try {
|
|
if (typeof streamMessageId === "number") {
|
|
await params.api.editMessageText(chatId, streamMessageId, trimmed);
|
|
return true;
|
|
}
|
|
const sent = await params.api.sendMessage(chatId, trimmed, replyParams);
|
|
const sentMessageId = sent?.message_id;
|
|
if (typeof sentMessageId !== "number" || !Number.isFinite(sentMessageId)) {
|
|
stopped = true;
|
|
params.warn?.("telegram stream preview stopped (missing message id from sendMessage)");
|
|
return false;
|
|
}
|
|
streamMessageId = Math.trunc(sentMessageId);
|
|
return true;
|
|
} catch (err) {
|
|
stopped = true;
|
|
params.warn?.(
|
|
`telegram stream preview failed: ${err instanceof Error ? err.message : String(err)}`,
|
|
);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
const loop = createDraftStreamLoop({
|
|
throttleMs,
|
|
isStopped: () => stopped,
|
|
sendOrEditStreamMessage,
|
|
});
|
|
|
|
const update = (text: string) => {
|
|
if (stopped || isFinal) {
|
|
return;
|
|
}
|
|
loop.update(text);
|
|
};
|
|
|
|
const stop = async (): Promise<void> => {
|
|
isFinal = true;
|
|
await loop.flush();
|
|
};
|
|
|
|
const clear = async () => {
|
|
stopped = true;
|
|
loop.stop();
|
|
await loop.waitForInFlight();
|
|
const messageId = streamMessageId;
|
|
streamMessageId = undefined;
|
|
if (typeof messageId !== "number") {
|
|
return;
|
|
}
|
|
try {
|
|
await params.api.deleteMessage(chatId, messageId);
|
|
} catch (err) {
|
|
params.warn?.(
|
|
`telegram stream preview cleanup failed: ${err instanceof Error ? err.message : String(err)}`,
|
|
);
|
|
}
|
|
};
|
|
|
|
const forceNewMessage = () => {
|
|
streamMessageId = undefined;
|
|
lastSentText = "";
|
|
loop.resetPending();
|
|
};
|
|
|
|
params.log?.(`telegram stream preview ready (maxChars=${maxChars}, throttleMs=${throttleMs})`);
|
|
|
|
return {
|
|
update,
|
|
flush: loop.flush,
|
|
messageId: () => streamMessageId,
|
|
clear,
|
|
stop,
|
|
forceNewMessage,
|
|
};
|
|
}
|