Spaces:
Paused
Paused
| import type { OpenClawConfig } from "../config/config.js"; | |
| import type { DiscordAccountConfig } from "../config/types.js"; | |
| import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.js"; | |
| import { resolveDiscordToken } from "./token.js"; | |
| export type ResolvedDiscordAccount = { | |
| accountId: string; | |
| enabled: boolean; | |
| name?: string; | |
| token: string; | |
| tokenSource: "env" | "config" | "none"; | |
| config: DiscordAccountConfig; | |
| }; | |
| function listConfiguredAccountIds(cfg: OpenClawConfig): string[] { | |
| const accounts = cfg.channels?.discord?.accounts; | |
| if (!accounts || typeof accounts !== "object") { | |
| return []; | |
| } | |
| return Object.keys(accounts).filter(Boolean); | |
| } | |
| export function listDiscordAccountIds(cfg: OpenClawConfig): string[] { | |
| const ids = listConfiguredAccountIds(cfg); | |
| if (ids.length === 0) { | |
| return [DEFAULT_ACCOUNT_ID]; | |
| } | |
| return ids.toSorted((a, b) => a.localeCompare(b)); | |
| } | |
| export function resolveDefaultDiscordAccountId(cfg: OpenClawConfig): string { | |
| const ids = listDiscordAccountIds(cfg); | |
| if (ids.includes(DEFAULT_ACCOUNT_ID)) { | |
| return DEFAULT_ACCOUNT_ID; | |
| } | |
| return ids[0] ?? DEFAULT_ACCOUNT_ID; | |
| } | |
| function resolveAccountConfig( | |
| cfg: OpenClawConfig, | |
| accountId: string, | |
| ): DiscordAccountConfig | undefined { | |
| const accounts = cfg.channels?.discord?.accounts; | |
| if (!accounts || typeof accounts !== "object") { | |
| return undefined; | |
| } | |
| return accounts[accountId] as DiscordAccountConfig | undefined; | |
| } | |
| function mergeDiscordAccountConfig(cfg: OpenClawConfig, accountId: string): DiscordAccountConfig { | |
| const { accounts: _ignored, ...base } = (cfg.channels?.discord ?? {}) as DiscordAccountConfig & { | |
| accounts?: unknown; | |
| }; | |
| const account = resolveAccountConfig(cfg, accountId) ?? {}; | |
| return { ...base, ...account }; | |
| } | |
| export function resolveDiscordAccount(params: { | |
| cfg: OpenClawConfig; | |
| accountId?: string | null; | |
| }): ResolvedDiscordAccount { | |
| const accountId = normalizeAccountId(params.accountId); | |
| const baseEnabled = params.cfg.channels?.discord?.enabled !== false; | |
| const merged = mergeDiscordAccountConfig(params.cfg, accountId); | |
| const accountEnabled = merged.enabled !== false; | |
| const enabled = baseEnabled && accountEnabled; | |
| const tokenResolution = resolveDiscordToken(params.cfg, { accountId }); | |
| return { | |
| accountId, | |
| enabled, | |
| name: merged.name?.trim() || undefined, | |
| token: tokenResolution.token, | |
| tokenSource: tokenResolution.source, | |
| config: merged, | |
| }; | |
| } | |
| export function listEnabledDiscordAccounts(cfg: OpenClawConfig): ResolvedDiscordAccount[] { | |
| return listDiscordAccountIds(cfg) | |
| .map((accountId) => resolveDiscordAccount({ cfg, accountId })) | |
| .filter((account) => account.enabled); | |
| } | |