2026-02-04 10:09:28 +00:00
|
|
|
import type { Message } from "@grammyjs/types";
|
2026-02-16 23:20:16 -05:00
|
|
|
import { createDedupeCache } from "../infra/dedupe.js";
|
2026-02-17 13:36:48 +09:00
|
|
|
import type { TelegramContext } from "./bot/types.js";
|
2026-01-14 09:11:32 +00:00
|
|
|
|
|
|
|
|
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<{
|
2026-02-04 10:09:28 +00:00
|
|
|
msg: Message;
|
2026-01-14 09:11:32 +00:00
|
|
|
ctx: TelegramContext;
|
|
|
|
|
}>;
|
|
|
|
|
timer: ReturnType<typeof setTimeout>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TelegramUpdateKeyContext = {
|
|
|
|
|
update?: {
|
|
|
|
|
update_id?: number;
|
2026-02-04 10:09:28 +00:00
|
|
|
message?: Message;
|
|
|
|
|
edited_message?: Message;
|
2026-01-14 09:11:32 +00:00
|
|
|
};
|
|
|
|
|
update_id?: number;
|
2026-02-04 10:09:28 +00:00
|
|
|
message?: Message;
|
|
|
|
|
callbackQuery?: { id?: string; message?: Message };
|
2026-01-14 09:11:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const resolveTelegramUpdateId = (ctx: TelegramUpdateKeyContext) =>
|
|
|
|
|
ctx.update?.update_id ?? ctx.update_id;
|
|
|
|
|
|
|
|
|
|
export const buildTelegramUpdateKey = (ctx: TelegramUpdateKeyContext) => {
|
|
|
|
|
const updateId = resolveTelegramUpdateId(ctx);
|
2026-01-31 16:19:20 +09:00
|
|
|
if (typeof updateId === "number") {
|
|
|
|
|
return `update:${updateId}`;
|
|
|
|
|
}
|
2026-01-14 09:11:32 +00:00
|
|
|
const callbackId = ctx.callbackQuery?.id;
|
2026-01-31 16:19:20 +09:00
|
|
|
if (callbackId) {
|
|
|
|
|
return `callback:${callbackId}`;
|
|
|
|
|
}
|
2026-01-14 09:11:32 +00:00
|
|
|
const msg =
|
2026-01-14 14:31:43 +00:00
|
|
|
ctx.message ?? ctx.update?.message ?? ctx.update?.edited_message ?? ctx.callbackQuery?.message;
|
2026-01-14 09:11:32 +00:00
|
|
|
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 };
|