openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
65 lines (64 loc) • 2.62 kB
JavaScript
import { l as normalizeOptionalString } from "./string-coerce-CIXf7egm.js";
import { a as getBundledChannelSetupSecrets, i as getBundledChannelSetupPlugin, n as getBundledChannelPlugin, r as getBundledChannelSecrets } from "./bundled-0Ib5Dos0.js";
//#region src/channels/plugins/bootstrap-registry.ts
/**
* Bundled channel bootstrap registry.
*
* Provides channel plugin metadata before the full runtime registry is installed.
*/
function resolveBootstrapChannelId(id) {
return normalizeOptionalString(id) ?? "";
}
function mergePluginSection(runtimeValue, setupValue) {
if (runtimeValue && setupValue && typeof runtimeValue === "object" && typeof setupValue === "object") {
const merged = { ...runtimeValue };
for (const [key, value] of Object.entries(setupValue)) if (value !== void 0) merged[key] = value;
return { ...merged };
}
return setupValue ?? runtimeValue;
}
function mergeBootstrapPlugin(runtimePlugin, setupPlugin) {
return {
...runtimePlugin,
...setupPlugin,
meta: mergePluginSection(runtimePlugin.meta, setupPlugin.meta),
capabilities: mergePluginSection(runtimePlugin.capabilities, setupPlugin.capabilities),
commands: mergePluginSection(runtimePlugin.commands, setupPlugin.commands),
doctor: mergePluginSection(runtimePlugin.doctor, setupPlugin.doctor),
reload: mergePluginSection(runtimePlugin.reload, setupPlugin.reload),
config: mergePluginSection(runtimePlugin.config, setupPlugin.config),
messaging: mergePluginSection(runtimePlugin.messaging, setupPlugin.messaging),
actions: mergePluginSection(runtimePlugin.actions, setupPlugin.actions),
secrets: mergePluginSection(runtimePlugin.secrets, setupPlugin.secrets)
};
}
/**
* Loads a bundled channel plugin for bootstrap, merging runtime and setup artifacts.
*/
function getBootstrapChannelPlugin(id) {
const resolvedId = resolveBootstrapChannelId(id);
if (!resolvedId) return;
let runtimePlugin;
let setupPlugin;
try {
runtimePlugin = getBundledChannelPlugin(resolvedId);
setupPlugin = getBundledChannelSetupPlugin(resolvedId);
} catch {
return;
}
return runtimePlugin && setupPlugin ? mergeBootstrapPlugin(runtimePlugin, setupPlugin) : setupPlugin ?? runtimePlugin;
}
/**
* Loads bootstrap secret metadata from bundled runtime and setup artifacts.
*/
function getBootstrapChannelSecrets(id) {
const resolvedId = resolveBootstrapChannelId(id);
if (!resolvedId) return;
try {
return mergePluginSection(getBundledChannelSecrets(resolvedId), getBundledChannelSetupSecrets(resolvedId));
} catch {
return;
}
}
//#endregion
export { getBootstrapChannelSecrets as n, getBootstrapChannelPlugin as t };