refactor!: rename chat providers to channels

This commit is contained in:
Peter Steinberger
2026-01-13 06:16:43 +00:00
parent 0cd632ba84
commit 90342a4f3a
393 changed files with 8004 additions and 6737 deletions

View File

@@ -0,0 +1,68 @@
import { normalizeChannelId } from "../channels/registry.js";
import { normalizeAccountId } from "../routing/session-key.js";
import type { ClawdbotConfig } from "./config.js";
function normalizeCapabilities(
capabilities: string[] | undefined,
): string[] | undefined {
if (!capabilities) return undefined;
const normalized = capabilities.map((entry) => entry.trim()).filter(Boolean);
return normalized.length > 0 ? normalized : undefined;
}
function resolveAccountCapabilities(params: {
cfg?: { accounts?: Record<string, { capabilities?: string[] }> } & {
capabilities?: string[];
};
accountId?: string | null;
}): string[] | undefined {
const cfg = params.cfg;
if (!cfg) return undefined;
const normalizedAccountId = normalizeAccountId(params.accountId);
const accounts = cfg.accounts;
if (accounts && typeof accounts === "object") {
const direct = accounts[normalizedAccountId];
if (direct) {
return (
normalizeCapabilities(direct.capabilities) ??
normalizeCapabilities(cfg.capabilities)
);
}
const matchKey = Object.keys(accounts).find(
(key) => key.toLowerCase() === normalizedAccountId.toLowerCase(),
);
const match = matchKey ? accounts[matchKey] : undefined;
if (match) {
return (
normalizeCapabilities(match.capabilities) ??
normalizeCapabilities(cfg.capabilities)
);
}
}
return normalizeCapabilities(cfg.capabilities);
}
export function resolveChannelCapabilities(params: {
cfg?: ClawdbotConfig;
channel?: string | null;
accountId?: string | null;
}): string[] | undefined {
const cfg = params.cfg;
const channel = normalizeChannelId(params.channel);
if (!cfg || !channel) return undefined;
const channelsConfig = cfg.channels as Record<string, unknown> | undefined;
const channelConfig = (channelsConfig?.[channel] ??
(cfg as Record<string, unknown>)[channel]) as
| {
accounts?: Record<string, { capabilities?: string[] }>;
capabilities?: string[];
}
| undefined;
return resolveAccountCapabilities({
cfg: channelConfig,
accountId: params.accountId,
});
}