openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
92 lines (91 loc) • 3.38 kB
JavaScript
import { t as CONFIG_DIR } from "./utils-P__uGsPB.js";
import { n as hasBinary } from "./config-eval-YFuZks3-.js";
import { t as evaluateEntryRequirementsForCurrentPlatform } from "./entry-status-CG367mIi.js";
import { a as resolveHookEnableState, i as resolveHookConfig, n as isHookEnvSatisfied, o as resolveHookEntries, t as isHookConfigPathTruthy } from "./config-DWWH6LIu.js";
import { r as isKnownInternalHookEventKey, t as loadWorkspaceHookEntries } from "./workspace-Bxltjm5Q.js";
import path from "node:path";
//#region src/hooks/hooks-status.ts
function resolveHookKey(entry) {
return entry.metadata?.hookKey ?? entry.hook.name;
}
function normalizeInstallOptions(entry) {
const install = entry.metadata?.install ?? [];
if (install.length === 0) return [];
return install.map((spec, index) => {
const id = (spec.id ?? `${spec.kind}-${index}`).trim();
const bins = spec.bins ?? [];
let label = (spec.label ?? "").trim();
if (!label) {
if (spec.kind === "bundled") label = "Bundled with OpenClaw";
else if (spec.kind === "npm" && spec.package) label = `Install ${spec.package} (npm)`;
else if (spec.kind === "git" && spec.repository) label = `Install from ${spec.repository}`;
else label = "Run installer";
}
return {
id,
kind: spec.kind,
label,
bins
};
});
}
function buildHookStatus(entry, config, eligibility) {
const hookKey = resolveHookKey(entry);
const hookConfig = resolveHookConfig(config, hookKey);
const managedByPlugin = entry.hook.source === "openclaw-plugin";
const enableState = resolveHookEnableState({
entry,
config,
hookConfig
});
const always = entry.metadata?.always === true;
const events = entry.metadata?.events ?? [];
const unknownEvents = events.filter((event) => !isKnownInternalHookEventKey(event));
const isEnvSatisfied = (envName) => isHookEnvSatisfied(envName, hookConfig);
const isConfigSatisfied = (pathStr) => isHookConfigPathTruthy(config, pathStr);
const { emoji, homepage, required, missing, requirementsSatisfied, configChecks } = evaluateEntryRequirementsForCurrentPlatform({
always,
entry,
hasLocalBin: hasBinary,
remote: eligibility?.remote,
isEnvSatisfied,
isConfigSatisfied
});
const enabledByConfig = enableState.enabled;
const hasEvents = events.length > 0;
const loadable = enabledByConfig && requirementsSatisfied && hasEvents;
const blockedReason = enableState.reason ?? (!requirementsSatisfied ? "missing requirements" : hasEvents ? void 0 : "no events defined");
return {
name: entry.hook.name,
description: entry.hook.description,
source: entry.hook.source,
pluginId: entry.hook.pluginId,
filePath: entry.hook.filePath,
baseDir: entry.hook.baseDir,
handlerPath: entry.hook.handlerPath,
hookKey,
emoji,
homepage,
events,
unknownEvents,
always,
enabledByConfig,
requirementsSatisfied,
loadable,
blockedReason,
managedByPlugin,
requirements: required,
missing,
configChecks,
install: normalizeInstallOptions(entry)
};
}
function buildWorkspaceHookStatus(workspaceDir, opts) {
return {
workspaceDir,
managedHooksDir: opts?.managedHooksDir ?? path.join(CONFIG_DIR, "hooks"),
hooks: resolveHookEntries(opts?.entries ?? loadWorkspaceHookEntries(workspaceDir, opts)).map((entry) => buildHookStatus(entry, opts?.config, opts?.eligibility))
};
}
//#endregion
export { buildWorkspaceHookStatus as t };