惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
msteams: persist sent-message markers best-effort (#75585...
amknight · 2026-05-03 · via Recent Commits to openclaw:main

@@ -1,7 +1,22 @@

1-

const TTL_MS = 24 * 60 * 60 * 1000; // 24 hours

1+

import { getOptionalMSTeamsRuntime } from "./runtime.js";

2+3+

const TTL_MS = 24 * 60 * 60 * 1000;

4+

const PERSISTENT_MAX_ENTRIES = 1000;

5+

const PERSISTENT_NAMESPACE = "msteams.sent-messages";

26

const MSTEAMS_SENT_MESSAGES_KEY = Symbol.for("openclaw.msteamsSentMessages");

378+

type MSTeamsSentMessageRecord = {

9+

sentAt: number;

10+

};

11+12+

type MSTeamsSentMessageStore = {

13+

register(key: string, value: MSTeamsSentMessageRecord, opts?: { ttlMs?: number }): Promise<void>;

14+

lookup(key: string): Promise<MSTeamsSentMessageRecord | undefined>;

15+

};

16+417

let sentMessageCache: Map<string, Map<string, number>> | undefined;

18+

let persistentStore: MSTeamsSentMessageStore | undefined;

19+

let persistentStoreDisabled = false;

520621

function getSentMessageCache(): Map<string, Map<string, number>> {

722

if (!sentMessageCache) {

@@ -14,6 +29,50 @@ function getSentMessageCache(): Map<string, Map<string, number>> {

1429

return sentMessageCache;

1530

}

163132+

function makePersistentKey(conversationId: string, messageId: string): string {

33+

return `${conversationId}:${messageId}`;

34+

}

35+36+

function reportPersistentSentMessageError(error: unknown): void {

37+

try {

38+

getOptionalMSTeamsRuntime()

39+

?.logging.getChildLogger({ plugin: "msteams", feature: "sent-message-state" })

40+

.warn("Microsoft Teams persistent sent-message state failed", { error: String(error) });

41+

} catch {

42+

// Best effort only: persistent state must never break Teams routing.

43+

}

44+

}

45+46+

function disablePersistentSentMessageStore(error: unknown): void {

47+

persistentStoreDisabled = true;

48+

persistentStore = undefined;

49+

reportPersistentSentMessageError(error);

50+

}

51+52+

function getPersistentSentMessageStore(): MSTeamsSentMessageStore | undefined {

53+

if (persistentStoreDisabled) {

54+

return undefined;

55+

}

56+

if (persistentStore) {

57+

return persistentStore;

58+

}

59+

const runtime = getOptionalMSTeamsRuntime();

60+

if (!runtime) {

61+

return undefined;

62+

}

63+

try {

64+

persistentStore = runtime.state.openKeyedStore<MSTeamsSentMessageRecord>({

65+

namespace: PERSISTENT_NAMESPACE,

66+

maxEntries: PERSISTENT_MAX_ENTRIES,

67+

defaultTtlMs: TTL_MS,

68+

});

69+

return persistentStore;

70+

} catch (error) {

71+

disablePersistentSentMessageStore(error);

72+

return undefined;

73+

}

74+

}

75+1776

function cleanupExpired(scopeKey: string, entry: Map<string, number>, now: number): void {

1877

for (const [id, timestamp] of entry) {

1978

if (now - timestamp > TTL_MS) {

@@ -25,23 +84,62 @@ function cleanupExpired(scopeKey: string, entry: Map<string, number>, now: numbe

2584

}

2685

}

278628-

export function recordMSTeamsSentMessage(conversationId: string, messageId: string): void {

29-

if (!conversationId || !messageId) {

30-

return;

31-

}

32-

const now = Date.now();

87+

function rememberSentMessageInMemory(

88+

conversationId: string,

89+

messageId: string,

90+

sentAt: number,

91+

): void {

3392

const store = getSentMessageCache();

3493

let entry = store.get(conversationId);

3594

if (!entry) {

3695

entry = new Map<string, number>();

3796

store.set(conversationId, entry);

3897

}

39-

entry.set(messageId, now);

98+

entry.set(messageId, sentAt);

4099

if (entry.size > 200) {

41-

cleanupExpired(conversationId, entry, now);

100+

cleanupExpired(conversationId, entry, sentAt);

42101

}

43102

}

44103104+

function rememberPersistentSentMessage(params: {

105+

conversationId: string;

106+

messageId: string;

107+

sentAt: number;

108+

}): void {

109+

const store = getPersistentSentMessageStore();

110+

if (!store) {

111+

return;

112+

}

113+

void store

114+

.register(makePersistentKey(params.conversationId, params.messageId), { sentAt: params.sentAt })

115+

.catch(disablePersistentSentMessageStore);

116+

}

117+118+

async function lookupPersistentSentMessage(params: {

119+

conversationId: string;

120+

messageId: string;

121+

}): Promise<number | undefined> {

122+

const store = getPersistentSentMessageStore();

123+

if (!store) {

124+

return undefined;

125+

}

126+

try {

127+

return (await store.lookup(makePersistentKey(params.conversationId, params.messageId)))?.sentAt;

128+

} catch (error) {

129+

disablePersistentSentMessageStore(error);

130+

return undefined;

131+

}

132+

}

133+134+

export function recordMSTeamsSentMessage(conversationId: string, messageId: string): void {

135+

if (!conversationId || !messageId) {

136+

return;

137+

}

138+

const now = Date.now();

139+

rememberSentMessageInMemory(conversationId, messageId, now);

140+

rememberPersistentSentMessage({ conversationId, messageId, sentAt: now });

141+

}

142+45143

export function wasMSTeamsMessageSent(conversationId: string, messageId: string): boolean {

46144

const entry = getSentMessageCache().get(conversationId);

47145

if (!entry) {

@@ -51,6 +149,26 @@ export function wasMSTeamsMessageSent(conversationId: string, messageId: string)

51149

return entry.has(messageId);

52150

}

53151152+

export async function wasMSTeamsMessageSentWithPersistence(params: {

153+

conversationId: string;

154+

messageId: string;

155+

}): Promise<boolean> {

156+

if (!params.conversationId || !params.messageId) {

157+

return false;

158+

}

159+

if (wasMSTeamsMessageSent(params.conversationId, params.messageId)) {

160+

return true;

161+

}

162+

const sentAt = await lookupPersistentSentMessage(params);

163+

if (sentAt == null) {

164+

return false;

165+

}

166+

rememberSentMessageInMemory(params.conversationId, params.messageId, sentAt);

167+

return wasMSTeamsMessageSent(params.conversationId, params.messageId);

168+

}

169+54170

export function clearMSTeamsSentMessageCache(): void {

55171

getSentMessageCache().clear();

172+

persistentStore = undefined;

173+

persistentStoreDisabled = false;

56174

}