Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | /** * 图片处理模块 * 支持图片上传、本地路径处理 */ import type { Logger } from 'openclaw/plugin-sdk'; import { LOCAL_IMAGE_RE, BARE_IMAGE_PATH_RE, toLocalPath, uploadMediaToDingTalk, } from './common.ts'; /** * 扫描内容中的本地图片路径,上传到钉钉并替换为 media_id */ export async function processLocalImages( content: string, oapiToken: string | null, log?: Logger, ): Promise<string> { if (!oapiToken) { log?.warn?.(`[DingTalk][Media] 无 oapiToken,跳过图片后处理`); return content; } let result = content; // 第一步:匹配 markdown 图片语法  const mdMatches = [...content.matchAll(LOCAL_IMAGE_RE)]; if (mdMatches.length > 0) { log?.info?.(`[DingTalk][Media] 检测到 ${mdMatches.length} 个 markdown 图片,开始上传...`); for (const match of mdMatches) { const [fullMatch, alt, rawPath] = match; const cleanPath = rawPath.replace(/\\ /g, ' '); const mediaId = await uploadMediaToDingTalk(cleanPath, 'image', oapiToken, 20 * 1024 * 1024, log); if (mediaId) { result = result.replace(fullMatch, ``); } } } // 第二步:匹配纯文本中的本地图片路径 const bareMatches = [...result.matchAll(BARE_IMAGE_PATH_RE)]; const newBareMatches = bareMatches.filter((m) => { if (m.index === undefined) return false; const idx = m.index; const before = result.slice(Math.max(0, idx - 10), idx); return !before.includes(']('); }); if (newBareMatches.length > 0) { log?.info?.(`[DingTalk][Media] 检测到 ${newBareMatches.length} 个纯文本图片路径,开始上传...`); for (const match of newBareMatches.reverse()) { const [fullMatch, rawPath] = match; log?.info?.(`[DingTalk][Media] 纯文本图片:"${fullMatch}" -> path="${rawPath}"`); const mediaId = await uploadMediaToDingTalk(rawPath, 'image', oapiToken, 20 * 1024 * 1024, log); if (mediaId) { const replacement = ``; result = result.slice(0, match.index!) + result.slice(match.index!).replace(fullMatch, replacement); log?.info?.(`[DingTalk][Media] 替换纯文本路径为图片:${replacement}`); } } } return result; } |