mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 23:01:08 +00:00
126 lines
4.2 KiB
TypeScript
126 lines
4.2 KiB
TypeScript
import { listPotentialConfiguredChannelIds } from "../channels/config-presence.js";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import {
|
|
createPluginActivationSource,
|
|
normalizePluginsConfig,
|
|
resolveEffectivePluginActivationState,
|
|
} from "./config-state.js";
|
|
import { loadPluginManifestRegistry, type PluginManifestRecord } from "./manifest-registry.js";
|
|
import { hasKind } from "./slots.js";
|
|
|
|
function hasRuntimeContractSurface(plugin: PluginManifestRecord): boolean {
|
|
return Boolean(
|
|
plugin.providers.length > 0 ||
|
|
plugin.cliBackends.length > 0 ||
|
|
plugin.contracts?.speechProviders?.length ||
|
|
plugin.contracts?.mediaUnderstandingProviders?.length ||
|
|
plugin.contracts?.imageGenerationProviders?.length ||
|
|
plugin.contracts?.webFetchProviders?.length ||
|
|
plugin.contracts?.webSearchProviders?.length ||
|
|
hasKind(plugin.kind, "memory"),
|
|
);
|
|
}
|
|
|
|
function isGatewayStartupSidecar(plugin: PluginManifestRecord): boolean {
|
|
return plugin.channels.length === 0 && !hasRuntimeContractSurface(plugin);
|
|
}
|
|
|
|
export function resolveChannelPluginIds(params: {
|
|
config: OpenClawConfig;
|
|
workspaceDir?: string;
|
|
env: NodeJS.ProcessEnv;
|
|
}): string[] {
|
|
return loadPluginManifestRegistry({
|
|
config: params.config,
|
|
workspaceDir: params.workspaceDir,
|
|
env: params.env,
|
|
})
|
|
.plugins.filter((plugin) => plugin.channels.length > 0)
|
|
.map((plugin) => plugin.id);
|
|
}
|
|
|
|
export function resolveConfiguredChannelPluginIds(params: {
|
|
config: OpenClawConfig;
|
|
workspaceDir?: string;
|
|
env: NodeJS.ProcessEnv;
|
|
}): string[] {
|
|
const configuredChannelIds = new Set(
|
|
listPotentialConfiguredChannelIds(params.config, params.env).map((id) => id.trim()),
|
|
);
|
|
if (configuredChannelIds.size === 0) {
|
|
return [];
|
|
}
|
|
return resolveChannelPluginIds(params).filter((pluginId) => configuredChannelIds.has(pluginId));
|
|
}
|
|
|
|
export function resolveConfiguredDeferredChannelPluginIds(params: {
|
|
config: OpenClawConfig;
|
|
workspaceDir?: string;
|
|
env: NodeJS.ProcessEnv;
|
|
}): string[] {
|
|
const configuredChannelIds = new Set(
|
|
listPotentialConfiguredChannelIds(params.config, params.env).map((id) => id.trim()),
|
|
);
|
|
if (configuredChannelIds.size === 0) {
|
|
return [];
|
|
}
|
|
return loadPluginManifestRegistry({
|
|
config: params.config,
|
|
workspaceDir: params.workspaceDir,
|
|
env: params.env,
|
|
})
|
|
.plugins.filter(
|
|
(plugin) =>
|
|
plugin.channels.some((channelId) => configuredChannelIds.has(channelId)) &&
|
|
plugin.startupDeferConfiguredChannelFullLoadUntilAfterListen === true,
|
|
)
|
|
.map((plugin) => plugin.id);
|
|
}
|
|
|
|
export function resolveGatewayStartupPluginIds(params: {
|
|
config: OpenClawConfig;
|
|
activationSourceConfig?: OpenClawConfig;
|
|
workspaceDir?: string;
|
|
env: NodeJS.ProcessEnv;
|
|
}): string[] {
|
|
const configuredChannelIds = new Set(
|
|
listPotentialConfiguredChannelIds(params.config, params.env).map((id) => id.trim()),
|
|
);
|
|
const pluginsConfig = normalizePluginsConfig(params.config.plugins);
|
|
// Startup must classify allowlist exceptions against the raw config snapshot,
|
|
// not the auto-enabled effective snapshot, or configured-only channels can be
|
|
// misclassified as explicit enablement.
|
|
const activationSource = createPluginActivationSource({
|
|
config: params.activationSourceConfig ?? params.config,
|
|
});
|
|
return loadPluginManifestRegistry({
|
|
config: params.config,
|
|
workspaceDir: params.workspaceDir,
|
|
env: params.env,
|
|
})
|
|
.plugins.filter((plugin) => {
|
|
if (plugin.channels.some((channelId) => configuredChannelIds.has(channelId))) {
|
|
return true;
|
|
}
|
|
if (!isGatewayStartupSidecar(plugin)) {
|
|
return false;
|
|
}
|
|
const activationState = resolveEffectivePluginActivationState({
|
|
id: plugin.id,
|
|
origin: plugin.origin,
|
|
config: pluginsConfig,
|
|
rootConfig: params.config,
|
|
enabledByDefault: plugin.enabledByDefault,
|
|
activationSource,
|
|
});
|
|
if (!activationState.enabled) {
|
|
return false;
|
|
}
|
|
if (plugin.origin !== "bundled") {
|
|
return activationState.explicitlyEnabled;
|
|
}
|
|
return activationState.source === "explicit" || activationState.source === "default";
|
|
})
|
|
.map((plugin) => plugin.id);
|
|
}
|