Files
openclaw/extensions/telegram/src/setup-core.ts
T
Peter Steinberger 99d662473c fix(channels): fail-fast headless channel setup with plugin-declared env contracts (#122530)
* fix(channels): validate headless channel setup

* docs(channels): document headless provisioning

* fix(channels): repair setup metadata typing

* chore(channels): regenerate official channel catalog for env metadata

* fix(slack): keep mode-conditional env contract plugin-owned

Static --use-env declaration keeps only the unconditional SLACK_BOT_TOKEN;
socket-vs-HTTP conditional requirements (app token, signing secret) stay in
Slack's own setup validation so HTTP mode no longer demands an irrelevant
SLACK_APP_TOKEN.

* chore(sdk): regenerate api baselines and catalog after rebase

* fix(slack): align manifest env declaration with runtime contract

* chore(sdk): regenerate api baselines after rebase

* chore(sdk): regenerate api baselines after rebase

* chore(sdk): regenerate api baselines after rebase
2026-08-12 17:12:15 +00:00

132 lines
4.6 KiB
TypeScript

import { defineChannelSetupContract } from "openclaw/plugin-sdk/channel-setup";
// Telegram plugin module implements setup core behavior.
import type { ChannelSetupAdapter } from "openclaw/plugin-sdk/setup-runtime";
import {
createEnvPatchedAccountSetupAdapter,
patchChannelConfigForAccount,
promptResolvedAllowFrom,
splitSetupEntries,
createSetupTranslator,
type OpenClawConfig,
type WizardPrompter,
} from "openclaw/plugin-sdk/setup-runtime";
import { formatCliCommand, formatDocsLink } from "openclaw/plugin-sdk/setup-tools";
import { resolveDefaultTelegramAccountId, resolveTelegramAccount } from "./accounts.js";
import { isNumericTelegramSenderUserId } from "./allow-from.js";
import { namedAccountPromotionKeys, singleAccountKeysToMove } from "./setup-contract.js";
const t = createSetupTranslator();
const channel = "telegram" as const;
export function getTelegramTokenHelpLines(): string[] {
return [
t("wizard.telegram.tokenHelpOpenBotFather"),
t("wizard.telegram.tokenHelpNewBot"),
t("wizard.telegram.tokenHelpCopyToken"),
// Telegram's documented BotFather Mini App deep link (core.telegram.org/bots/features);
// web-based alternative to the /newbot chat flow, also works on web.telegram.org.
t("wizard.telegram.tokenHelpWebApp", { url: "https://t.me/BotFather?startapp" }),
t("wizard.telegram.tokenEnvTip"),
t("wizard.channels.docs", { link: formatDocsLink("/telegram") }),
t("wizard.telegram.website", { url: "https://openclaw.ai" }),
];
}
export function getTelegramUserIdHelpLines(): string[] {
return [
t("wizard.telegram.userIdHelpLogs", {
command: formatCliCommand("openclaw logs --follow"),
}),
t("wizard.telegram.userIdHelpGetUpdates"),
t("wizard.telegram.userIdHelpThirdParty"),
t("wizard.channels.docs", { link: formatDocsLink("/telegram") }),
t("wizard.telegram.website", { url: "https://openclaw.ai" }),
];
}
function normalizeTelegramAllowFromInput(raw: string): string {
return raw
.trim()
.replace(/^(telegram|tg):/i, "")
.trim();
}
export function parseTelegramAllowFromId(raw: string): string | null {
const stripped = normalizeTelegramAllowFromInput(raw);
return isNumericTelegramSenderUserId(stripped) ? stripped : null;
}
export async function promptTelegramAllowFromForAccount(params: {
cfg: OpenClawConfig;
prompter: WizardPrompter;
accountId?: string;
}) {
const accountId = params.accountId ?? resolveDefaultTelegramAccountId(params.cfg);
const resolved = resolveTelegramAccount({ cfg: params.cfg, accountId });
await params.prompter.note(
getTelegramUserIdHelpLines().join("\n"),
t("wizard.telegram.userIdTitle"),
);
const unique = await promptResolvedAllowFrom({
prompter: params.prompter,
existing: resolved.config.allowFrom ?? [],
message: t("wizard.telegram.allowFromPrompt"),
placeholder: "123456789",
label: t("wizard.telegram.allowlistTitle"),
parseInputs: splitSetupEntries,
parseId: parseTelegramAllowFromId,
invalidWithoutTokenNote: t("wizard.telegram.allowFromInvalid"),
resolveEntries: async ({ entries }) =>
entries.map((entry) => {
const id = parseTelegramAllowFromId(entry);
return { input: entry, resolved: Boolean(id), id };
}),
});
return patchChannelConfigForAccount({
cfg: params.cfg,
channel,
accountId,
patch: { dmPolicy: "allowlist", allowFrom: unique },
setupSurface: telegramSetupAdapter,
});
}
export const telegramSetupAdapter: ChannelSetupAdapter = {
...createEnvPatchedAccountSetupAdapter({
channelKey: channel,
defaultAccountOnlyEnvError: "TELEGRAM_BOT_TOKEN can only be used for the default account.",
missingCredentialError: "Telegram requires token or --token-file (or --use-env).",
hasCredentials: (input) => Boolean(input.token || input.tokenFile),
buildPatch: (input) =>
input.tokenFile
? { tokenFile: input.tokenFile }
: input.token
? { botToken: input.token }
: {},
}),
singleAccountKeysToMove,
namedAccountPromotionKeys,
};
export const telegramSetupContract = defineChannelSetupContract({
fields: {
token: {
kind: "string",
sensitive: true,
cli: { flags: "--token <token>", description: "Telegram bot token" },
},
tokenFile: {
kind: "string",
sensitive: true,
cli: { flags: "--token-file <path>", description: "Telegram bot token file" },
},
useEnv: {
kind: "boolean",
cli: { flags: "--use-env", description: "Use TELEGRAM_BOT_TOKEN" },
envVars: ["TELEGRAM_BOT_TOKEN"],
},
},
legacyAdapter: telegramSetupAdapter,
});