fix: preserve original filename for WhatsApp inbound documents (#12691)

* fix: preserve original filename for WhatsApp inbound documents

* fix: cover WhatsApp document filenames (#12691) (thanks @akramcodez)

* test: streamline inbound media waits (#12691) (thanks @akramcodez)

---------

Co-authored-by: Gustavo Madeira Santana <gumadeiras@gmail.com>
This commit is contained in:
Sk Akram
2026-02-10 03:26:19 +05:30
committed by GitHub
parent 1074d13e4e
commit 1cee5135e4
5 changed files with 51 additions and 30 deletions

View File

@@ -17,6 +17,7 @@ Docs: https://docs.openclaw.ai
### Fixes ### Fixes
- WhatsApp: preserve original filenames for inbound documents. (#12691) Thanks @akramcodez.
- Telegram: harden quote parsing; preserve quote context; avoid QUOTE_TEXT_INVALID; avoid nested reply quote misclassification. (#12156) Thanks @rybnikov. - Telegram: harden quote parsing; preserve quote context; avoid QUOTE_TEXT_INVALID; avoid nested reply quote misclassification. (#12156) Thanks @rybnikov.
- Telegram: recover proactive sends when stale topic thread IDs are used by retrying without `message_thread_id`. (#11620) - Telegram: recover proactive sends when stale topic thread IDs are used by retrying without `message_thread_id`. (#11620)
- Telegram: render markdown spoilers with `<tg-spoiler>` HTML tags. (#11543) Thanks @ezhikkk. - Telegram: render markdown spoilers with `<tg-spoiler>` HTML tags. (#11543) Thanks @ezhikkk.

View File

@@ -88,6 +88,11 @@ vi.mock("./session.js", () => {
import { monitorWebInbox, resetWebInboundDedupe } from "./inbound.js"; import { monitorWebInbox, resetWebInboundDedupe } from "./inbound.js";
async function waitForMessage(onMessage: ReturnType<typeof vi.fn>) {
await vi.waitFor(() => expect(onMessage).toHaveBeenCalledTimes(1));
return onMessage.mock.calls[0][0];
}
describe("web inbound media saves with extension", () => { describe("web inbound media saves with extension", () => {
beforeEach(() => { beforeEach(() => {
saveMediaBufferSpy.mockClear(); saveMediaBufferSpy.mockClear();
@@ -125,16 +130,7 @@ describe("web inbound media saves with extension", () => {
realSock.ev.emit("messages.upsert", upsert); realSock.ev.emit("messages.upsert", upsert);
// Allow a brief window for the async handler to fire on slower hosts. const msg = await waitForMessage(onMessage);
for (let i = 0; i < 50; i++) {
if (onMessage.mock.calls.length > 0) {
break;
}
await new Promise((resolve) => setTimeout(resolve, 10));
}
expect(onMessage).toHaveBeenCalledTimes(1);
const msg = onMessage.mock.calls[0][0];
const mediaPath = msg.mediaPath; const mediaPath = msg.mediaPath;
expect(mediaPath).toBeDefined(); expect(mediaPath).toBeDefined();
expect(path.extname(mediaPath as string)).toBe(".jpg"); expect(path.extname(mediaPath as string)).toBe(".jpg");
@@ -179,15 +175,7 @@ describe("web inbound media saves with extension", () => {
realSock.ev.emit("messages.upsert", upsert); realSock.ev.emit("messages.upsert", upsert);
for (let i = 0; i < 50; i++) { const msg = await waitForMessage(onMessage);
if (onMessage.mock.calls.length > 0) {
break;
}
await new Promise((resolve) => setTimeout(resolve, 10));
}
expect(onMessage).toHaveBeenCalledTimes(1);
const msg = onMessage.mock.calls[0][0];
expect(msg.chatType).toBe("group"); expect(msg.chatType).toBe("group");
expect(msg.mentionedJids).toEqual(["999@s.whatsapp.net"]); expect(msg.mentionedJids).toEqual(["999@s.whatsapp.net"]);
@@ -221,18 +209,44 @@ describe("web inbound media saves with extension", () => {
realSock.ev.emit("messages.upsert", upsert); realSock.ev.emit("messages.upsert", upsert);
for (let i = 0; i < 50; i++) { await waitForMessage(onMessage);
if (onMessage.mock.calls.length > 0) {
break;
}
await new Promise((resolve) => setTimeout(resolve, 10));
}
expect(onMessage).toHaveBeenCalledTimes(1);
expect(saveMediaBufferSpy).toHaveBeenCalled(); expect(saveMediaBufferSpy).toHaveBeenCalled();
const lastCall = saveMediaBufferSpy.mock.calls.at(-1); const lastCall = saveMediaBufferSpy.mock.calls.at(-1);
expect(lastCall?.[3]).toBe(1 * 1024 * 1024); expect(lastCall?.[3]).toBe(1 * 1024 * 1024);
await listener.close(); await listener.close();
}); });
it("passes document filenames to saveMediaBuffer", async () => {
const onMessage = vi.fn();
const listener = await monitorWebInbox({ verbose: false, onMessage });
const { createWaSocket } = await import("./session.js");
const realSock = await (
createWaSocket as unknown as () => Promise<{
ev: import("node:events").EventEmitter;
}>
)();
const fileName = "invoice.pdf";
const upsert = {
type: "notify",
messages: [
{
key: { id: "doc1", fromMe: false, remoteJid: "333@s.whatsapp.net" },
message: { documentMessage: { mimetype: "application/pdf", fileName } },
messageTimestamp: 1_700_000_004,
},
],
};
realSock.ev.emit("messages.upsert", upsert);
const msg = await waitForMessage(onMessage);
expect(msg.mediaFileName).toBe(fileName);
expect(saveMediaBufferSpy).toHaveBeenCalled();
const lastCall = saveMediaBufferSpy.mock.calls.at(-1);
expect(lastCall?.[4]).toBe(fileName);
await listener.close();
});
}); });

View File

@@ -11,7 +11,7 @@ function unwrapMessage(message: proto.IMessage | undefined): proto.IMessage | un
export async function downloadInboundMedia( export async function downloadInboundMedia(
msg: proto.IWebMessageInfo, msg: proto.IWebMessageInfo,
sock: Awaited<ReturnType<typeof createWaSocket>>, sock: Awaited<ReturnType<typeof createWaSocket>>,
): Promise<{ buffer: Buffer; mimetype?: string } | undefined> { ): Promise<{ buffer: Buffer; mimetype?: string; fileName?: string } | undefined> {
const message = unwrapMessage(msg.message as proto.IMessage | undefined); const message = unwrapMessage(msg.message as proto.IMessage | undefined);
if (!message) { if (!message) {
return undefined; return undefined;
@@ -23,6 +23,7 @@ export async function downloadInboundMedia(
message.audioMessage?.mimetype ?? message.audioMessage?.mimetype ??
message.stickerMessage?.mimetype ?? message.stickerMessage?.mimetype ??
undefined; undefined;
const fileName = message.documentMessage?.fileName ?? undefined;
if ( if (
!message.imageMessage && !message.imageMessage &&
!message.videoMessage && !message.videoMessage &&
@@ -42,7 +43,7 @@ export async function downloadInboundMedia(
logger: sock.logger, logger: sock.logger,
}, },
); );
return { buffer, mimetype }; return { buffer, mimetype, fileName };
} catch (err) { } catch (err) {
logVerbose(`downloadMediaMessage failed: ${String(err)}`); logVerbose(`downloadMediaMessage failed: ${String(err)}`);
return undefined; return undefined;

View File

@@ -253,6 +253,7 @@ export async function monitorWebInbox(options: {
let mediaPath: string | undefined; let mediaPath: string | undefined;
let mediaType: string | undefined; let mediaType: string | undefined;
let mediaFileName: string | undefined;
try { try {
const inboundMedia = await downloadInboundMedia(msg as proto.IWebMessageInfo, sock); const inboundMedia = await downloadInboundMedia(msg as proto.IWebMessageInfo, sock);
if (inboundMedia) { if (inboundMedia) {
@@ -266,9 +267,11 @@ export async function monitorWebInbox(options: {
inboundMedia.mimetype, inboundMedia.mimetype,
"inbound", "inbound",
maxBytes, maxBytes,
inboundMedia.fileName,
); );
mediaPath = saved.path; mediaPath = saved.path;
mediaType = inboundMedia.mimetype; mediaType = inboundMedia.mimetype;
mediaFileName = inboundMedia.fileName;
} }
} catch (err) { } catch (err) {
logVerbose(`Inbound media download failed: ${String(err)}`); logVerbose(`Inbound media download failed: ${String(err)}`);
@@ -293,7 +296,7 @@ export async function monitorWebInbox(options: {
const senderName = msg.pushName ?? undefined; const senderName = msg.pushName ?? undefined;
inboundLogger.info( inboundLogger.info(
{ from, to: selfE164 ?? "me", body, mediaPath, mediaType, timestamp }, { from, to: selfE164 ?? "me", body, mediaPath, mediaType, mediaFileName, timestamp },
"inbound message", "inbound message",
); );
const inboundMessage: WebInboundMessage = { const inboundMessage: WebInboundMessage = {
@@ -326,6 +329,7 @@ export async function monitorWebInbox(options: {
sendMedia, sendMedia,
mediaPath, mediaPath,
mediaType, mediaType,
mediaFileName,
}; };
try { try {
const task = Promise.resolve(debouncer.enqueue(inboundMessage)); const task = Promise.resolve(debouncer.enqueue(inboundMessage));

View File

@@ -37,6 +37,7 @@ export type WebInboundMessage = {
sendMedia: (payload: AnyMessageContent) => Promise<void>; sendMedia: (payload: AnyMessageContent) => Promise<void>;
mediaPath?: string; mediaPath?: string;
mediaType?: string; mediaType?: string;
mediaFileName?: string;
mediaUrl?: string; mediaUrl?: string;
wasMentioned?: boolean; wasMentioned?: boolean;
}; };