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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
B
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
fix(imessage): send group media via attachment command · ...
omarshahine · 2026-05-26 · via Recent Commits to openclaw:main
1+

import { spawn } from "node:child_process";

12

import {

23

createMessageReceiptFromOutboundResults,

34

type MessageReceipt,

@@ -52,6 +53,7 @@ type IMessageSendOpts = {

5253

},

5354

) => Promise<{ path: string; contentType?: string }>;

5455

createClient?: (params: { cliPath: string; dbPath?: string }) => Promise<IMessageRpcClient>;

56+

runCliJson?: (args: readonly string[]) => Promise<Record<string, unknown>>;

5557

};

56585759

export type IMessageSendResult = {

@@ -210,6 +212,110 @@ function resolveOutboundEchoScope(params: {

210212

return `${params.accountId}:imessage:${params.target.to}`;

211213

}

212214215+

function buildIMessageCliJsonArgs(args: readonly string[], dbPath?: string): string[] {

216+

const trimmedDbPath = dbPath?.trim();

217+

return [...args, ...(trimmedDbPath ? ["--db", trimmedDbPath] : []), "--json"];

218+

}

219+220+

async function runIMessageCliJson(

221+

cliPath: string,

222+

dbPath: string | undefined,

223+

args: readonly string[],

224+

timeoutMs?: number,

225+

): Promise<Record<string, unknown>> {

226+

return await new Promise((resolve, reject) => {

227+

const child = spawn(cliPath, buildIMessageCliJsonArgs(args, dbPath), {

228+

stdio: ["ignore", "pipe", "pipe"],

229+

});

230+

let stdout = "";

231+

let stderr = "";

232+

let killEscalation: ReturnType<typeof setTimeout> | null = null;

233+

const timer =

234+

timeoutMs && timeoutMs > 0

235+

? setTimeout(() => {

236+

child.kill("SIGTERM");

237+

killEscalation = setTimeout(() => {

238+

try {

239+

child.kill("SIGKILL");

240+

} catch {

241+

// best-effort

242+

}

243+

}, 2000);

244+

reject(new Error(`iMessage action timed out after ${timeoutMs}ms`));

245+

}, timeoutMs)

246+

: null;

247+

child.stdout.setEncoding("utf8");

248+

child.stderr.setEncoding("utf8");

249+

child.stdout.on("data", (chunk) => {

250+

stdout += chunk;

251+

});

252+

child.stderr.on("data", (chunk) => {

253+

stderr += chunk;

254+

});

255+

child.on("error", (error) => {

256+

if (timer) {

257+

clearTimeout(timer);

258+

}

259+

if (killEscalation) {

260+

clearTimeout(killEscalation);

261+

}

262+

reject(error);

263+

});

264+

child.on("close", (code) => {

265+

if (timer) {

266+

clearTimeout(timer);

267+

}

268+

if (killEscalation) {

269+

clearTimeout(killEscalation);

270+

}

271+

const lines = stdout

272+

.split(/\r?\n/u)

273+

.map((line) => line.trim())

274+

.filter(Boolean);

275+

const last = lines.at(-1);

276+

let parsed: Record<string, unknown> | null = null;

277+

if (last) {

278+

try {

279+

const json = JSON.parse(last) as unknown;

280+

if (json && typeof json === "object" && !Array.isArray(json)) {

281+

parsed = json as Record<string, unknown>;

282+

}

283+

} catch {

284+

// handled below

285+

}

286+

}

287+

if (code === 0 && parsed) {

288+

resolve(parsed);

289+

return;

290+

}

291+

if (parsed && typeof parsed.error === "string" && parsed.error.trim()) {

292+

reject(new Error(parsed.error.trim()));

293+

return;

294+

}

295+

const detail = stderr.trim() || stdout.trim() || `imsg exited with code ${code}`;

296+

reject(new Error(detail));

297+

});

298+

});

299+

}

300+301+

function stringValue(value: unknown): string | undefined {

302+

return typeof value === "string" && value.trim() ? value.trim() : undefined;

303+

}

304+305+

async function resolveAttachmentChatGuid(params: {

306+

target: ReturnType<typeof parseIMessageTarget>;

307+

runCliJson: (args: readonly string[]) => Promise<Record<string, unknown>>;

308+

}): Promise<string | null> {

309+

if (params.target.kind === "chat_guid") {

310+

return params.target.chatGuid;

311+

}

312+

if (params.target.kind !== "chat_id") {

313+

return null;

314+

}

315+

const result = await params.runCliJson(["group", "--chat-id", String(params.target.chatId)]);

316+

return stringValue(result.guid) ?? stringValue(result.chat_guid) ?? null;

317+

}

318+213319

export async function sendMessageIMessage(

214320

to: string,

215321

text: string,

@@ -278,6 +384,56 @@ export async function sendMessageIMessage(

278384

}

279385

const echoText = resolveOutboundEchoText(message, filePath ? mediaContentType : undefined);

280386

const resolvedReplyToId = sanitizeReplyToId(opts.replyToId);

387+

const runCliJson =

388+

opts.runCliJson ??

389+

((args: readonly string[]) => runIMessageCliJson(cliPath, dbPath, args, opts.timeoutMs));

390+391+

if (filePath && !message.trim() && !resolvedReplyToId) {

392+

const attachmentChatGuid = await resolveAttachmentChatGuid({ target, runCliJson });

393+

if (attachmentChatGuid) {

394+

const result = await runCliJson([

395+

"send-attachment",

396+

"--chat",

397+

attachmentChatGuid,

398+

"--file",

399+

filePath,

400+

"--transport",

401+

"auto",

402+

]);

403+

const resolvedId = resolveMessageId(result);

404+

const approvalBindingMessageId = resolveOutboundMessageGuid(result);

405+

const messageId = resolvedId ?? (result?.ok || result?.success ? "ok" : "unknown");

406+

const echoScope = resolveOutboundEchoScope({ accountId: account.accountId, target });

407+

if (echoScope) {

408+

rememberPersistedIMessageEcho({

409+

scope: echoScope,

410+

text: echoText,

411+

messageId: resolvedId ?? undefined,

412+

});

413+

}

414+

if (resolvedId) {

415+

rememberIMessageReplyCache({

416+

accountId: account.accountId,

417+

messageId: resolvedId,

418+

chatGuid: target.kind === "chat_guid" ? target.chatGuid : attachmentChatGuid,

419+

chatId: target.kind === "chat_id" ? target.chatId : undefined,

420+

timestamp: Date.now(),

421+

isFromMe: true,

422+

});

423+

}

424+

return {

425+

messageId,

426+

...(approvalBindingMessageId ? { guid: approvalBindingMessageId } : {}),

427+

sentText: message,

428+

...(echoText ? { echoText } : {}),

429+

receipt: createIMessageSendReceipt({

430+

messageId,

431+

target,

432+

kind: "media",

433+

}),

434+

};

435+

}

436+

}

281437

const params: Record<string, unknown> = {

282438

text: message,

283439

service: service || "auto",