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
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
283 lines
10 KiB
TypeScript
283 lines
10 KiB
TypeScript
// Telegram plugin module implements shared behavior.
|
|
import { resolveNormalizedAccountEntry } from "openclaw/plugin-sdk/account-core";
|
|
import { normalizeAccountId } from "openclaw/plugin-sdk/account-id";
|
|
import { formatAllowFromLowercase } from "openclaw/plugin-sdk/allow-from";
|
|
import {
|
|
adaptScopedAccountAccessor,
|
|
createScopedChannelConfigAdapter,
|
|
} from "openclaw/plugin-sdk/channel-config-helpers";
|
|
import { createChannelPluginBase, type ChannelPlugin } from "openclaw/plugin-sdk/channel-core";
|
|
import { getChatChannelMeta } from "openclaw/plugin-sdk/channel-plugin-common";
|
|
import type { OpenClawConfig, TelegramAccountConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
import { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/routing";
|
|
import { inspectTelegramAccount } from "./account-inspect.js";
|
|
import {
|
|
listTelegramAccountIds,
|
|
mergeTelegramAccountConfig,
|
|
resolveDefaultTelegramAccountId,
|
|
resolveTelegramAccount,
|
|
type ResolvedTelegramAccount,
|
|
} from "./accounts.js";
|
|
import {
|
|
buildTelegramCommandsListChannelData,
|
|
buildTelegramModelBrowseChannelData,
|
|
buildTelegramModelsAddProviderChannelData,
|
|
buildTelegramModelsListChannelData,
|
|
buildTelegramModelsMenuChannelData,
|
|
buildTelegramModelsProviderChannelData,
|
|
} from "./command-ui.js";
|
|
import { TelegramChannelConfigSchema } from "./config-schema.js";
|
|
import { telegramDoctor } from "./doctor.js";
|
|
import { collectRuntimeConfigAssignments, secretTargetRegistryEntries } from "./secret-contract.js";
|
|
import { telegramSecurityAdapter } from "./security.js";
|
|
import { namedAccountPromotionKeys, singleAccountKeysToMove } from "./setup-contract.js";
|
|
|
|
const TELEGRAM_CHANNEL = "telegram" as const;
|
|
|
|
type TelegramConfigAccessorAccount = {
|
|
config: TelegramAccountConfig;
|
|
};
|
|
|
|
export function findTelegramTokenOwnerAccountId(params: {
|
|
cfg: OpenClawConfig;
|
|
accountId: string;
|
|
}): string | null {
|
|
const normalizedAccountId = normalizeAccountId(params.accountId);
|
|
const tokenOwners = new Map<string, string>();
|
|
for (const id of listTelegramAccountIds(params.cfg)) {
|
|
const account = inspectTelegramAccount({ cfg: params.cfg, accountId: id });
|
|
const token = (account.token ?? "").trim();
|
|
if (!token) {
|
|
continue;
|
|
}
|
|
const ownerAccountId = tokenOwners.get(token);
|
|
if (!ownerAccountId) {
|
|
tokenOwners.set(token, account.accountId);
|
|
continue;
|
|
}
|
|
if (account.accountId === normalizedAccountId) {
|
|
return ownerAccountId;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
export function formatDuplicateTelegramTokenReason(params: {
|
|
accountId: string;
|
|
ownerAccountId: string;
|
|
}): string {
|
|
return (
|
|
`Duplicate Telegram bot token: account "${params.accountId}" shares a token with ` +
|
|
`account "${params.ownerAccountId}". Keep one owner account per bot token.`
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns true when the runtime token resolver (`resolveTelegramToken`) would
|
|
* block channel-level fallthrough for the given accountId. This mirrors the
|
|
* guard in `token.ts` so that status-check functions (`isConfigured`,
|
|
* `unconfiguredReason`, `describeAccount`) stay consistent with the gateway
|
|
* runtime behaviour.
|
|
*
|
|
* The guard fires when:
|
|
* 1. The accountId is not the default account, AND
|
|
* 2. The config has an explicit `accounts` section with entries, AND
|
|
* 3. The accountId is not found in that `accounts` section.
|
|
*
|
|
* See: https://github.com/openclaw/openclaw/issues/53876
|
|
*/
|
|
function isBlockedByMultiBotGuard(cfg: OpenClawConfig, accountId: string): boolean {
|
|
if (normalizeAccountId(accountId) === DEFAULT_ACCOUNT_ID) {
|
|
return false;
|
|
}
|
|
const accounts = cfg.channels?.telegram?.accounts;
|
|
const hasConfiguredAccounts =
|
|
Boolean(accounts) &&
|
|
typeof accounts === "object" &&
|
|
!Array.isArray(accounts) &&
|
|
Object.keys(accounts).length > 0;
|
|
if (!hasConfiguredAccounts) {
|
|
return false;
|
|
}
|
|
// Use resolveNormalizedAccountEntry (same as resolveTelegramToken in token.ts)
|
|
// instead of resolveAccountEntry to handle keys that require full normalization
|
|
// (e.g. "Carey Notifications" → "carey-notifications").
|
|
return !resolveNormalizedAccountEntry(accounts, accountId, normalizeAccountId);
|
|
}
|
|
|
|
function resolveTelegramConfigAccessorAccount(params: {
|
|
cfg: OpenClawConfig;
|
|
accountId?: string | null;
|
|
}): TelegramConfigAccessorAccount {
|
|
const accountId = normalizeAccountId(
|
|
params.accountId ?? resolveDefaultTelegramAccountId(params.cfg),
|
|
);
|
|
return { config: mergeTelegramAccountConfig(params.cfg, accountId) };
|
|
}
|
|
|
|
export const telegramConfigAdapter = createScopedChannelConfigAdapter<
|
|
ResolvedTelegramAccount,
|
|
TelegramConfigAccessorAccount
|
|
>({
|
|
sectionKey: TELEGRAM_CHANNEL,
|
|
listAccountIds: listTelegramAccountIds,
|
|
resolveAccount: adaptScopedAccountAccessor(resolveTelegramAccount),
|
|
resolveAccessorAccount: resolveTelegramConfigAccessorAccount,
|
|
inspectAccount: adaptScopedAccountAccessor(inspectTelegramAccount),
|
|
defaultAccountId: resolveDefaultTelegramAccountId,
|
|
clearBaseFields: ["botToken", "tokenFile", "name"],
|
|
resolveAllowFrom: (account) => account.config.allowFrom,
|
|
formatAllowFrom: (allowFrom) =>
|
|
formatAllowFromLowercase({ allowFrom, stripPrefixRe: /^(telegram|tg):/i }),
|
|
resolveDefaultTo: (account) => account.config.defaultTo,
|
|
});
|
|
|
|
export function createTelegramPluginBase(params: {
|
|
setupWizard: NonNullable<ChannelPlugin<ResolvedTelegramAccount>["setupWizard"]>;
|
|
setup: NonNullable<ChannelPlugin<ResolvedTelegramAccount>["setup"]>;
|
|
}): Pick<
|
|
ChannelPlugin<ResolvedTelegramAccount>,
|
|
| "id"
|
|
| "meta"
|
|
| "setupWizard"
|
|
| "capabilities"
|
|
| "commands"
|
|
| "doctor"
|
|
| "security"
|
|
| "reload"
|
|
| "configSchema"
|
|
| "config"
|
|
| "setup"
|
|
| "secrets"
|
|
> {
|
|
const base = createChannelPluginBase({
|
|
id: TELEGRAM_CHANNEL,
|
|
meta: {
|
|
...getChatChannelMeta(TELEGRAM_CHANNEL),
|
|
quickstartAllowFrom: true,
|
|
},
|
|
setupWizard: params.setupWizard,
|
|
capabilities: {
|
|
chatTypes: ["direct", "group", "channel", "thread"],
|
|
reactions: true,
|
|
threads: true,
|
|
media: true,
|
|
tts: {
|
|
voice: {
|
|
synthesisTarget: "voice-note",
|
|
},
|
|
},
|
|
polls: true,
|
|
nativeCommands: true,
|
|
blockStreaming: true,
|
|
},
|
|
commands: {
|
|
nativeCommandsAutoEnabled: true,
|
|
nativeSkillsAutoEnabled: true,
|
|
buildCommandsListChannelData: buildTelegramCommandsListChannelData,
|
|
buildModelsMenuChannelData: buildTelegramModelsMenuChannelData,
|
|
buildModelsProviderChannelData: buildTelegramModelsProviderChannelData,
|
|
buildModelsAddProviderChannelData: buildTelegramModelsAddProviderChannelData,
|
|
buildModelsListChannelData: buildTelegramModelsListChannelData,
|
|
buildModelBrowseChannelData: buildTelegramModelBrowseChannelData,
|
|
},
|
|
doctor: telegramDoctor,
|
|
security: telegramSecurityAdapter,
|
|
reload: { configPrefixes: ["channels.telegram"] },
|
|
configSchema: TelegramChannelConfigSchema,
|
|
config: {
|
|
...telegramConfigAdapter,
|
|
hasConfiguredState: ({ env }) =>
|
|
typeof env?.TELEGRAM_BOT_TOKEN === "string" && env.TELEGRAM_BOT_TOKEN.trim().length > 0,
|
|
isConfigured: (account, cfg) => {
|
|
// Use inspectTelegramAccount for a complete token resolution that includes
|
|
// channel-level fallback paths not available in resolveTelegramAccount.
|
|
// This ensures binding-created accountIds that inherit the channel-level
|
|
// token are correctly detected as configured.
|
|
// See: https://github.com/openclaw/openclaw/issues/53876
|
|
if (isBlockedByMultiBotGuard(cfg, account.accountId)) {
|
|
return false;
|
|
}
|
|
const inspected = inspectTelegramAccount({ cfg, accountId: account.accountId });
|
|
// Gate on actually available token, not just "configured" — the latter
|
|
// includes "configured_unavailable" (unreadable tokenFile, unresolved
|
|
// SecretRef) which would pass here but fail at runtime.
|
|
if (!inspected.token?.trim()) {
|
|
return false;
|
|
}
|
|
return !findTelegramTokenOwnerAccountId({ cfg, accountId: account.accountId });
|
|
},
|
|
unconfiguredReason: (account, cfg) => {
|
|
if (isBlockedByMultiBotGuard(cfg, account.accountId)) {
|
|
return `not configured: unknown accountId "${account.accountId}" in multi-bot setup`;
|
|
}
|
|
const inspected = inspectTelegramAccount({ cfg, accountId: account.accountId });
|
|
if (!inspected.token?.trim()) {
|
|
if (inspected.tokenStatus === "configured_unavailable") {
|
|
return `not configured: token ${inspected.tokenSource} is configured but unavailable`;
|
|
}
|
|
return "not configured";
|
|
}
|
|
const ownerAccountId = findTelegramTokenOwnerAccountId({
|
|
cfg,
|
|
accountId: account.accountId,
|
|
});
|
|
if (!ownerAccountId) {
|
|
return "not configured";
|
|
}
|
|
return formatDuplicateTelegramTokenReason({
|
|
accountId: account.accountId,
|
|
ownerAccountId,
|
|
});
|
|
},
|
|
describeAccount: (account, cfg) => {
|
|
if (isBlockedByMultiBotGuard(cfg, account.accountId)) {
|
|
return {
|
|
accountId: account.accountId,
|
|
name: account.name,
|
|
enabled: account.enabled,
|
|
configured: false,
|
|
tokenSource: "none" as const,
|
|
};
|
|
}
|
|
const inspected = inspectTelegramAccount({ cfg, accountId: account.accountId });
|
|
return {
|
|
accountId: account.accountId,
|
|
name: account.name,
|
|
enabled: account.enabled,
|
|
configured:
|
|
Boolean(inspected.token?.trim()) &&
|
|
!findTelegramTokenOwnerAccountId({ cfg, accountId: account.accountId }),
|
|
tokenSource: inspected.tokenSource,
|
|
};
|
|
},
|
|
},
|
|
setup: {
|
|
...params.setup,
|
|
namedAccountPromotionKeys,
|
|
singleAccountKeysToMove,
|
|
},
|
|
});
|
|
return {
|
|
...base,
|
|
secrets: {
|
|
secretTargetRegistryEntries,
|
|
collectRuntimeConfigAssignments,
|
|
},
|
|
} as Pick<
|
|
ChannelPlugin<ResolvedTelegramAccount>,
|
|
| "id"
|
|
| "meta"
|
|
| "setupWizard"
|
|
| "capabilities"
|
|
| "commands"
|
|
| "doctor"
|
|
| "security"
|
|
| "reload"
|
|
| "configSchema"
|
|
| "config"
|
|
| "setup"
|
|
| "secrets"
|
|
>;
|
|
}
|