openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
332 lines (331 loc) • 17.8 kB
JavaScript
import { c as normalizeOptionalString } from "./string-coerce-mnp54Vah.js";
import { t as sanitizeForLog } from "./ansi-BI9w76Cm.js";
import { i as formatErrorMessage } from "./errors-BXgSefBE.js";
import { t as formatCliCommand } from "./command-format-CKGmlpAQ.js";
import { t as resolveCliArgvInvocation } from "./argv-invocation-CxGUjPqA.js";
import { t as normalizeWindowsArgv } from "./windows-argv-QUQsoRvr.js";
import { t as formatDocsLink } from "./links-CsLBrRff.js";
import { r as theme } from "./theme-vjDs9tao.js";
import { t as createLazyImportLoader } from "./lazy-promise-BONnzNfb.js";
import { t as hasExplicitOptions } from "./command-options-Dhjl7AMa.js";
import { n as defaultRuntime } from "./runtime-B4lgFmsS.js";
import { r as setVerbose } from "./global-state-BAD7XgmL.js";
import { t as isBlockedObjectKey } from "./prototype-keys-D2nJOZIy.js";
import { t as danger } from "./globals-GTrXU4s9.js";
import { i as getRuntimeConfig, u as readConfigFileSnapshot } from "./io-Gi7-pyU-.js";
import "./config-C9RxTsn1.js";
import { l as formatUnsupportedChannelActionMessage } from "./error-format-COoNML-C.js";
import { i as GATEWAY_CLIENT_NAMES, r as GATEWAY_CLIENT_MODES } from "./client-info-CcqJJIan.js";
import { o as callGateway } from "./call-B5-GYOlf.js";
import { t as applyPluginAutoEnable } from "./plugin-auto-enable-pAtqig-B.js";
import { a as normalizeChannelId, i as listChannelPlugins } from "./registry-MkxNn1Ue.js";
import "./plugins-t2ejWcVy.js";
import "./message-channel-BiOeMu0l.js";
import { i as resolveChannelDefaultAccountId } from "./helpers-BLGguEiN.js";
import { n as runCommandWithRuntime } from "./cli-utils-Cuzzfy1Q.js";
import { t as formatHelpExamples } from "./help-format-CAcwboTs.js";
import { t as commitConfigWithPendingPluginInstalls } from "./plugins-install-record-commit--Zbbdxlm.js";
import { t as resolveInstallableChannelPlugin } from "./channel-plugin-resolution-BCjPdSkx.js";
import { t as formatCliChannelOptions } from "./channel-options-9soazQz0.js";
import { t as applyParentDefaultHelpAction } from "./parent-default-help-DQUF3qKA.js";
//#region src/cli/channel-auth.ts
function supportsChannelAuthMode(plugin, mode) {
return mode === "login" ? Boolean(plugin.auth?.login) : Boolean(plugin.gateway?.logoutAccount);
}
function isConfiguredAuthPlugin(plugin, cfg) {
const key = plugin.id;
if (isBlockedObjectKey(key)) return false;
const channelCfg = cfg.channels?.[key];
if (channelCfg && typeof channelCfg === "object" && "enabled" in channelCfg && channelCfg.enabled === false) return false;
for (const accountId of plugin.config.listAccountIds(cfg)) try {
const account = plugin.config.resolveAccount(cfg, accountId);
if (plugin.config.isEnabled ? plugin.config.isEnabled(account, cfg) : account && typeof account === "object" ? account.enabled ?? true : true) return true;
} catch {
continue;
}
return false;
}
function resolveConfiguredAuthChannelInput(cfg, mode) {
const configured = listChannelPlugins().filter((plugin) => supportsChannelAuthMode(plugin, mode)).filter((plugin) => isConfiguredAuthPlugin(plugin, cfg)).map((plugin) => plugin.id);
if (configured.length === 1) return configured[0];
if (configured.length === 0) throw new Error(`No configured channel supports ${mode}. Run ${formatCliCommand("openclaw channels status")} to inspect channels or ${formatCliCommand("openclaw channels add --channel <channel>")} to add one.`);
const safeIds = configured.map(sanitizeForLog);
throw new Error(`Multiple configured channels support ${mode}: ${safeIds.join(", ")}. Choose one with --channel <channel>.`);
}
async function resolveChannelPluginForMode(opts, mode, cfg, runtime) {
const channelInput = opts.channel?.trim() || resolveConfiguredAuthChannelInput(cfg, mode);
const normalizedChannelId = normalizeChannelId(channelInput);
const resolved = await resolveInstallableChannelPlugin({
cfg,
runtime,
rawChannel: channelInput,
...normalizedChannelId ? { channelId: normalizedChannelId } : {},
allowInstall: true,
supports: (candidate) => supportsChannelAuthMode(candidate, mode)
});
const channelId = resolved.channelId ?? normalizedChannelId;
if (!channelId) throw new Error(`Unsupported channel "${channelInput}". Run ${formatCliCommand("openclaw channels list")} to see available channels.`);
const plugin = resolved.plugin;
if (!plugin || !supportsChannelAuthMode(plugin, mode)) throw new Error(formatUnsupportedChannelActionMessage({
channel: channelId,
action: mode,
inspectCommand: "openclaw channels status --channel " + channelId
}));
return {
cfg: resolved.cfg,
configChanged: resolved.configChanged,
channelInput,
channelId,
plugin
};
}
function resolveAccountContext(plugin, opts, cfg) {
return { accountId: normalizeOptionalString(opts.account) || resolveChannelDefaultAccountId({
plugin,
cfg
}) };
}
async function reconcileGatewayRuntimeAfterLocalLogin(params) {
if (!params.plugin.gateway?.startAccount) return;
if (params.cfg.gateway?.mode === "remote") {
params.runtime.log(`Gateway is in remote mode; local login saved auth for ${params.channelId}/${params.accountId} but did not start the remote runtime.`);
return;
}
try {
await callGateway({
config: params.cfg,
method: "channels.start",
params: {
channel: params.channelId,
accountId: params.accountId
},
mode: GATEWAY_CLIENT_MODES.BACKEND,
clientName: GATEWAY_CLIENT_NAMES.GATEWAY_CLIENT,
deviceIdentity: null
});
} catch (error) {
params.runtime.log(`Local login saved auth for ${params.channelId}/${params.accountId}, but the running gateway did not restart it: ${formatErrorMessage(error)}`);
}
}
async function logoutViaGatewayRuntime(params) {
try {
await callGateway({
config: params.cfg,
method: "channels.logout",
params: {
channel: params.channelId,
accountId: params.accountId
},
mode: GATEWAY_CLIENT_MODES.BACKEND,
clientName: GATEWAY_CLIENT_NAMES.GATEWAY_CLIENT,
deviceIdentity: null
});
return true;
} catch (error) {
if (params.cfg.gateway?.mode === "remote") throw error;
params.runtime.log(`Local logout will clear auth for ${params.channelId}/${params.accountId}, but the running gateway did not stop it: ${formatErrorMessage(error)}`);
return false;
}
}
async function runChannelLogin(opts, runtime = defaultRuntime) {
const sourceSnapshotPromise = readConfigFileSnapshot().catch(() => null);
const autoEnabled = applyPluginAutoEnable({
config: getRuntimeConfig(),
env: process.env
});
const loadedCfg = autoEnabled.config;
const resolvedChannel = await resolveChannelPluginForMode(opts, "login", loadedCfg, runtime);
let cfg = resolvedChannel.cfg;
const { configChanged, channelInput, plugin } = resolvedChannel;
if (autoEnabled.changes.length > 0 || configChanged) cfg = (await commitConfigWithPendingPluginInstalls({
nextConfig: cfg,
baseHash: (await sourceSnapshotPromise)?.hash
})).config;
const login = plugin.auth?.login;
if (!login) throw new Error(formatUnsupportedChannelActionMessage({
channel: channelInput,
action: "login",
inspectCommand: "openclaw channels status --channel " + channelInput
}));
setVerbose(Boolean(opts.verbose));
const { accountId } = resolveAccountContext(plugin, opts, cfg);
await login({
cfg,
accountId,
runtime,
verbose: Boolean(opts.verbose),
channelInput
});
await reconcileGatewayRuntimeAfterLocalLogin({
cfg,
plugin,
channelId: plugin.id,
accountId,
runtime
});
}
async function runChannelLogout(opts, runtime = defaultRuntime) {
const sourceSnapshotPromise = readConfigFileSnapshot().catch(() => null);
const autoEnabled = applyPluginAutoEnable({
config: getRuntimeConfig(),
env: process.env
});
const loadedCfg = autoEnabled.config;
const resolvedChannel = await resolveChannelPluginForMode(opts, "logout", loadedCfg, runtime);
let cfg = resolvedChannel.cfg;
const { configChanged, channelInput, plugin } = resolvedChannel;
if (autoEnabled.changes.length > 0 || configChanged) cfg = (await commitConfigWithPendingPluginInstalls({
nextConfig: cfg,
baseHash: (await sourceSnapshotPromise)?.hash
})).config;
const logoutAccount = plugin.gateway?.logoutAccount;
if (!logoutAccount) throw new Error(formatUnsupportedChannelActionMessage({
channel: channelInput,
action: "logout",
inspectCommand: "openclaw channels status --channel " + channelInput
}));
const { accountId } = resolveAccountContext(plugin, opts, cfg);
if (await logoutViaGatewayRuntime({
cfg,
channelId: plugin.id,
accountId,
runtime
})) return;
const account = plugin.config.resolveAccount(cfg, accountId);
await logoutAccount({
cfg,
accountId,
account,
runtime
});
}
//#endregion
//#region src/cli/channels-cli.ts
const optionNamesRemove = [
"channel",
"account",
"delete"
];
const channelsCommandsLoader = createLazyImportLoader(() => import("./channels-BDBSXOwG.js"));
const bundledPackageChannelMetadataLoader = createLazyImportLoader(() => import("./bundled-package-channel-metadata-6C0gsXb6.js"));
function loadChannelsCommands() {
return channelsCommandsLoader.load();
}
function runChannelsCommand(action) {
return runCommandWithRuntime(defaultRuntime, action);
}
function runChannelsCommandWithDanger(action, label) {
return runCommandWithRuntime(defaultRuntime, action, (err) => {
defaultRuntime.error(danger(`${label}: ${String(err)}`));
defaultRuntime.exit(1);
});
}
function getOptionNames(command) {
return command.options.map((option) => option.attributeName());
}
function shouldRegisterChannelSetupOptions(argv = process.argv, options = {}) {
if (options.includeSetupOptions) return true;
const { commandPath } = resolveCliArgvInvocation(normalizeWindowsArgv(argv));
return commandPath[0] === "channels" && commandPath[1] === "add";
}
async function addChannelSetupOptions(command) {
const { listBundledPackageChannelMetadata } = await bundledPackageChannelMetadataLoader.load();
const seenFlags = new Set(command.options.map((option) => option.flags));
const channels = listBundledPackageChannelMetadata().toSorted((left, right) => {
const leftOrder = left.order ?? Number.MAX_SAFE_INTEGER;
const rightOrder = right.order ?? Number.MAX_SAFE_INTEGER;
return leftOrder === rightOrder ? (left.id ?? "").localeCompare(right.id ?? "") : leftOrder - rightOrder;
});
for (const channel of channels) for (const option of channel.cliAddOptions ?? []) {
if (seenFlags.has(option.flags)) continue;
seenFlags.add(option.flags);
if (option.defaultValue !== void 0) command.option(option.flags, option.description, option.defaultValue);
else command.option(option.flags, option.description);
}
return command;
}
async function registerChannelsCli(program, argv = process.argv, options = {}) {
const channelNames = formatCliChannelOptions();
const channels = program.command("channels").description("Manage connected chat channels and accounts").addHelpText("after", () => `\n${theme.heading("Examples:")}\n${formatHelpExamples([
["openclaw channels list", "List configured channels."],
["openclaw channels list --all", "Show configured, bundled, and installable channels."],
["openclaw channels add", "Open guided channel setup."],
["openclaw channels status --probe", "Run channel status checks and probes."],
["openclaw channels add --channel telegram --token <token>", "Add or update a channel account non-interactively."],
["openclaw channels login --channel whatsapp", "Link a WhatsApp Web account."]
])}\n\n${theme.muted("Docs:")} ${formatDocsLink("/cli/channels", "docs.openclaw.ai/cli/channels")}\n`);
channels.command("list").description("List chat channels (configured by default; pass --all for installable catalog)").option("--all", "Include bundled and installable catalog channels", false).option("--json", "Output JSON", false).action(async (opts) => {
await runChannelsCommand(async () => {
const { channelsListCommand } = await import("./list-CyAfVw69.js");
await channelsListCommand(opts, defaultRuntime);
});
});
channels.command("status").description("Show gateway channel status (use status --deep for local)").option("--channel <name>", `Only show one channel (${formatCliChannelOptions(["all"])})`).option("--probe", "Probe channel credentials", false).option("--timeout <ms>", "Timeout in ms", "10000").option("--json", "Output JSON", false).action(async (opts) => {
await runChannelsCommand(async () => {
const { channelsStatusCommand } = await import("./status-C2M02NJv.js");
await channelsStatusCommand(opts, defaultRuntime);
});
});
channels.command("capabilities").description("Show provider capabilities (intents/scopes + supported features)").option("--channel <name>", `Channel (${formatCliChannelOptions(["all"])})`).option("--account <id>", "Account id (only with --channel)").option("--target <dest>", "Channel target for permission audit (Discord channel:<id>)").option("--timeout <ms>", "Timeout in ms", "10000").option("--json", "Output JSON", false).action(async (opts) => {
await runChannelsCommand(async () => {
const { channelsCapabilitiesCommand } = await loadChannelsCommands();
await channelsCapabilitiesCommand(opts, defaultRuntime);
});
});
channels.command("resolve").description("Resolve channel/user names to IDs").argument("<entries...>", "Entries to resolve (names or ids)").option("--channel <name>", `Channel (${channelNames})`).option("--account <id>", "Account id (accountId)").option("--kind <kind>", "Target kind (auto|user|group)", "auto").option("--json", "Output JSON", false).action(async (entries, opts) => {
await runChannelsCommand(async () => {
const { channelsResolveCommand } = await loadChannelsCommands();
await channelsResolveCommand({
channel: opts.channel,
account: opts.account,
kind: opts.kind,
json: Boolean(opts.json),
entries: Array.isArray(entries) ? entries : [String(entries)]
}, defaultRuntime);
});
});
channels.command("logs").description("Show recent channel logs from the gateway log file").option("--channel <name>", `Channel (${formatCliChannelOptions(["all"])})`, "all").option("--lines <n>", "Number of lines (default: 200)", "200").option("--json", "Output JSON", false).action(async (opts) => {
await runChannelsCommand(async () => {
const { channelsLogsCommand } = await loadChannelsCommands();
await channelsLogsCommand(opts, defaultRuntime);
});
});
const addCommand = channels.command("add").description("Add or update a channel account").addHelpText("after", () => `\n${theme.heading("Examples:")}\n${formatHelpExamples([
["openclaw channels add", "Open guided setup for available chat channels."],
["openclaw channels add --channel telegram --token <token>", "Add or update Telegram non-interactively."],
["openclaw channels list --all", "Find channel ids before using --channel."]
])}\n`).option("--channel <name>", `Channel (${channelNames})`).option("--account <id>", "Account id (default when omitted)").option("--name <name>", "Display name for this account").option("--token <token>", "Channel token or credential payload").option("--token-file <path>", "Read channel token or credential payload from file").option("--secret <secret>", "Channel shared secret").option("--secret-file <path>", "Read channel shared secret from file").option("--bot-token <token>", "Bot token").option("--app-token <token>", "App token").option("--password <password>", "Channel password or login secret").option("--cli-path <path>", "Channel CLI path").option("--url <url>", "Channel setup URL").option("--base-url <url>", "Channel base URL").option("--http-url <url>", "Channel HTTP service URL").option("--auth-dir <path>", "Channel auth directory override").option("--use-env", "Use env-backed credentials when supported", false);
if (shouldRegisterChannelSetupOptions(argv, options)) await addChannelSetupOptions(addCommand);
addCommand.action(async (opts, command) => {
await runChannelsCommand(async () => {
const { channelsAddCommand } = await loadChannelsCommands();
await channelsAddCommand(opts, defaultRuntime, { hasFlags: hasExplicitOptions(command, getOptionNames(command)) });
});
});
channels.command("remove").description("Disable or delete a channel account").option("--channel <name>", `Channel (${channelNames})`).option("--account <id>", "Account id (default when omitted)").option("--delete", "Delete config entries (no prompt)", false).action(async (opts, command) => {
await runChannelsCommand(async () => {
const { channelsRemoveCommand } = await loadChannelsCommands();
await channelsRemoveCommand(opts, defaultRuntime, { hasFlags: hasExplicitOptions(command, optionNamesRemove) });
});
});
channels.command("login").description("Link a channel account (if supported)").option("--channel <channel>", "Channel alias (auto when only one is configured)").option("--account <id>", "Account id (accountId)").option("--verbose", "Verbose connection logs", false).action(async (opts) => {
await runChannelsCommandWithDanger(async () => {
await runChannelLogin({
channel: opts.channel,
account: opts.account,
verbose: Boolean(opts.verbose)
}, defaultRuntime);
}, "Channel login failed");
});
channels.command("logout").description("Log out of a channel session (if supported)").option("--channel <channel>", "Channel alias (auto when only one is configured)").option("--account <id>", "Account id (accountId)").action(async (opts) => {
await runChannelsCommandWithDanger(async () => {
await runChannelLogout({
channel: opts.channel,
account: opts.account
}, defaultRuntime);
}, "Channel logout failed");
});
applyParentDefaultHelpAction(channels);
}
//#endregion
export { registerChannelsCli };