mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 11:30:41 +00:00
* Slack: respect replyToMode for auto-thread_ts and inline reply tags * Update CHANGELOG.md
59 lines
2.0 KiB
TypeScript
59 lines
2.0 KiB
TypeScript
import type { ReplyToMode } from "../config/types.js";
|
|
import type { SlackAppMentionEvent, SlackMessageEvent } from "./types.js";
|
|
|
|
export type SlackThreadContext = {
|
|
incomingThreadTs?: string;
|
|
messageTs?: string;
|
|
isThreadReply: boolean;
|
|
replyToId?: string;
|
|
messageThreadId?: string;
|
|
};
|
|
|
|
export function resolveSlackThreadContext(params: {
|
|
message: SlackMessageEvent | SlackAppMentionEvent;
|
|
replyToMode: ReplyToMode;
|
|
}): SlackThreadContext {
|
|
const incomingThreadTs = params.message.thread_ts;
|
|
const eventTs = params.message.event_ts;
|
|
const messageTs = params.message.ts ?? eventTs;
|
|
const hasThreadTs = typeof incomingThreadTs === "string" && incomingThreadTs.length > 0;
|
|
const isThreadReply =
|
|
hasThreadTs && (incomingThreadTs !== messageTs || Boolean(params.message.parent_user_id));
|
|
const replyToId = incomingThreadTs ?? messageTs;
|
|
const messageThreadId = isThreadReply
|
|
? incomingThreadTs
|
|
: params.replyToMode === "all"
|
|
? messageTs
|
|
: undefined;
|
|
return {
|
|
incomingThreadTs,
|
|
messageTs,
|
|
isThreadReply,
|
|
replyToId,
|
|
messageThreadId,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Resolves Slack thread targeting for replies and status indicators.
|
|
*
|
|
* @returns replyThreadTs - Thread timestamp for reply messages
|
|
* @returns statusThreadTs - Thread timestamp for status indicators (typing, etc.)
|
|
* @returns isThreadReply - true if this is a genuine user reply in a thread,
|
|
* false if thread_ts comes from a bot status message (e.g. typing indicator)
|
|
*/
|
|
export function resolveSlackThreadTargets(params: {
|
|
message: SlackMessageEvent | SlackAppMentionEvent;
|
|
replyToMode: ReplyToMode;
|
|
}) {
|
|
const ctx = resolveSlackThreadContext(params);
|
|
const { incomingThreadTs, messageTs, isThreadReply } = ctx;
|
|
const replyThreadTs = isThreadReply
|
|
? incomingThreadTs
|
|
: params.replyToMode === "all"
|
|
? messageTs
|
|
: undefined;
|
|
const statusThreadTs = replyThreadTs;
|
|
return { replyThreadTs, statusThreadTs, isThreadReply };
|
|
}
|