Files
adolf/extensions/telegram/src/update-offset-store.ts
alvis bedb527145
Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Vendor OpenClaw source as Adolf fork baseline
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11),
free to diverge. Tree copied sans upstream .git; upstream remote added for
future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19.
Preserves docs/ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
2026-07-05 09:36:54 +00:00

242 lines
7.2 KiB
TypeScript

// Telegram plugin module implements update offset store behavior.
import { readJsonFileWithFallback } from "openclaw/plugin-sdk/json-store";
import type { PluginStateKeyedStore } from "openclaw/plugin-sdk/plugin-state-runtime";
import { getTelegramRuntime } from "./runtime.js";
import { normalizeTelegramStateAccountId } from "./state-account-id.js";
import { fingerprintTelegramBotToken } from "./token-fingerprint.js";
const STORE_VERSION = 3;
export const TELEGRAM_UPDATE_OFFSET_NAMESPACE = "telegram.update-offsets";
export const TELEGRAM_UPDATE_OFFSET_MAX_ENTRIES = 1_000;
export type TelegramUpdateOffsetState = {
version: number;
lastUpdateId: number | null;
botId: string | null;
tokenFingerprint: string | null;
};
type TelegramUpdateOffsetStore = PluginStateKeyedStore<TelegramUpdateOffsetState>;
let updateOffsetStoreForTest: TelegramUpdateOffsetStore | undefined;
function isValidUpdateId(value: unknown): value is number {
return typeof value === "number" && Number.isSafeInteger(value) && value >= 0;
}
export function normalizeTelegramUpdateOffsetAccountId(accountId?: string) {
return normalizeTelegramStateAccountId(accountId);
}
function openUpdateOffsetStore(env?: NodeJS.ProcessEnv): TelegramUpdateOffsetStore {
return (
updateOffsetStoreForTest ??
getTelegramRuntime().state.openKeyedStore<TelegramUpdateOffsetState>({
namespace: TELEGRAM_UPDATE_OFFSET_NAMESPACE,
maxEntries: TELEGRAM_UPDATE_OFFSET_MAX_ENTRIES,
...(env ? { env } : {}),
})
);
}
function extractBotIdFromToken(token?: string): string | null {
const trimmed = token?.trim();
if (!trimmed) {
return null;
}
const [rawBotId] = trimmed.split(":", 1);
if (!rawBotId || !/^\d+$/.test(rawBotId)) {
return null;
}
return rawBotId;
}
function fingerprintFromToken(token?: string): string | null {
const trimmed = token?.trim();
if (!trimmed) {
return null;
}
return fingerprintTelegramBotToken(trimmed);
}
function safeParseState(parsed: unknown): TelegramUpdateOffsetState | null {
try {
const state = parsed as {
version?: number;
lastUpdateId?: number | null;
botId?: string | null;
tokenFingerprint?: string | null;
};
if (state?.version !== STORE_VERSION && state?.version !== 2 && state?.version !== 1) {
return null;
}
if (state.lastUpdateId !== null && !isValidUpdateId(state.lastUpdateId)) {
return null;
}
if (state.version >= 2 && state.botId !== null && typeof state.botId !== "string") {
return null;
}
if (
state.version === STORE_VERSION &&
state.tokenFingerprint !== null &&
typeof state.tokenFingerprint !== "string"
) {
return null;
}
return {
version: state.version,
lastUpdateId: state.lastUpdateId ?? null,
botId: state.version >= 2 ? (state.botId ?? null) : null,
tokenFingerprint: state.version === STORE_VERSION ? (state.tokenFingerprint ?? null) : null,
};
} catch {
return null;
}
}
export type TelegramOffsetRotationReason = "bot-id-changed" | "token-rotated" | "legacy-state";
export type TelegramUpdateOffsetRotationInfo = {
reason: TelegramOffsetRotationReason;
previousBotId: string | null;
currentBotId: string;
staleLastUpdateId: number;
};
function rotationForToken(
parsed: TelegramUpdateOffsetState,
botToken?: string,
): TelegramUpdateOffsetRotationInfo | null {
const currentBotId = extractBotIdFromToken(botToken);
if (!currentBotId || parsed.lastUpdateId === null) {
return null;
}
let reason: TelegramOffsetRotationReason | null = null;
if (parsed.botId === null) {
reason = "legacy-state";
} else if (parsed.botId !== currentBotId) {
reason = "bot-id-changed";
} else if (parsed.tokenFingerprint === null) {
reason = "legacy-state";
} else if (parsed.tokenFingerprint !== fingerprintFromToken(botToken)) {
reason = "token-rotated";
}
return reason
? {
reason,
previousBotId: parsed.botId,
currentBotId,
staleLastUpdateId: parsed.lastUpdateId,
}
: null;
}
export async function readTelegramUpdateOffset(params: {
accountId?: string;
botToken?: string;
env?: NodeJS.ProcessEnv;
onRotationDetected?: (info: TelegramUpdateOffsetRotationInfo) => void | Promise<void>;
}): Promise<number | null> {
const key = normalizeTelegramUpdateOffsetAccountId(params.accountId);
let storedValue: unknown;
try {
storedValue = await openUpdateOffsetStore(params.env).lookup(key);
} catch {
storedValue = undefined;
}
const parsed = safeParseState(storedValue);
if (!parsed) {
return null;
}
const rotation = rotationForToken(parsed, params.botToken);
if (rotation) {
await params.onRotationDetected?.(rotation);
return null;
}
return parsed.lastUpdateId;
}
export async function writeTelegramUpdateOffset(params: {
accountId?: string;
updateId: number;
botToken?: string;
env?: NodeJS.ProcessEnv;
}): Promise<void> {
if (!isValidUpdateId(params.updateId)) {
throw new Error("Telegram update offset must be a non-negative safe integer.");
}
const payload: TelegramUpdateOffsetState = {
version: STORE_VERSION,
lastUpdateId: params.updateId,
botId: extractBotIdFromToken(params.botToken),
tokenFingerprint: fingerprintFromToken(params.botToken),
};
await openUpdateOffsetStore(params.env).register(
normalizeTelegramUpdateOffsetAccountId(params.accountId),
payload,
);
}
export async function deleteTelegramUpdateOffset(params: {
accountId?: string;
env?: NodeJS.ProcessEnv;
}): Promise<void> {
await openUpdateOffsetStore(params.env).delete(
normalizeTelegramUpdateOffsetAccountId(params.accountId),
);
}
export function setTelegramUpdateOffsetStoreForTest(
store: TelegramUpdateOffsetStore | undefined,
): void {
updateOffsetStoreForTest = store;
}
export async function listTelegramLegacyUpdateOffsetEntries(params: {
accountId?: string;
persistedPath: string;
}): Promise<Array<{ key: string; value: TelegramUpdateOffsetState }>> {
const { value } = await readJsonFileWithFallback<unknown>(params.persistedPath, null);
const parsed = safeParseState(value);
if (!parsed || parsed.lastUpdateId === null) {
return [];
}
return [{ key: normalizeTelegramUpdateOffsetAccountId(params.accountId), value: parsed }];
}
export function shouldReplaceTelegramUpdateOffsetEntry(params: {
existingValue: unknown;
incomingValue: unknown;
botToken?: string;
}): boolean {
const existing = safeParseState(params.existingValue);
const incoming = safeParseState(params.incomingValue);
if (!incoming || incoming.lastUpdateId === null) {
return false;
}
if (!existing || existing.lastUpdateId === null) {
return true;
}
if (!params.botToken) {
if (existing.botId && incoming.botId && existing.botId !== incoming.botId) {
return false;
}
if (
existing.tokenFingerprint &&
incoming.tokenFingerprint &&
existing.tokenFingerprint !== incoming.tokenFingerprint
) {
return false;
}
}
const incomingRotation = rotationForToken(incoming, params.botToken);
if (incomingRotation) {
return false;
}
const existingRotation = rotationForToken(existing, params.botToken);
if (existingRotation) {
return true;
}
return incoming.lastUpdateId > existing.lastUpdateId;
}