mirror of https://github.com/openclaw/openclaw.git
31 lines
942 B
TypeScript
31 lines
942 B
TypeScript
import { parseSlackTarget } from "./targets.js";
|
|
|
|
export function resolveSlackAutoThreadId(params: {
|
|
to: string;
|
|
toolContext?: {
|
|
currentChannelId?: string;
|
|
currentThreadTs?: string;
|
|
replyToMode?: "off" | "first" | "all";
|
|
hasRepliedRef?: { value: boolean };
|
|
};
|
|
}): string | undefined {
|
|
const context = params.toolContext;
|
|
if (!context?.currentThreadTs || !context.currentChannelId) {
|
|
return undefined;
|
|
}
|
|
if (context.replyToMode !== "all" && context.replyToMode !== "first") {
|
|
return undefined;
|
|
}
|
|
const parsedTarget = parseSlackTarget(params.to, { defaultKind: "channel" });
|
|
if (!parsedTarget || parsedTarget.kind !== "channel") {
|
|
return undefined;
|
|
}
|
|
if (parsedTarget.id.toLowerCase() !== context.currentChannelId.toLowerCase()) {
|
|
return undefined;
|
|
}
|
|
if (context.replyToMode === "first" && context.hasRepliedRef?.value) {
|
|
return undefined;
|
|
}
|
|
return context.currentThreadTs;
|
|
}
|