mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 23:41:07 +00:00
* refactor: move Telegram channel implementation to extensions/telegram/src/ Move all Telegram channel code (123 files + 10 bot/ files + 8 channel plugin files) from src/telegram/ and src/channels/plugins/*/telegram.ts to extensions/telegram/src/. Leave thin re-export shims at original locations so cross-cutting src/ imports continue to resolve. - Fix all relative import paths in moved files (../X/ -> ../../../src/X/) - Fix vi.mock paths in 60 test files - Fix inline typeof import() expressions - Update tsconfig.plugin-sdk.dts.json rootDir to "." for cross-directory DTS - Update write-plugin-sdk-entry-dts.ts for new rootDir structure - Move channel plugin files with correct path remapping * fix: support keyed telegram send deps * fix: sync telegram extension copies with latest main * fix: correct import paths and remove misplaced files in telegram extension * fix: sync outbound-adapter with main (add sendTelegramPayloadMessages) and fix delivery.test import path
68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
import type { Message } from "@grammyjs/types";
|
|
import { createDedupeCache } from "../../../src/infra/dedupe.js";
|
|
import type { TelegramContext } from "./bot/types.js";
|
|
|
|
const MEDIA_GROUP_TIMEOUT_MS = 500;
|
|
const RECENT_TELEGRAM_UPDATE_TTL_MS = 5 * 60_000;
|
|
const RECENT_TELEGRAM_UPDATE_MAX = 2000;
|
|
|
|
export type MediaGroupEntry = {
|
|
messages: Array<{
|
|
msg: Message;
|
|
ctx: TelegramContext;
|
|
}>;
|
|
timer: ReturnType<typeof setTimeout>;
|
|
};
|
|
|
|
export type TelegramUpdateKeyContext = {
|
|
update?: {
|
|
update_id?: number;
|
|
message?: Message;
|
|
edited_message?: Message;
|
|
channel_post?: Message;
|
|
edited_channel_post?: Message;
|
|
};
|
|
update_id?: number;
|
|
message?: Message;
|
|
channelPost?: Message;
|
|
editedChannelPost?: Message;
|
|
callbackQuery?: { id?: string; message?: Message };
|
|
};
|
|
|
|
export const resolveTelegramUpdateId = (ctx: TelegramUpdateKeyContext) =>
|
|
ctx.update?.update_id ?? ctx.update_id;
|
|
|
|
export const buildTelegramUpdateKey = (ctx: TelegramUpdateKeyContext) => {
|
|
const updateId = resolveTelegramUpdateId(ctx);
|
|
if (typeof updateId === "number") {
|
|
return `update:${updateId}`;
|
|
}
|
|
const callbackId = ctx.callbackQuery?.id;
|
|
if (callbackId) {
|
|
return `callback:${callbackId}`;
|
|
}
|
|
const msg =
|
|
ctx.message ??
|
|
ctx.channelPost ??
|
|
ctx.editedChannelPost ??
|
|
ctx.update?.message ??
|
|
ctx.update?.edited_message ??
|
|
ctx.update?.channel_post ??
|
|
ctx.update?.edited_channel_post ??
|
|
ctx.callbackQuery?.message;
|
|
const chatId = msg?.chat?.id;
|
|
const messageId = msg?.message_id;
|
|
if (typeof chatId !== "undefined" && typeof messageId === "number") {
|
|
return `message:${chatId}:${messageId}`;
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
export const createTelegramUpdateDedupe = () =>
|
|
createDedupeCache({
|
|
ttlMs: RECENT_TELEGRAM_UPDATE_TTL_MS,
|
|
maxSize: RECENT_TELEGRAM_UPDATE_MAX,
|
|
});
|
|
|
|
export { MEDIA_GROUP_TIMEOUT_MS };
|