Files
openclaw/extensions/msteams/src/sent-message-cache.ts
Takayuki Maeda 0bee3f337a MSTeams: dedupe sent-message cache storage (#22514)
Merged via /review-pr -> /prepare-pr -> /merge-pr.

Prepared head SHA: 88e14dcbe1
Co-authored-by: TaKO8Ki <41065217+TaKO8Ki@users.noreply.github.com>
Co-authored-by: obviyus <22031114+obviyus@users.noreply.github.com>
Reviewed-by: @obviyus
2026-02-21 13:27:50 +05:30

45 lines
1.1 KiB
TypeScript

const TTL_MS = 24 * 60 * 60 * 1000; // 24 hours
type CacheEntry = {
timestamps: Map<string, number>;
};
const sentMessages = new Map<string, CacheEntry>();
function cleanupExpired(entry: CacheEntry): void {
const now = Date.now();
for (const [msgId, timestamp] of entry.timestamps) {
if (now - timestamp > TTL_MS) {
entry.timestamps.delete(msgId);
}
}
}
export function recordMSTeamsSentMessage(conversationId: string, messageId: string): void {
if (!conversationId || !messageId) {
return;
}
let entry = sentMessages.get(conversationId);
if (!entry) {
entry = { timestamps: new Map() };
sentMessages.set(conversationId, entry);
}
entry.timestamps.set(messageId, Date.now());
if (entry.timestamps.size > 200) {
cleanupExpired(entry);
}
}
export function wasMSTeamsMessageSent(conversationId: string, messageId: string): boolean {
const entry = sentMessages.get(conversationId);
if (!entry) {
return false;
}
cleanupExpired(entry);
return entry.timestamps.has(messageId);
}
export function clearMSTeamsSentMessageCache(): void {
sentMessages.clear();
}