Files
openclaw/src/plugins/hook-runner-global.ts
Jesse Merhi 4cb94cc2cf fix: keep trusted policies with hook registry (#94545)
* fix: keep trusted policies with hook registry

* fix: compose trusted policies with live hooks

* fix: preserve trusted policy order

* test: update hook runner mock

* fix: keep hook policy registry internal
2026-06-22 10:15:24 +10:00

113 lines
3.8 KiB
TypeScript

/**
* Global Plugin Hook Runner
*
* Singleton hook runner that's initialized when plugins are loaded
* and can be called from anywhere in the codebase.
*
* The runner is created once and resolves hooks live on every dispatch from a
* composed view of the registries that are currently live: the most recently
* initialized registry, the active registry, and the pinned channel/http-route
* surfaces. Freezing one registry caused scoped mid-run activations (harness
* and memory ensures) to rebind the runner to a narrow registry and silently
* drop other plugins' tool-call hooks (#91918). Composing live also preserves
* the older contract that hooks pushed into a registry after initialization
* (e.g. the SDK `addTestHook` helper) dispatch immediately.
*/
import { createSubsystemLogger } from "../logging/subsystem.js";
import type { GlobalHookRunnerRegistry } from "./hook-registry.types.js";
import {
createComposedHookRegistryFacade,
getHookRunnerGlobalState,
} from "./hook-runner-global-state.js";
import type { PluginHookGatewayContext, PluginHookGatewayStopEvent } from "./hook-types.js";
import { createHookRunner, type HookRunner } from "./hooks.js";
const getLog = () => createSubsystemLogger("plugins");
/**
* Initialize the global hook runner with a plugin registry.
* Called on every plugin registry activation and by SDK consumers. The runner
* instance stays stable so references captured mid-run keep seeing current
* hooks; the passed registry becomes the highest-precedence composition source.
*/
export function initializeGlobalHookRunner(registry: GlobalHookRunnerRegistry): void {
const state = getHookRunnerGlobalState();
const log = getLog();
state.registry = registry;
if (!state.hookRunner) {
state.hookRunner = createHookRunner(createComposedHookRegistryFacade(state), {
logger: {
debug: (msg) => log.debug(msg),
warn: (msg) => log.warn(msg),
error: (msg) => log.error(msg),
},
catchErrors: true,
failurePolicyByHook: {
before_agent_run: "fail-closed",
before_install: "fail-closed",
before_tool_call: "fail-closed",
},
});
}
const hookCount = registry.hooks.length;
if (hookCount > 0) {
log.debug(`hook runner initialized with ${hookCount} registered hooks`);
}
}
/**
* Get the global hook runner.
* Returns null if plugins haven't been loaded yet.
*/
export function getGlobalHookRunner(): HookRunner | null {
return getHookRunnerGlobalState().hookRunner;
}
/**
* Get the registry from the most recent activation or explicit initialization.
* Returns null if plugins haven't been loaded yet. Hook dispatch does not use
* this single registry; the runner resolves hooks from the live composed view.
*/
export function getGlobalPluginRegistry(): GlobalHookRunnerRegistry | null {
return getHookRunnerGlobalState().registry;
}
/**
* Check if any hooks are registered for a given hook name.
*/
export function hasGlobalHooks(hookName: Parameters<HookRunner["hasHooks"]>[0]): boolean {
return getHookRunnerGlobalState().hookRunner?.hasHooks(hookName) ?? false;
}
export async function runGlobalGatewayStopSafely(params: {
event: PluginHookGatewayStopEvent;
ctx: PluginHookGatewayContext;
onError?: (err: unknown) => void;
}): Promise<void> {
const log = getLog();
const hookRunner = getGlobalHookRunner();
if (!hookRunner?.hasHooks("gateway_stop")) {
return;
}
try {
await hookRunner.runGatewayStop(params.event, params.ctx);
} catch (err) {
if (params.onError) {
params.onError(err);
return;
}
log.warn(`gateway_stop hook failed: ${String(err)}`);
}
}
/**
* Reset the global hook runner (for testing).
*/
export function resetGlobalHookRunner(): void {
const state = getHookRunnerGlobalState();
state.hookRunner = null;
state.registry = null;
}