Spaces:
Runtime error
Runtime error
File size: 2,452 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | /**
* Plugin/Middleware Architecture β L-8
*
* Pre/post hooks on the request pipeline. Plugins are registered
* with a priority (lower = runs first) and can intercept requests
* before they reach the chat handler or modify responses after.
*
* Lifecycle:
* onRequest β runs BEFORE chat handler (can block/modify request)
* onResponse β runs AFTER chat handler (can modify/log response)
* onError β runs on handler errors (can recover or re-throw)
*
* @module lib/plugins
*
* @deprecated Import from "./hooks.ts" or "./sdk.ts" directly.
* This module re-exports from hooks.ts for backward compatibility.
*/
// Re-export types from hooks.ts (canonical source)
export type {
PluginContext,
PluginResult,
Plugin,
BlockingHookResult,
HookHandler,
HookRegistration,
} from "./hooks.ts";
// Re-export execution functions from hooks.ts
export {
runOnRequest,
runOnResponse,
runOnError,
resetHooks as resetPlugins,
registerHook as registerPlugin,
unregisterHooks as unregisterPluginList,
getHooks as listPlugins,
} from "./hooks.ts";
// Backward compat: old code may import unregisterPlugin (singular)
export { unregisterHooks as unregisterPlugin } from "./hooks.ts";
import { getActiveEvents, getHooks, unregisterHooks } from "./hooks.ts";
/**
* Backward-compat shim for the legacy `setPluginEnabled(name, enabled)` export.
*
* The hook registry has no per-plugin "enabled" flag anymore β a plugin is
* active iff its hooks are registered, and disabling one means unregistering
* its hooks. This preserves the old export so external callers don't crash:
* - enabled=false β unregister the plugin's hooks (returns true if any existed)
* - enabled=true β reports current registration state; it cannot re-register
* a handler without the definition. Use `pluginManager.activate(name)` for
* the DB-backed lifecycle re-activation instead.
*
* @deprecated Prefer `pluginManager.activate/deactivate` or `unregisterHooks`.
*/
export function setPluginEnabled(name: string, enabled: boolean): boolean {
const hasHooks = (): boolean =>
getActiveEvents().some((event) =>
getHooks(event).some((h) => h.pluginName === name)
);
if (!enabled) {
const existed = hasHooks();
unregisterHooks(name);
return existed;
}
return hasHooks();
}
// Re-export SDK utilities
export { definePlugin, blockRequest, modifyBody, addMetadata } from "./sdk.ts";
|