mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-23 22:55:24 +00:00
* ACPX: keep plugin-local runtime installs out of dist * Gateway: harden ACP startup and service PATH * ACP: reinitialize error-state configured bindings * ACP: classify pre-turn runtime failures as session init failures * Plugins: move configured ACP routing behind channel seams * Telegram tests: align startup probe assertions after rebase * Discord: harden ACP configured binding recovery * ACP: recover Discord bindings after stale runtime exits * ACPX: replace dead sessions during ensure * Discord: harden ACP binding recovery * Discord: fix review follow-ups * ACP bindings: load channel snapshots across workspaces * ACP bindings: cache snapshot channel plugin resolution * Experiments: add ACP pluginification holy grail plan * Experiments: rename ACP pluginification plan doc * Experiments: drop old ACP pluginification doc path * ACP: move configured bindings behind plugin services * Experiments: update bindings capability architecture plan * Bindings: isolate configured binding routing and targets * Discord tests: fix runtime env helper path * Tests: fix channel binding CI regressions * Tests: normalize ACP workspace assertion on Windows * Bindings: isolate configured binding registry * Bindings: finish configured binding cleanup * Bindings: finish generic cleanup * Bindings: align runtime approval callbacks * ACP: delete residual bindings barrel * Bindings: restore legacy compatibility * Revert "Bindings: restore legacy compatibility" This reverts commit ac2ed68fa2426ecc874d68278c71c71ad363fcfe. * Tests: drop ACP route legacy helper names * Discord/ACP: fix binding regressions --------- Co-authored-by: Onur <2453968+osolmaz@users.noreply.github.com>
117 lines
3.7 KiB
TypeScript
117 lines
3.7 KiB
TypeScript
import type { ConversationRef } from "../../infra/outbound/session-binding-service.js";
|
|
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js";
|
|
import type {
|
|
CompiledConfiguredBinding,
|
|
ConfiguredBindingChannel,
|
|
ConfiguredBindingRecordResolution,
|
|
} from "./binding-types.js";
|
|
import type {
|
|
ChannelConfiguredBindingConversationRef,
|
|
ChannelConfiguredBindingMatch,
|
|
} from "./types.adapters.js";
|
|
|
|
export function resolveAccountMatchPriority(match: string | undefined, actual: string): 0 | 1 | 2 {
|
|
const trimmed = (match ?? "").trim();
|
|
if (!trimmed) {
|
|
return actual === DEFAULT_ACCOUNT_ID ? 2 : 0;
|
|
}
|
|
if (trimmed === "*") {
|
|
return 1;
|
|
}
|
|
return normalizeAccountId(trimmed) === actual ? 2 : 0;
|
|
}
|
|
|
|
function matchCompiledBindingConversation(params: {
|
|
rule: CompiledConfiguredBinding;
|
|
conversationId: string;
|
|
parentConversationId?: string;
|
|
}): ChannelConfiguredBindingMatch | null {
|
|
return params.rule.provider.matchInboundConversation({
|
|
binding: params.rule.binding,
|
|
compiledBinding: params.rule.target,
|
|
conversationId: params.conversationId,
|
|
parentConversationId: params.parentConversationId,
|
|
});
|
|
}
|
|
|
|
export function resolveCompiledBindingChannel(raw: string): ConfiguredBindingChannel | null {
|
|
const normalized = raw.trim().toLowerCase();
|
|
return normalized ? (normalized as ConfiguredBindingChannel) : null;
|
|
}
|
|
|
|
export function toConfiguredBindingConversationRef(conversation: ConversationRef): {
|
|
channel: ConfiguredBindingChannel;
|
|
accountId: string;
|
|
conversationId: string;
|
|
parentConversationId?: string;
|
|
} | null {
|
|
const channel = resolveCompiledBindingChannel(conversation.channel);
|
|
const conversationId = conversation.conversationId.trim();
|
|
if (!channel || !conversationId) {
|
|
return null;
|
|
}
|
|
return {
|
|
channel,
|
|
accountId: normalizeAccountId(conversation.accountId),
|
|
conversationId,
|
|
parentConversationId: conversation.parentConversationId?.trim() || undefined,
|
|
};
|
|
}
|
|
|
|
export function materializeConfiguredBindingRecord(params: {
|
|
rule: CompiledConfiguredBinding;
|
|
accountId: string;
|
|
conversation: ChannelConfiguredBindingConversationRef;
|
|
}): ConfiguredBindingRecordResolution {
|
|
return params.rule.targetFactory.materialize({
|
|
accountId: normalizeAccountId(params.accountId),
|
|
conversation: params.conversation,
|
|
});
|
|
}
|
|
|
|
export function resolveMatchingConfiguredBinding(params: {
|
|
rules: CompiledConfiguredBinding[];
|
|
conversation: ReturnType<typeof toConfiguredBindingConversationRef>;
|
|
}): { rule: CompiledConfiguredBinding; match: ChannelConfiguredBindingMatch } | null {
|
|
if (!params.conversation) {
|
|
return null;
|
|
}
|
|
|
|
let wildcardMatch: {
|
|
rule: CompiledConfiguredBinding;
|
|
match: ChannelConfiguredBindingMatch;
|
|
} | null = null;
|
|
let exactMatch: { rule: CompiledConfiguredBinding; match: ChannelConfiguredBindingMatch } | null =
|
|
null;
|
|
|
|
for (const rule of params.rules) {
|
|
const accountMatchPriority = resolveAccountMatchPriority(
|
|
rule.accountPattern,
|
|
params.conversation.accountId,
|
|
);
|
|
if (accountMatchPriority === 0) {
|
|
continue;
|
|
}
|
|
const match = matchCompiledBindingConversation({
|
|
rule,
|
|
conversationId: params.conversation.conversationId,
|
|
parentConversationId: params.conversation.parentConversationId,
|
|
});
|
|
if (!match) {
|
|
continue;
|
|
}
|
|
const matchPriority = match.matchPriority ?? 0;
|
|
if (accountMatchPriority === 2) {
|
|
if (!exactMatch || matchPriority > (exactMatch.match.matchPriority ?? 0)) {
|
|
exactMatch = { rule, match };
|
|
}
|
|
continue;
|
|
}
|
|
if (!wildcardMatch || matchPriority > (wildcardMatch.match.matchPriority ?? 0)) {
|
|
wildcardMatch = { rule, match };
|
|
}
|
|
}
|
|
|
|
return exactMatch ?? wildcardMatch;
|
|
}
|