mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 19:32:27 +00:00
80 lines
2.6 KiB
TypeScript
80 lines
2.6 KiB
TypeScript
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
|
|
import type { TelegramInlineButtonsScope } from "openclaw/plugin-sdk/config-runtime";
|
|
import { listTelegramAccountIds, resolveTelegramAccount } from "./accounts.js";
|
|
|
|
const DEFAULT_INLINE_BUTTONS_SCOPE: TelegramInlineButtonsScope = "allowlist";
|
|
|
|
function normalizeInlineButtonsScope(value: unknown): TelegramInlineButtonsScope | undefined {
|
|
if (typeof value !== "string") {
|
|
return undefined;
|
|
}
|
|
const trimmed = value.trim().toLowerCase();
|
|
if (
|
|
trimmed === "off" ||
|
|
trimmed === "dm" ||
|
|
trimmed === "group" ||
|
|
trimmed === "all" ||
|
|
trimmed === "allowlist"
|
|
) {
|
|
return trimmed as TelegramInlineButtonsScope;
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
function readInlineButtonsCapability(value: unknown): unknown {
|
|
if (!value || Array.isArray(value) || typeof value !== "object" || !("inlineButtons" in value)) {
|
|
return undefined;
|
|
}
|
|
return value.inlineButtons;
|
|
}
|
|
|
|
export function resolveTelegramInlineButtonsConfigScope(
|
|
capabilities: unknown,
|
|
): TelegramInlineButtonsScope | undefined {
|
|
return normalizeInlineButtonsScope(readInlineButtonsCapability(capabilities));
|
|
}
|
|
|
|
export function resolveTelegramInlineButtonsScopeFromCapabilities(
|
|
capabilities: unknown,
|
|
): TelegramInlineButtonsScope {
|
|
if (!capabilities) {
|
|
return DEFAULT_INLINE_BUTTONS_SCOPE;
|
|
}
|
|
if (Array.isArray(capabilities)) {
|
|
const enabled = capabilities.some(
|
|
(entry) => String(entry).trim().toLowerCase() === "inlinebuttons",
|
|
);
|
|
return enabled ? "all" : "off";
|
|
}
|
|
if (typeof capabilities === "object") {
|
|
return resolveTelegramInlineButtonsConfigScope(capabilities) ?? DEFAULT_INLINE_BUTTONS_SCOPE;
|
|
}
|
|
return DEFAULT_INLINE_BUTTONS_SCOPE;
|
|
}
|
|
|
|
export function resolveTelegramInlineButtonsScope(params: {
|
|
cfg: OpenClawConfig;
|
|
accountId?: string | null;
|
|
}): TelegramInlineButtonsScope {
|
|
const account = resolveTelegramAccount({ cfg: params.cfg, accountId: params.accountId });
|
|
return resolveTelegramInlineButtonsScopeFromCapabilities(account.config.capabilities);
|
|
}
|
|
|
|
export function isTelegramInlineButtonsEnabled(params: {
|
|
cfg: OpenClawConfig;
|
|
accountId?: string | null;
|
|
}): boolean {
|
|
if (params.accountId) {
|
|
return resolveTelegramInlineButtonsScope(params) !== "off";
|
|
}
|
|
const accountIds = listTelegramAccountIds(params.cfg);
|
|
if (accountIds.length === 0) {
|
|
return resolveTelegramInlineButtonsScope(params) !== "off";
|
|
}
|
|
return accountIds.some(
|
|
(accountId) => resolveTelegramInlineButtonsScope({ cfg: params.cfg, accountId }) !== "off",
|
|
);
|
|
}
|
|
|
|
export { resolveTelegramTargetChatType } from "./targets.js";
|