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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
罗磊的独立博客
美团技术团队
B
Blog
量子位
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题

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
fix(telegram): preserve sticker media paths (#93130) · op...
goutamadwant · 2026-06-15 · via Recent Commits to openclaw:main
11

// Telegram plugin module implements bot handlers behavior.

22

import { randomUUID } from "node:crypto";

3+

import path from "node:path";

34

import type { Message, ReactionTypeEmoji } from "grammy/types";

45

import { parseExecApprovalCommandText } from "openclaw/plugin-sdk/approval-reply-runtime";

56

import { resolveChannelConfigWrites } from "openclaw/plugin-sdk/channel-config-helpers";

@@ -160,6 +161,39 @@ import {

160161

} from "./network-errors.js";

161162

import { buildInlineKeyboard } from "./send.js";

162163164+

function resolveTelegramPromptMediaPath(mediaPath: string): string | undefined {

165+

const toInboundMediaPath = (id: string): string | undefined => {

166+

if (

167+

!id ||

168+

id === "." ||

169+

id === ".." ||

170+

id.includes("/") ||

171+

id.includes("\\") ||

172+

id.includes("\0")

173+

) {

174+

return undefined;

175+

}

176+

return `media://inbound/${encodeURIComponent(id)}`;

177+

};

178+

const decodeInboundMediaId = (id: string): string | undefined => {

179+

try {

180+

return decodeURIComponent(id);

181+

} catch {

182+

return undefined;

183+

}

184+

};

185+

const canonicalMatch = /^media:\/\/inbound\/([^/\\]+)$/i.exec(mediaPath);

186+

if (canonicalMatch?.[1]) {

187+

const id = decodeInboundMediaId(canonicalMatch[1]);

188+

return id ? toInboundMediaPath(id) : undefined;

189+

}

190+

const normalized = mediaPath.replace(/\\/g, "/");

191+

if (!normalized.includes("/media/inbound/")) {

192+

return undefined;

193+

}

194+

return toInboundMediaPath(path.posix.basename(normalized));

195+

}

196+163197

export const registerTelegramHandlers = ({

164198

cfg,

165199

accountId,

@@ -1109,16 +1143,21 @@ export const registerTelegramHandlers = ({

11091143

media?: TelegramMediaRef,

11101144

): TelegramReplyChainEntry => {

11111145

const { sourceMessage: _sourceMessage, ...entry } = node;

1146+

if (!media?.path) {

1147+

return entry;

1148+

}

1149+

const { mediaRef: _mediaRef, ...entryWithoutProviderMediaRef } = entry;

11121150

return {

1113-

...entry,

1114-

...(media?.path ? { mediaPath: media.path } : {}),

1151+

...entryWithoutProviderMediaRef,

1152+

mediaPath: media.path,

11151153

...(media?.contentType ? { mediaType: media.contentType } : {}),

11161154

};

11171155

};

1118115611191157

const toPromptContextMessage = (

11201158

node: TelegramCachedMessageNode,

11211159

flags?: { replyTarget?: boolean },

1160+

media?: TelegramMediaRef,

11221161

) => ({

11231162

message_id: node.messageId,

11241163

thread_id: node.threadId,

@@ -1127,8 +1166,9 @@ export const registerTelegramHandlers = ({

11271166

sender_username: node.senderUsername,

11281167

timestamp_ms: node.timestamp,

11291168

body: node.body,

1130-

media_type: node.mediaType,

1131-

media_ref: node.mediaRef,

1169+

media_type: media?.contentType ?? node.mediaType,

1170+

media_path: media?.path,

1171+

media_ref: media?.path ? undefined : node.mediaRef,

11321172

reply_to_id: node.replyToId,

11331173

is_reply_target: flags?.replyTarget === true ? true : undefined,

11341174

});

@@ -1137,6 +1177,7 @@ export const registerTelegramHandlers = ({

11371177

msg: Message,

11381178

replyChainNodes: TelegramCachedMessageNode[],

11391179

options?: TelegramMessageContextOptions,

1180+

mediaByMessageId?: ReadonlyMap<string, TelegramMediaRef>,

11401181

): Promise<TelegramPromptContextEntry[]> => {

11411182

const messageId = typeof msg.message_id === "number" ? String(msg.message_id) : undefined;

11421183

const currentNode = await messageCache.get({

@@ -1168,7 +1209,11 @@ export const registerTelegramHandlers = ({

11681209

order: "chronological",

11691210

relation: "selected_for_current_message",

11701211

messages: conversationContext.map((entry) =>

1171-

toPromptContextMessage(entry.node, { replyTarget: entry.isReplyTarget }),

1212+

toPromptContextMessage(

1213+

entry.node,

1214+

{ replyTarget: entry.isReplyTarget },

1215+

entry.node.messageId ? mediaByMessageId?.get(entry.node.messageId) : undefined,

1216+

),

11721217

),

11731218

},

11741219

},

@@ -1240,10 +1285,39 @@ export const registerTelegramHandlers = ({

12401285

params.ctx,

12411286

replyChainNodes,

12421287

);

1288+

const promptContextMediaByMessageId = new Map<string, TelegramMediaRef>();

1289+

const currentMessageId =

1290+

typeof params.msg.message_id === "number" ? String(params.msg.message_id) : undefined;

1291+

const currentMedia = params.allMedia[0];

1292+

const currentPromptMediaPath = currentMedia?.path

1293+

? resolveTelegramPromptMediaPath(currentMedia.path)

1294+

: undefined;

1295+

if (currentMessageId && currentMedia && currentPromptMediaPath) {

1296+

promptContextMediaByMessageId.set(currentMessageId, {

1297+

...currentMedia,

1298+

path: currentPromptMediaPath,

1299+

});

1300+

}

1301+

const isGroupConversation =

1302+

params.msg.chat.type === "group" || params.msg.chat.type === "supergroup";

1303+

if (!isGroupConversation) {

1304+

for (const entry of replyChain) {

1305+

const promptMediaPath = entry.mediaPath

1306+

? resolveTelegramPromptMediaPath(entry.mediaPath)

1307+

: undefined;

1308+

if (entry.messageId && entry.mediaPath && promptMediaPath) {

1309+

promptContextMediaByMessageId.set(entry.messageId, {

1310+

path: promptMediaPath,

1311+

...(entry.mediaType ? { contentType: entry.mediaType } : {}),

1312+

});

1313+

}

1314+

}

1315+

}

12431316

const promptContext = await buildPromptContextForMessage(

12441317

params.msg,

12451318

replyChainNodes,

12461319

params.options,

1320+

promptContextMediaByMessageId,

12471321

);

12481322

const result = await processMessage(

12491323

params.ctx,