openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
92 lines (91 loc) • 4.38 kB
JavaScript
import { s as normalizeOptionalLowercaseString } from "./string-coerce-mnp54Vah.js";
import { a as normalizeAnyChannelId } from "./registry-9YoS2BJP.js";
import { r as copyReplyPayloadMetadata, s as isReplyPayloadStatusNotice } from "./reply-payload-CZJ2cgZc.js";
import { t as getChannelPlugin } from "./registry-MkxNn1Ue.js";
import "./plugins-t2ejWcVy.js";
import { n as isSingleUseReplyToMode } from "./reply-reference-BpiejuMe.js";
//#region src/auto-reply/reply/reply-threading.ts
/** Reply threading policy helpers for channel replies and status notices. */
function normalizeReplyToModeChatType(chatType) {
return chatType === "direct" || chatType === "group" || chatType === "channel" ? chatType : void 0;
}
/** Resolve configured reply-to mode from channel and chat-type config. */
function resolveConfiguredReplyToMode(cfg, channel, chatType) {
const provider = normalizeAnyChannelId(channel) ?? normalizeOptionalLowercaseString(channel);
if (!provider) return "all";
const channelConfig = cfg.channels?.[provider];
const normalizedChatType = normalizeReplyToModeChatType(chatType);
if (normalizedChatType) {
const scopedMode = channelConfig?.replyToModeByChatType?.[normalizedChatType];
if (scopedMode !== void 0) return scopedMode;
}
if (normalizedChatType === "direct") {
const legacyDirectMode = channelConfig?.dm?.replyToMode;
if (legacyDirectMode !== void 0) return legacyDirectMode;
}
return channelConfig?.replyToMode ?? "all";
}
/** Resolve reply-to mode using channel threading adapter override when present. */
function resolveReplyToModeWithThreading(cfg, threading, params = {}) {
return threading?.resolveReplyToMode?.({
cfg,
accountId: params.accountId,
chatType: params.chatType
}) ?? resolveConfiguredReplyToMode(cfg, params.channel, params.chatType);
}
/** Resolve effective reply-to mode for a channel/account/chat tuple. */
function resolveReplyToMode(cfg, channel, accountId, chatType) {
const normalizedAccountId = normalizeOptionalLowercaseString(accountId);
if (!normalizedAccountId) return resolveConfiguredReplyToMode(cfg, channel, chatType);
const provider = normalizeAnyChannelId(channel) ?? normalizeOptionalLowercaseString(channel);
return resolveReplyToModeWithThreading(cfg, provider ? getChannelPlugin(provider)?.threading : void 0, {
channel,
accountId: normalizedAccountId,
chatType
});
}
/** Create a payload filter that strips reply targets according to reply-to mode. */
function createReplyToModeFilter(mode, opts = {}) {
let hasThreaded = false;
return (payload) => {
const isStatusNotice = isReplyPayloadStatusNotice(payload);
if (!payload.replyToId) return payload;
if (mode === "off") {
const isExplicit = Boolean(payload.replyToTag) || Boolean(payload.replyToCurrent);
if (opts.allowExplicitReplyTagsWhenOff && isExplicit && !isStatusNotice) return payload;
return copyReplyPayloadMetadata(payload, {
...payload,
replyToId: void 0
});
}
if (mode === "all") return payload;
if (isSingleUseReplyToMode(mode) && hasThreaded) {
if (isStatusNotice) return payload;
return copyReplyPayloadMetadata(payload, {
...payload,
replyToId: void 0
});
}
if (isSingleUseReplyToMode(mode) && !isStatusNotice) hasThreaded = true;
return payload;
};
}
/** Resolve whether implicit current-message replies are allowed under threading policy. */
function resolveImplicitCurrentMessageReplyAllowance(mode, policy) {
const implicitCurrentMessage = policy?.implicitCurrentMessage ?? "default";
if (implicitCurrentMessage === "allow") return true;
if (implicitCurrentMessage === "deny") return false;
return mode !== "batched";
}
/** Build threading policy for batched reply-to mode. */
function resolveBatchedReplyThreadingPolicy(mode, isBatched) {
if (mode !== "batched") return;
return { implicitCurrentMessage: isBatched ? "allow" : "deny" };
}
/** Create a reply-to filter using channel-specific explicit-tag defaults. */
function createReplyToModeFilterForChannel(mode, channel) {
const normalized = normalizeOptionalLowercaseString(channel);
return createReplyToModeFilter(mode, { allowExplicitReplyTagsWhenOff: normalized ? true : normalized === "webchat" });
}
//#endregion
export { resolveReplyToMode as i, resolveBatchedReplyThreadingPolicy as n, resolveImplicitCurrentMessageReplyAllowance as r, createReplyToModeFilterForChannel as t };