@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
69 lines (67 loc) • 2.86 kB
JavaScript
import { j as normalizeChatChannelId } from "./entry.js";
import { c as normalizeAccountId, l as normalizeAgentId } from "./session-key-BGiG_JcT.js";
import { l as resolveDefaultAgentId } from "./agent-scope-RzK9Zcks.js";
//#region src/routing/bindings.ts
function normalizeBindingChannelId(raw) {
const normalized = normalizeChatChannelId(raw);
if (normalized) return normalized;
return (raw ?? "").trim().toLowerCase() || null;
}
function listBindings(cfg) {
return Array.isArray(cfg.bindings) ? cfg.bindings : [];
}
function resolveNormalizedBindingMatch(binding) {
if (!binding || typeof binding !== "object") return null;
const match = binding.match;
if (!match || typeof match !== "object") return null;
const channelId = normalizeBindingChannelId(match.channel);
if (!channelId) return null;
const accountId = typeof match.accountId === "string" ? match.accountId.trim() : "";
if (!accountId || accountId === "*") return null;
return {
agentId: normalizeAgentId(binding.agentId),
accountId: normalizeAccountId(accountId),
channelId
};
}
function listBoundAccountIds(cfg, channelId) {
const normalizedChannel = normalizeBindingChannelId(channelId);
if (!normalizedChannel) return [];
const ids = /* @__PURE__ */ new Set();
for (const binding of listBindings(cfg)) {
const resolved = resolveNormalizedBindingMatch(binding);
if (!resolved || resolved.channelId !== normalizedChannel) continue;
ids.add(resolved.accountId);
}
return Array.from(ids).toSorted((a, b) => a.localeCompare(b));
}
function resolveDefaultAgentBoundAccountId(cfg, channelId) {
const normalizedChannel = normalizeBindingChannelId(channelId);
if (!normalizedChannel) return null;
const defaultAgentId = normalizeAgentId(resolveDefaultAgentId(cfg));
for (const binding of listBindings(cfg)) {
const resolved = resolveNormalizedBindingMatch(binding);
if (!resolved || resolved.channelId !== normalizedChannel || resolved.agentId !== defaultAgentId) continue;
return resolved.accountId;
}
return null;
}
function buildChannelAccountBindings(cfg) {
const map = /* @__PURE__ */ new Map();
for (const binding of listBindings(cfg)) {
const resolved = resolveNormalizedBindingMatch(binding);
if (!resolved) continue;
const byAgent = map.get(resolved.channelId) ?? /* @__PURE__ */ new Map();
const list = byAgent.get(resolved.agentId) ?? [];
if (!list.includes(resolved.accountId)) list.push(resolved.accountId);
byAgent.set(resolved.agentId, list);
map.set(resolved.channelId, byAgent);
}
return map;
}
function resolvePreferredAccountId(params) {
if (params.boundAccounts.length > 0) return params.boundAccounts[0];
return params.defaultAccountId;
}
//#endregion
export { resolvePreferredAccountId as a, resolveDefaultAgentBoundAccountId as i, listBindings as n, listBoundAccountIds as r, buildChannelAccountBindings as t };