mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 03:20:49 +00:00
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import { getChannelDock } from "../../channels/dock.js";
|
|
import { normalizeChannelId } from "../../channels/plugins/index.js";
|
|
import type { OpenClawConfig } from "../../config/config.js";
|
|
import type { ReplyToMode } from "../../config/types.js";
|
|
import type { OriginatingChannelType } from "../templating.js";
|
|
import type { ReplyPayload } from "../types.js";
|
|
|
|
export function resolveReplyToMode(
|
|
cfg: OpenClawConfig,
|
|
channel?: OriginatingChannelType,
|
|
accountId?: string | null,
|
|
chatType?: string | null,
|
|
): ReplyToMode {
|
|
const provider = normalizeChannelId(channel);
|
|
if (!provider) {
|
|
return "all";
|
|
}
|
|
const resolved = getChannelDock(provider)?.threading?.resolveReplyToMode?.({
|
|
cfg,
|
|
accountId,
|
|
chatType,
|
|
});
|
|
return resolved ?? "all";
|
|
}
|
|
|
|
export function createReplyToModeFilter(
|
|
mode: ReplyToMode,
|
|
opts: { allowExplicitReplyTagsWhenOff?: boolean } = {},
|
|
) {
|
|
let hasThreaded = false;
|
|
return (payload: ReplyPayload): ReplyPayload => {
|
|
if (!payload.replyToId) {
|
|
return payload;
|
|
}
|
|
if (mode === "off") {
|
|
const isExplicit = Boolean(payload.replyToTag) || Boolean(payload.replyToCurrent);
|
|
if (opts.allowExplicitReplyTagsWhenOff && isExplicit) {
|
|
return payload;
|
|
}
|
|
return { ...payload, replyToId: undefined };
|
|
}
|
|
if (mode === "all") {
|
|
return payload;
|
|
}
|
|
if (hasThreaded) {
|
|
return { ...payload, replyToId: undefined };
|
|
}
|
|
hasThreaded = true;
|
|
return payload;
|
|
};
|
|
}
|
|
|
|
export function createReplyToModeFilterForChannel(
|
|
mode: ReplyToMode,
|
|
channel?: OriginatingChannelType,
|
|
) {
|
|
const provider = normalizeChannelId(channel);
|
|
const normalized = typeof channel === "string" ? channel.trim().toLowerCase() : undefined;
|
|
const isWebchat = normalized === "webchat";
|
|
// Default: allow explicit reply tags/directives even when replyToMode is "off".
|
|
// Unknown channels fail closed; internal webchat stays allowed.
|
|
const dock = provider ? getChannelDock(provider) : undefined;
|
|
const allowExplicitReplyTagsWhenOff = provider
|
|
? (dock?.threading?.allowExplicitReplyTagsWhenOff ?? dock?.threading?.allowTagsWhenOff ?? true)
|
|
: isWebchat;
|
|
return createReplyToModeFilter(mode, {
|
|
allowExplicitReplyTagsWhenOff,
|
|
});
|
|
}
|