Spaces:
Paused
Paused
File size: 4,218 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | import type { WebClient as SlackWebClient } from "@slack/web-api";
import type { SlackMessageEvent } from "../types.js";
import { logVerbose, shouldLogVerbose } from "../../globals.js";
type ThreadTsCacheEntry = {
threadTs: string | null;
updatedAt: number;
};
const DEFAULT_THREAD_TS_CACHE_TTL_MS = 60_000;
const DEFAULT_THREAD_TS_CACHE_MAX = 500;
const normalizeThreadTs = (threadTs?: string | null) => {
const trimmed = threadTs?.trim();
return trimmed ? trimmed : undefined;
};
async function resolveThreadTsFromHistory(params: {
client: SlackWebClient;
channelId: string;
messageTs: string;
}) {
try {
const response = (await params.client.conversations.history({
channel: params.channelId,
latest: params.messageTs,
oldest: params.messageTs,
inclusive: true,
limit: 1,
})) as { messages?: Array<{ ts?: string; thread_ts?: string }> };
const message =
response.messages?.find((entry) => entry.ts === params.messageTs) ?? response.messages?.[0];
return normalizeThreadTs(message?.thread_ts);
} catch (err) {
if (shouldLogVerbose()) {
logVerbose(
`slack inbound: failed to resolve thread_ts via conversations.history for channel=${params.channelId} ts=${params.messageTs}: ${String(err)}`,
);
}
return undefined;
}
}
export function createSlackThreadTsResolver(params: {
client: SlackWebClient;
cacheTtlMs?: number;
maxSize?: number;
}) {
const ttlMs = Math.max(0, params.cacheTtlMs ?? DEFAULT_THREAD_TS_CACHE_TTL_MS);
const maxSize = Math.max(0, params.maxSize ?? DEFAULT_THREAD_TS_CACHE_MAX);
const cache = new Map<string, ThreadTsCacheEntry>();
const inflight = new Map<string, Promise<string | undefined>>();
const getCached = (key: string, now: number) => {
const entry = cache.get(key);
if (!entry) {
return undefined;
}
if (ttlMs > 0 && now - entry.updatedAt > ttlMs) {
cache.delete(key);
return undefined;
}
cache.delete(key);
cache.set(key, { ...entry, updatedAt: now });
return entry.threadTs;
};
const setCached = (key: string, threadTs: string | null, now: number) => {
cache.delete(key);
cache.set(key, { threadTs, updatedAt: now });
if (maxSize <= 0) {
cache.clear();
return;
}
while (cache.size > maxSize) {
const oldestKey = cache.keys().next().value;
if (!oldestKey) {
break;
}
cache.delete(oldestKey);
}
};
return {
resolve: async (request: {
message: SlackMessageEvent;
source: "message" | "app_mention";
}): Promise<SlackMessageEvent> => {
const { message } = request;
if (!message.parent_user_id || message.thread_ts || !message.ts) {
return message;
}
const cacheKey = `${message.channel}:${message.ts}`;
const now = Date.now();
const cached = getCached(cacheKey, now);
if (cached !== undefined) {
return cached ? { ...message, thread_ts: cached } : message;
}
if (shouldLogVerbose()) {
logVerbose(
`slack inbound: missing thread_ts for thread reply channel=${message.channel} ts=${message.ts} source=${request.source}`,
);
}
let pending = inflight.get(cacheKey);
if (!pending) {
pending = resolveThreadTsFromHistory({
client: params.client,
channelId: message.channel,
messageTs: message.ts,
});
inflight.set(cacheKey, pending);
}
let resolved: string | undefined;
try {
resolved = await pending;
} finally {
inflight.delete(cacheKey);
}
setCached(cacheKey, resolved ?? null, Date.now());
if (resolved) {
if (shouldLogVerbose()) {
logVerbose(
`slack inbound: resolved missing thread_ts channel=${message.channel} ts=${message.ts} -> thread_ts=${resolved}`,
);
}
return { ...message, thread_ts: resolved };
}
if (shouldLogVerbose()) {
logVerbose(
`slack inbound: could not resolve missing thread_ts channel=${message.channel} ts=${message.ts}`,
);
}
return message;
},
};
}
|