Files
clawdbot/src/plugins/enable.ts
2026-01-18 16:35:52 +00:00

46 lines
1.2 KiB
TypeScript

import type { ClawdbotConfig } from "../config/config.js";
export type PluginEnableResult = {
config: ClawdbotConfig;
enabled: boolean;
reason?: string;
};
function ensureAllowlisted(cfg: ClawdbotConfig, pluginId: string): ClawdbotConfig {
const allow = cfg.plugins?.allow;
if (!Array.isArray(allow) || allow.includes(pluginId)) return cfg;
return {
...cfg,
plugins: {
...cfg.plugins,
allow: [...allow, pluginId],
},
};
}
export function enablePluginInConfig(cfg: ClawdbotConfig, pluginId: string): PluginEnableResult {
if (cfg.plugins?.enabled === false) {
return { config: cfg, enabled: false, reason: "plugins disabled" };
}
if (cfg.plugins?.deny?.includes(pluginId)) {
return { config: cfg, enabled: false, reason: "blocked by denylist" };
}
const entries = {
...cfg.plugins?.entries,
[pluginId]: {
...(cfg.plugins?.entries?.[pluginId] as Record<string, unknown> | undefined),
enabled: true,
},
};
let next: ClawdbotConfig = {
...cfg,
plugins: {
...cfg.plugins,
entries,
},
};
next = ensureAllowlisted(next, pluginId);
return { config: next, enabled: true };
}