531 lines
17 KiB
TypeScript
531 lines
17 KiB
TypeScript
import type {
|
|
AnyMessageContent,
|
|
proto,
|
|
WAMessage,
|
|
} from "@whiskeysockets/baileys";
|
|
import {
|
|
DisconnectReason,
|
|
downloadMediaMessage,
|
|
isJidGroup,
|
|
} from "@whiskeysockets/baileys";
|
|
|
|
import { loadConfig } from "../config/config.js";
|
|
import { isVerbose, logVerbose } from "../globals.js";
|
|
import { createSubsystemLogger, getChildLogger } from "../logging.js";
|
|
import { saveMediaBuffer } from "../media/store.js";
|
|
import {
|
|
isSelfChatMode,
|
|
jidToE164,
|
|
normalizeE164,
|
|
toWhatsappJid,
|
|
} from "../utils.js";
|
|
import {
|
|
createWaSocket,
|
|
getStatusCode,
|
|
waitForWaConnection,
|
|
} from "./session.js";
|
|
|
|
export type WebListenerCloseReason = {
|
|
status?: number;
|
|
isLoggedOut: boolean;
|
|
error?: unknown;
|
|
};
|
|
|
|
export type WebInboundMessage = {
|
|
id?: string;
|
|
from: string; // conversation id: E.164 for direct chats, group JID for groups
|
|
conversationId: string; // alias for clarity (same as from)
|
|
to: string;
|
|
body: string;
|
|
pushName?: string;
|
|
timestamp?: number;
|
|
chatType: "direct" | "group";
|
|
chatId: string;
|
|
senderJid?: string;
|
|
senderE164?: string;
|
|
senderName?: string;
|
|
replyToId?: string;
|
|
replyToBody?: string;
|
|
replyToSender?: string;
|
|
groupSubject?: string;
|
|
groupParticipants?: string[];
|
|
mentionedJids?: string[];
|
|
selfJid?: string | null;
|
|
selfE164?: string | null;
|
|
sendComposing: () => Promise<void>;
|
|
reply: (text: string) => Promise<void>;
|
|
sendMedia: (payload: AnyMessageContent) => Promise<void>;
|
|
mediaPath?: string;
|
|
mediaType?: string;
|
|
mediaUrl?: string;
|
|
wasMentioned?: boolean;
|
|
};
|
|
|
|
export async function monitorWebInbox(options: {
|
|
verbose: boolean;
|
|
onMessage: (msg: WebInboundMessage) => Promise<void>;
|
|
}) {
|
|
const inboundLogger = getChildLogger({ module: "web-inbound" });
|
|
const inboundConsoleLog = createSubsystemLogger(
|
|
"gateway/providers/whatsapp",
|
|
).child("inbound");
|
|
const sock = await createWaSocket(false, options.verbose);
|
|
await waitForWaConnection(sock);
|
|
let onCloseResolve: ((reason: WebListenerCloseReason) => void) | null = null;
|
|
const onClose = new Promise<WebListenerCloseReason>((resolve) => {
|
|
onCloseResolve = resolve;
|
|
});
|
|
try {
|
|
// Advertise that the gateway is online right after connecting.
|
|
await sock.sendPresenceUpdate("available");
|
|
if (isVerbose()) logVerbose("Sent global 'available' presence on connect");
|
|
} catch (err) {
|
|
logVerbose(
|
|
`Failed to send 'available' presence on connect: ${String(err)}`,
|
|
);
|
|
}
|
|
const selfJid = sock.user?.id;
|
|
const selfE164 = selfJid ? jidToE164(selfJid) : null;
|
|
const seen = new Set<string>();
|
|
const groupMetaCache = new Map<
|
|
string,
|
|
{ subject?: string; participants?: string[]; expires: number }
|
|
>();
|
|
const GROUP_META_TTL_MS = 5 * 60 * 1000; // 5 minutes
|
|
|
|
const getGroupMeta = async (jid: string) => {
|
|
const cached = groupMetaCache.get(jid);
|
|
if (cached && cached.expires > Date.now()) return cached;
|
|
try {
|
|
const meta = await sock.groupMetadata(jid);
|
|
const participants =
|
|
meta.participants
|
|
?.map((p) => jidToE164(p.id) ?? p.id)
|
|
.filter(Boolean) ?? [];
|
|
const entry = {
|
|
subject: meta.subject,
|
|
participants,
|
|
expires: Date.now() + GROUP_META_TTL_MS,
|
|
};
|
|
groupMetaCache.set(jid, entry);
|
|
return entry;
|
|
} catch (err) {
|
|
logVerbose(`Failed to fetch group metadata for ${jid}: ${String(err)}`);
|
|
return { expires: Date.now() + GROUP_META_TTL_MS };
|
|
}
|
|
};
|
|
|
|
sock.ev.on("messages.upsert", async (upsert) => {
|
|
if (upsert.type !== "notify") return;
|
|
for (const msg of upsert.messages) {
|
|
const id = msg.key?.id ?? undefined;
|
|
// De-dupe on message id; Baileys can emit retries.
|
|
if (id && seen.has(id)) continue;
|
|
if (id) seen.add(id);
|
|
// Note: not filtering fromMe here - echo detection happens in auto-reply layer
|
|
const remoteJid = msg.key?.remoteJid;
|
|
if (!remoteJid) continue;
|
|
// Ignore status/broadcast traffic; we only care about direct chats.
|
|
if (remoteJid.endsWith("@status") || remoteJid.endsWith("@broadcast"))
|
|
continue;
|
|
const group = isJidGroup(remoteJid);
|
|
const participantJid = msg.key?.participant ?? undefined;
|
|
const senderE164 = participantJid ? jidToE164(participantJid) : null;
|
|
const from = group ? remoteJid : jidToE164(remoteJid);
|
|
// Skip if we still can't resolve an id to key conversation
|
|
if (!from) continue;
|
|
let groupSubject: string | undefined;
|
|
let groupParticipants: string[] | undefined;
|
|
if (group) {
|
|
const meta = await getGroupMeta(remoteJid);
|
|
groupSubject = meta.subject;
|
|
groupParticipants = meta.participants;
|
|
}
|
|
|
|
// Filter unauthorized senders early to prevent wasted processing
|
|
// and potential session corruption from Bad MAC errors
|
|
const cfg = loadConfig();
|
|
const configuredAllowFrom = cfg.routing?.allowFrom;
|
|
// Without user config, default to self-only DM access so the owner can talk to themselves
|
|
const defaultAllowFrom =
|
|
(!configuredAllowFrom || configuredAllowFrom.length === 0) && selfE164
|
|
? [selfE164]
|
|
: undefined;
|
|
const allowFrom =
|
|
configuredAllowFrom && configuredAllowFrom.length > 0
|
|
? configuredAllowFrom
|
|
: defaultAllowFrom;
|
|
const isSamePhone = from === selfE164;
|
|
const isSelfChat = isSelfChatMode(selfE164, configuredAllowFrom);
|
|
|
|
const allowlistEnabled =
|
|
!group && Array.isArray(allowFrom) && allowFrom.length > 0;
|
|
if (!isSamePhone && allowlistEnabled) {
|
|
const candidate = from;
|
|
const allowedList = allowFrom.map(normalizeE164);
|
|
if (!allowFrom.includes("*") && !allowedList.includes(candidate)) {
|
|
logVerbose(
|
|
`Blocked unauthorized sender ${candidate} (not in allowFrom list)`,
|
|
);
|
|
continue; // Skip processing entirely
|
|
}
|
|
}
|
|
|
|
if (id && !isSelfChat) {
|
|
const participant = msg.key?.participant;
|
|
try {
|
|
await sock.readMessages([
|
|
{ remoteJid, id, participant, fromMe: false },
|
|
]);
|
|
if (isVerbose()) {
|
|
const suffix = participant ? ` (participant ${participant})` : "";
|
|
logVerbose(
|
|
`Marked message ${id} as read for ${remoteJid}${suffix}`,
|
|
);
|
|
}
|
|
} catch (err) {
|
|
logVerbose(`Failed to mark message ${id} read: ${String(err)}`);
|
|
}
|
|
} else if (id && isSelfChat && isVerbose()) {
|
|
// Self-chat mode: never auto-send read receipts (blue ticks) on behalf of the owner.
|
|
logVerbose(`Self-chat mode: skipping read receipt for ${id}`);
|
|
}
|
|
|
|
let body = extractText(msg.message ?? undefined);
|
|
if (!body) {
|
|
body = extractMediaPlaceholder(msg.message ?? undefined);
|
|
if (!body) continue;
|
|
}
|
|
const replyContext = describeReplyContext(
|
|
msg.message as proto.IMessage | undefined,
|
|
);
|
|
let mediaPath: string | undefined;
|
|
let mediaType: string | undefined;
|
|
try {
|
|
const inboundMedia = await downloadInboundMedia(msg, sock);
|
|
if (inboundMedia) {
|
|
const saved = await saveMediaBuffer(
|
|
inboundMedia.buffer,
|
|
inboundMedia.mimetype,
|
|
);
|
|
mediaPath = saved.path;
|
|
mediaType = inboundMedia.mimetype;
|
|
}
|
|
} catch (err) {
|
|
logVerbose(`Inbound media download failed: ${String(err)}`);
|
|
}
|
|
const chatJid = remoteJid;
|
|
const sendComposing = async () => {
|
|
try {
|
|
await sock.sendPresenceUpdate("composing", chatJid);
|
|
} catch (err) {
|
|
logVerbose(`Presence update failed: ${String(err)}`);
|
|
}
|
|
};
|
|
const reply = async (text: string) => {
|
|
await sock.sendMessage(chatJid, { text });
|
|
};
|
|
const sendMedia = async (payload: AnyMessageContent) => {
|
|
await sock.sendMessage(chatJid, payload);
|
|
};
|
|
const timestamp = msg.messageTimestamp
|
|
? Number(msg.messageTimestamp) * 1000
|
|
: undefined;
|
|
const mentionedJids = extractMentionedJids(
|
|
msg.message as proto.IMessage | undefined,
|
|
);
|
|
const senderName = msg.pushName ?? undefined;
|
|
inboundLogger.info(
|
|
{
|
|
from,
|
|
to: selfE164 ?? "me",
|
|
body,
|
|
mediaPath,
|
|
mediaType,
|
|
timestamp,
|
|
},
|
|
"inbound message",
|
|
);
|
|
try {
|
|
const task = Promise.resolve(
|
|
options.onMessage({
|
|
id,
|
|
from,
|
|
conversationId: from,
|
|
to: selfE164 ?? "me",
|
|
body,
|
|
pushName: senderName,
|
|
timestamp,
|
|
chatType: group ? "group" : "direct",
|
|
chatId: remoteJid,
|
|
senderJid: participantJid,
|
|
senderE164: senderE164 ?? undefined,
|
|
senderName,
|
|
replyToId: replyContext?.id,
|
|
replyToBody: replyContext?.body,
|
|
replyToSender: replyContext?.sender,
|
|
groupSubject,
|
|
groupParticipants,
|
|
mentionedJids: mentionedJids ?? undefined,
|
|
selfJid,
|
|
selfE164,
|
|
sendComposing,
|
|
reply,
|
|
sendMedia,
|
|
mediaPath,
|
|
mediaType,
|
|
}),
|
|
);
|
|
void task.catch((err) => {
|
|
inboundLogger.error(
|
|
{ error: String(err) },
|
|
"failed handling inbound web message",
|
|
);
|
|
inboundConsoleLog.error(
|
|
`Failed handling inbound web message: ${String(err)}`,
|
|
);
|
|
});
|
|
} catch (err) {
|
|
inboundLogger.error(
|
|
{ error: String(err) },
|
|
"failed handling inbound web message",
|
|
);
|
|
inboundConsoleLog.error(
|
|
`Failed handling inbound web message: ${String(err)}`,
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
sock.ev.on(
|
|
"connection.update",
|
|
(update: Partial<import("@whiskeysockets/baileys").ConnectionState>) => {
|
|
try {
|
|
if (update.connection === "close") {
|
|
const status = getStatusCode(update.lastDisconnect?.error);
|
|
onCloseResolve?.({
|
|
status,
|
|
isLoggedOut: status === DisconnectReason.loggedOut,
|
|
error: update.lastDisconnect?.error,
|
|
});
|
|
}
|
|
} catch (err) {
|
|
inboundLogger.error(
|
|
{ error: String(err) },
|
|
"connection.update handler error",
|
|
);
|
|
onCloseResolve?.({
|
|
status: undefined,
|
|
isLoggedOut: false,
|
|
error: err,
|
|
});
|
|
}
|
|
},
|
|
);
|
|
|
|
return {
|
|
close: async () => {
|
|
try {
|
|
sock.ws?.close();
|
|
} catch (err) {
|
|
logVerbose(`Socket close failed: ${String(err)}`);
|
|
}
|
|
},
|
|
onClose,
|
|
/**
|
|
* Send a message through this connection's socket.
|
|
* Used by IPC to avoid creating new connections.
|
|
*/
|
|
sendMessage: async (
|
|
to: string,
|
|
text: string,
|
|
mediaBuffer?: Buffer,
|
|
mediaType?: string,
|
|
): Promise<{ messageId: string }> => {
|
|
const jid = toWhatsappJid(to);
|
|
let payload: AnyMessageContent;
|
|
if (mediaBuffer && mediaType) {
|
|
if (mediaType.startsWith("image/")) {
|
|
payload = {
|
|
image: mediaBuffer,
|
|
caption: text || undefined,
|
|
mimetype: mediaType,
|
|
};
|
|
} else if (mediaType.startsWith("audio/")) {
|
|
payload = {
|
|
audio: mediaBuffer,
|
|
ptt: true,
|
|
mimetype: mediaType,
|
|
};
|
|
} else if (mediaType.startsWith("video/")) {
|
|
payload = {
|
|
video: mediaBuffer,
|
|
caption: text || undefined,
|
|
mimetype: mediaType,
|
|
};
|
|
} else {
|
|
payload = {
|
|
document: mediaBuffer,
|
|
fileName: "file",
|
|
caption: text || undefined,
|
|
mimetype: mediaType,
|
|
};
|
|
}
|
|
} else {
|
|
payload = { text };
|
|
}
|
|
const result = await sock.sendMessage(jid, payload);
|
|
return { messageId: result?.key?.id ?? "unknown" };
|
|
},
|
|
/**
|
|
* Send typing indicator ("composing") to a chat.
|
|
* Used after IPC send to show more messages are coming.
|
|
*/
|
|
sendComposingTo: async (to: string): Promise<void> => {
|
|
const jid = toWhatsappJid(to);
|
|
await sock.sendPresenceUpdate("composing", jid);
|
|
},
|
|
} as const;
|
|
}
|
|
|
|
function unwrapMessage(
|
|
message: proto.IMessage | undefined,
|
|
): proto.IMessage | undefined {
|
|
if (!message) return undefined;
|
|
if (message.ephemeralMessage?.message) {
|
|
return unwrapMessage(message.ephemeralMessage.message as proto.IMessage);
|
|
}
|
|
if (message.viewOnceMessage?.message) {
|
|
return unwrapMessage(message.viewOnceMessage.message as proto.IMessage);
|
|
}
|
|
if (message.viewOnceMessageV2?.message) {
|
|
return unwrapMessage(message.viewOnceMessageV2.message as proto.IMessage);
|
|
}
|
|
return message;
|
|
}
|
|
|
|
function extractMentionedJids(
|
|
rawMessage: proto.IMessage | undefined,
|
|
): string[] | undefined {
|
|
const message = unwrapMessage(rawMessage);
|
|
if (!message) return undefined;
|
|
|
|
const candidates: Array<string[] | null | undefined> = [
|
|
message.extendedTextMessage?.contextInfo?.mentionedJid,
|
|
message.extendedTextMessage?.contextInfo?.quotedMessage?.extendedTextMessage
|
|
?.contextInfo?.mentionedJid,
|
|
message.imageMessage?.contextInfo?.mentionedJid,
|
|
message.videoMessage?.contextInfo?.mentionedJid,
|
|
message.documentMessage?.contextInfo?.mentionedJid,
|
|
message.audioMessage?.contextInfo?.mentionedJid,
|
|
message.stickerMessage?.contextInfo?.mentionedJid,
|
|
message.buttonsResponseMessage?.contextInfo?.mentionedJid,
|
|
message.listResponseMessage?.contextInfo?.mentionedJid,
|
|
];
|
|
|
|
const flattened = candidates.flatMap((arr) => arr ?? []).filter(Boolean);
|
|
if (flattened.length === 0) return undefined;
|
|
// De-dupe
|
|
return Array.from(new Set(flattened));
|
|
}
|
|
|
|
export function extractText(
|
|
rawMessage: proto.IMessage | undefined,
|
|
): string | undefined {
|
|
const message = unwrapMessage(rawMessage);
|
|
if (!message) return undefined;
|
|
if (typeof message.conversation === "string" && message.conversation.trim()) {
|
|
return message.conversation.trim();
|
|
}
|
|
const extended = message.extendedTextMessage?.text;
|
|
if (extended?.trim()) return extended.trim();
|
|
const caption =
|
|
message.imageMessage?.caption ?? message.videoMessage?.caption;
|
|
if (caption?.trim()) return caption.trim();
|
|
return undefined;
|
|
}
|
|
|
|
export function extractMediaPlaceholder(
|
|
rawMessage: proto.IMessage | undefined,
|
|
): string | undefined {
|
|
const message = unwrapMessage(rawMessage);
|
|
if (!message) return undefined;
|
|
if (message.imageMessage) return "<media:image>";
|
|
if (message.videoMessage) return "<media:video>";
|
|
if (message.audioMessage) return "<media:audio>";
|
|
if (message.documentMessage) return "<media:document>";
|
|
if (message.stickerMessage) return "<media:sticker>";
|
|
return undefined;
|
|
}
|
|
|
|
function describeReplyContext(rawMessage: proto.IMessage | undefined): {
|
|
id?: string;
|
|
body: string;
|
|
sender: string;
|
|
} | null {
|
|
const message = unwrapMessage(rawMessage);
|
|
if (!message) return null;
|
|
const contextInfo =
|
|
message.extendedTextMessage?.contextInfo ??
|
|
message.imageMessage?.contextInfo ??
|
|
message.videoMessage?.contextInfo ??
|
|
message.documentMessage?.contextInfo ??
|
|
message.audioMessage?.contextInfo ??
|
|
message.stickerMessage?.contextInfo ??
|
|
message.buttonsResponseMessage?.contextInfo ??
|
|
message.listResponseMessage?.contextInfo;
|
|
const quoted = contextInfo?.quotedMessage as proto.IMessage | undefined;
|
|
if (!quoted) return null;
|
|
const body = extractText(quoted) ?? extractMediaPlaceholder(quoted);
|
|
if (!body) return null;
|
|
const senderJid = contextInfo?.participant ?? undefined;
|
|
const senderE164 = senderJid
|
|
? (jidToE164(senderJid) ?? senderJid)
|
|
: undefined;
|
|
const sender = senderE164 ?? "unknown sender";
|
|
return {
|
|
id: contextInfo?.stanzaId ? String(contextInfo.stanzaId) : undefined,
|
|
body,
|
|
sender,
|
|
};
|
|
}
|
|
|
|
async function downloadInboundMedia(
|
|
msg: proto.IWebMessageInfo,
|
|
sock: Awaited<ReturnType<typeof createWaSocket>>,
|
|
): Promise<{ buffer: Buffer; mimetype?: string } | undefined> {
|
|
const message = unwrapMessage(msg.message as proto.IMessage | undefined);
|
|
if (!message) return undefined;
|
|
const mimetype =
|
|
message.imageMessage?.mimetype ??
|
|
message.videoMessage?.mimetype ??
|
|
message.documentMessage?.mimetype ??
|
|
message.audioMessage?.mimetype ??
|
|
message.stickerMessage?.mimetype ??
|
|
undefined;
|
|
if (
|
|
!message.imageMessage &&
|
|
!message.videoMessage &&
|
|
!message.documentMessage &&
|
|
!message.audioMessage &&
|
|
!message.stickerMessage
|
|
) {
|
|
return undefined;
|
|
}
|
|
try {
|
|
const buffer = (await downloadMediaMessage(
|
|
msg as WAMessage,
|
|
"buffer",
|
|
{},
|
|
{
|
|
reuploadRequest: sock.updateMediaMessage,
|
|
logger: sock.logger,
|
|
},
|
|
)) as Buffer;
|
|
return { buffer, mimetype };
|
|
} catch (err) {
|
|
logVerbose(`downloadMediaMessage failed: ${String(err)}`);
|
|
return undefined;
|
|
}
|
|
}
|