Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37c41931cf | |||
| 259f9e3b68 | |||
| 2ff8f6edba | |||
| 0655d79e8b | |||
| 2363944bb3 | |||
| 7f1e9e67f7 | |||
| acb8457ebc | |||
| 39d167168c | |||
| 8340803377 | |||
| aa37c8c19e | |||
| d075195cda | |||
| 11eed3aedc | |||
| dbc6dd6aed | |||
| e152aee740 | |||
| ff9b84c561 | |||
| 50c13398c4 | |||
| d991d0212d |
@@ -1,7 +1,7 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
package proto;
|
package proto;
|
||||||
|
|
||||||
/// WhatsApp Version: 2.3000.1035216863
|
/// WhatsApp Version: 2.3000.1035302375
|
||||||
|
|
||||||
message ADVDeviceIdentity {
|
message ADVDeviceIdentity {
|
||||||
optional uint32 rawId = 1;
|
optional uint32 rawId = 1;
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"version":[2,3000,1035223526]}
|
{"version":[2,3000,1035317910]}
|
||||||
|
|||||||
@@ -306,7 +306,7 @@ export function makeLibSignalRepository(
|
|||||||
// This prevents PN/LID race conditions where concurrent operations for the
|
// This prevents PN/LID race conditions where concurrent operations for the
|
||||||
// same logical contact acquire different mutex locks because one uses PN
|
// same logical contact acquire different mutex locks because one uses PN
|
||||||
// and the other uses LID. (Aligned with WABA behavior — all operations use LID internally.)
|
// and the other uses LID. (Aligned with WABA behavior — all operations use LID internally.)
|
||||||
const resolveCanonicalJid = async(jid: string): Promise<string> => {
|
const resolveCanonicalJid = async (jid: string): Promise<string> => {
|
||||||
if (isAnyLidUser(jid)) {
|
if (isAnyLidUser(jid)) {
|
||||||
return jid
|
return jid
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-18
@@ -25,28 +25,30 @@ export const makeGroupsSocket = (config: SocketConfig) => {
|
|||||||
const lidMapping = signalRepository.lidMapping
|
const lidMapping = signalRepository.lidMapping
|
||||||
|
|
||||||
// Resolve all participant LIDs in parallel for better performance on large groups
|
// Resolve all participant LIDs in parallel for better performance on large groups
|
||||||
await Promise.all(metadata.participants.map(async (p) => {
|
await Promise.all(
|
||||||
if (isLidUser(p.id)) {
|
metadata.participants.map(async p => {
|
||||||
if (p.phoneNumber) {
|
if (isLidUser(p.id)) {
|
||||||
p.lid = p.id
|
if (p.phoneNumber) {
|
||||||
p.id = p.phoneNumber
|
|
||||||
} else {
|
|
||||||
const resolved = await resolveLidToPn(p.id, lidMapping, logger)
|
|
||||||
if (resolved && resolved !== p.id) {
|
|
||||||
p.lid = p.id
|
p.lid = p.id
|
||||||
p.id = resolved
|
p.id = p.phoneNumber
|
||||||
|
} else {
|
||||||
|
const resolved = await resolveLidToPn(p.id, lidMapping, logger)
|
||||||
|
if (resolved && resolved !== p.id) {
|
||||||
|
p.lid = p.id
|
||||||
|
p.id = resolved
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
}))
|
)
|
||||||
|
|
||||||
// Normalize owner/subjectOwner if LID (parallel)
|
// Normalize owner/subjectOwner if LID (parallel)
|
||||||
const [resolvedOwner, resolvedSubjectOwner] = await Promise.all([
|
const [resolvedOwner, resolvedSubjectOwner] = await Promise.all([
|
||||||
metadata.owner && isLidUser(metadata.owner)
|
metadata.owner && isLidUser(metadata.owner)
|
||||||
? (metadata.ownerPn || resolveLidToPn(metadata.owner, lidMapping, logger))
|
? metadata.ownerPn || resolveLidToPn(metadata.owner, lidMapping, logger)
|
||||||
: null,
|
: null,
|
||||||
metadata.subjectOwner && isLidUser(metadata.subjectOwner)
|
metadata.subjectOwner && isLidUser(metadata.subjectOwner)
|
||||||
? (metadata.subjectOwnerPn || resolveLidToPn(metadata.subjectOwner, lidMapping, logger))
|
? metadata.subjectOwnerPn || resolveLidToPn(metadata.subjectOwner, lidMapping, logger)
|
||||||
: null
|
: null
|
||||||
])
|
])
|
||||||
if (resolvedOwner) metadata.owner = resolvedOwner
|
if (resolvedOwner) metadata.owner = resolvedOwner
|
||||||
@@ -95,11 +97,13 @@ export const makeGroupsSocket = (config: SocketConfig) => {
|
|||||||
if (groupsChild) {
|
if (groupsChild) {
|
||||||
const groups = getBinaryNodeChildren(groupsChild, 'group')
|
const groups = getBinaryNodeChildren(groupsChild, 'group')
|
||||||
for (const groupNode of groups) {
|
for (const groupNode of groups) {
|
||||||
const meta = await normalizeGroupMetadata(extractGroupMetadata({
|
const meta = await normalizeGroupMetadata(
|
||||||
tag: 'result',
|
extractGroupMetadata({
|
||||||
attrs: {},
|
tag: 'result',
|
||||||
content: [groupNode]
|
attrs: {},
|
||||||
}))
|
content: [groupNode]
|
||||||
|
})
|
||||||
|
)
|
||||||
data[meta.id] = meta
|
data[meta.id] = meta
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+237
-233
@@ -376,7 +376,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
for (const update of updates) {
|
for (const update of updates) {
|
||||||
if (update.jid && update.user) {
|
if (update.jid && update.user) {
|
||||||
const [resolvedAuthor, resolvedUser] = await Promise.all([
|
const [resolvedAuthor, resolvedUser] = await Promise.all([
|
||||||
resolveLidToPn(node.attrs.from!, signalRepository.lidMapping, logger),
|
resolveLidToPn(node.attrs.from, signalRepository.lidMapping, logger),
|
||||||
resolveLidToPn(update.user, signalRepository.lidMapping, logger)
|
resolveLidToPn(update.user, signalRepository.lidMapping, logger)
|
||||||
])
|
])
|
||||||
ev.emit('newsletter-participants.update', {
|
ev.emit('newsletter-participants.update', {
|
||||||
@@ -403,7 +403,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const child = getAllBinaryNodeChildren(node)[0]!
|
const child = getAllBinaryNodeChildren(node)[0]!
|
||||||
const rawAuthor = node.attrs.participant!
|
const rawAuthor = node.attrs.participant!
|
||||||
// Resolve author LID→PN (participant is a user JID that could be LID)
|
// Resolve author LID→PN (participant is a user JID that could be LID)
|
||||||
const author = await resolveLidToPn(rawAuthor, signalRepository.lidMapping, logger) || rawAuthor
|
const author = (await resolveLidToPn(rawAuthor, signalRepository.lidMapping, logger)) || rawAuthor
|
||||||
|
|
||||||
logger.info({ from, child }, 'got newsletter notification')
|
logger.info({ from, child }, 'got newsletter notification')
|
||||||
|
|
||||||
@@ -430,7 +430,8 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
break
|
break
|
||||||
|
|
||||||
case 'participant':
|
case 'participant':
|
||||||
const resolvedParticipantUser = await resolveLidToPn(child.attrs.jid!, signalRepository.lidMapping, logger) || child.attrs.jid!
|
const resolvedParticipantUser =
|
||||||
|
(await resolveLidToPn(child.attrs.jid, signalRepository.lidMapping, logger)) || child.attrs.jid!
|
||||||
const participantUpdate = {
|
const participantUpdate = {
|
||||||
id: from,
|
id: from,
|
||||||
author,
|
author,
|
||||||
@@ -573,7 +574,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const offerContent: BinaryNode[] = [
|
const offerContent: BinaryNode[] = [
|
||||||
{ tag: 'privacy', attrs: {}, content: undefined },
|
{ tag: 'privacy', attrs: {}, content: undefined },
|
||||||
{ tag: 'audio', attrs: { rate: '8000', enc: 'opus' }, content: undefined },
|
{ tag: 'audio', attrs: { rate: '8000', enc: 'opus' }, content: undefined },
|
||||||
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined },
|
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined }
|
||||||
]
|
]
|
||||||
|
|
||||||
if (isVideo) {
|
if (isVideo) {
|
||||||
@@ -594,31 +595,31 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
{ tag: 'net', attrs: { medium: '3' }, content: undefined },
|
{ tag: 'net', attrs: { medium: '3' }, content: undefined },
|
||||||
{ tag: 'capability', attrs: { ver: '1' }, content: undefined },
|
{ tag: 'capability', attrs: { ver: '1' }, content: undefined },
|
||||||
{ tag: 'enc', attrs: { v: '2', type: isVideo ? 'msg' : 'pkmsg' }, content: undefined },
|
{ tag: 'enc', attrs: { v: '2', type: isVideo ? 'msg' : 'pkmsg' }, content: undefined },
|
||||||
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined }
|
||||||
)
|
)
|
||||||
|
|
||||||
// Voice calls include device-identity (verified via Frida capture)
|
// Voice calls include device-identity (verified via Frida capture)
|
||||||
if (!isVideo) {
|
if (!isVideo) {
|
||||||
offerContent.push(
|
offerContent.push({ tag: 'device-identity', attrs: {}, content: undefined })
|
||||||
{ tag: 'device-identity', attrs: {}, content: undefined },
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: jid,
|
to: jid,
|
||||||
id: stanzaId,
|
id: stanzaId
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'offer',
|
{
|
||||||
attrs: {
|
tag: 'offer',
|
||||||
'call-creator': meId,
|
attrs: {
|
||||||
'call-id': callId,
|
'call-creator': meId,
|
||||||
'device_class': '2013',
|
'call-id': callId,
|
||||||
},
|
device_class: '2013'
|
||||||
content: offerContent
|
},
|
||||||
}]
|
content: offerContent
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await query(stanza)
|
await query(stanza)
|
||||||
@@ -647,7 +648,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
const terminateAttrs: Record<string, string> = {
|
const terminateAttrs: Record<string, string> = {
|
||||||
'call-id': callId,
|
'call-id': callId,
|
||||||
'call-creator': callCreator || meId,
|
'call-creator': callCreator || meId
|
||||||
}
|
}
|
||||||
|
|
||||||
if (reason) {
|
if (reason) {
|
||||||
@@ -663,13 +664,15 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: callTo,
|
to: callTo,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'terminate',
|
{
|
||||||
attrs: terminateAttrs,
|
tag: 'terminate',
|
||||||
content: undefined
|
attrs: terminateAttrs,
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await query(stanza)
|
await query(stanza)
|
||||||
@@ -683,24 +686,18 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
* @param callFrom - JID of the caller (call-creator)
|
* @param callFrom - JID of the caller (call-creator)
|
||||||
* @param isVideo - true for video call
|
* @param isVideo - true for video call
|
||||||
*/
|
*/
|
||||||
const acceptCall = async (
|
const acceptCall = async (callId: string, callFrom: string, isVideo?: boolean) => {
|
||||||
callId: string,
|
|
||||||
callFrom: string,
|
|
||||||
isVideo?: boolean,
|
|
||||||
) => {
|
|
||||||
const meId = authState.creds.me?.id
|
const meId = authState.creds.me?.id
|
||||||
if (!meId) throw new Boom('Not authenticated', { statusCode: 401 })
|
if (!meId) throw new Boom('Not authenticated', { statusCode: 401 })
|
||||||
|
|
||||||
const acceptContent: BinaryNode[] = [
|
const acceptContent: BinaryNode[] = [{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined }]
|
||||||
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined },
|
|
||||||
]
|
|
||||||
|
|
||||||
if (isVideo) {
|
if (isVideo) {
|
||||||
acceptContent.push({
|
acceptContent.push({
|
||||||
tag: 'video',
|
tag: 'video',
|
||||||
attrs: {
|
attrs: {
|
||||||
dec: 'H264,AV1',
|
dec: 'H264,AV1',
|
||||||
device_orientation: '1',
|
device_orientation: '1'
|
||||||
},
|
},
|
||||||
content: undefined
|
content: undefined
|
||||||
})
|
})
|
||||||
@@ -708,7 +705,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
acceptContent.push(
|
acceptContent.push(
|
||||||
{ tag: 'net', attrs: { medium: '2' }, content: undefined },
|
{ tag: 'net', attrs: { medium: '2' }, content: undefined },
|
||||||
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined }
|
||||||
)
|
)
|
||||||
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
@@ -716,16 +713,18 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
attrs: {
|
attrs: {
|
||||||
from: meId,
|
from: meId,
|
||||||
to: callFrom,
|
to: callFrom,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'accept',
|
{
|
||||||
attrs: {
|
tag: 'accept',
|
||||||
'call-id': callId,
|
attrs: {
|
||||||
'call-creator': callFrom,
|
'call-id': callId,
|
||||||
},
|
'call-creator': callFrom
|
||||||
content: acceptContent
|
},
|
||||||
}]
|
content: acceptContent
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await query(stanza)
|
await query(stanza)
|
||||||
@@ -740,14 +739,8 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
* @param callCreator - JID of the caller
|
* @param callCreator - JID of the caller
|
||||||
* @param isVideo - true for video call
|
* @param isVideo - true for video call
|
||||||
*/
|
*/
|
||||||
const preacceptCall = async (
|
const preacceptCall = async (callId: string, callCreator: string, isVideo?: boolean) => {
|
||||||
callId: string,
|
const preacceptContent: BinaryNode[] = [{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined }]
|
||||||
callCreator: string,
|
|
||||||
isVideo?: boolean,
|
|
||||||
) => {
|
|
||||||
const preacceptContent: BinaryNode[] = [
|
|
||||||
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined },
|
|
||||||
]
|
|
||||||
|
|
||||||
if (isVideo) {
|
if (isVideo) {
|
||||||
preacceptContent.push({
|
preacceptContent.push({
|
||||||
@@ -756,7 +749,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
screen_width: '1080',
|
screen_width: '1080',
|
||||||
screen_height: '2400',
|
screen_height: '2400',
|
||||||
dec: 'H264,H265,AV1',
|
dec: 'H264,H265,AV1',
|
||||||
device_orientation: '0',
|
device_orientation: '0'
|
||||||
},
|
},
|
||||||
content: undefined
|
content: undefined
|
||||||
})
|
})
|
||||||
@@ -764,23 +757,25 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
preacceptContent.push(
|
preacceptContent.push(
|
||||||
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
||||||
{ tag: 'capability', attrs: { ver: '1' }, content: undefined },
|
{ tag: 'capability', attrs: { ver: '1' }, content: undefined }
|
||||||
)
|
)
|
||||||
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: callCreator,
|
to: callCreator,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'preaccept',
|
{
|
||||||
attrs: {
|
tag: 'preaccept',
|
||||||
'call-id': callId,
|
attrs: {
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
},
|
'call-creator': callCreator
|
||||||
content: preacceptContent
|
},
|
||||||
}]
|
content: preacceptContent
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await query(stanza)
|
await query(stanza)
|
||||||
@@ -806,11 +801,11 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
dlBw?: number
|
dlBw?: number
|
||||||
ulBw?: number
|
ulBw?: number
|
||||||
}>,
|
}>,
|
||||||
transactionId?: string,
|
transactionId?: string
|
||||||
) => {
|
) => {
|
||||||
const relayLatencyAttrs: Record<string, string> = {
|
const relayLatencyAttrs: Record<string, string> = {
|
||||||
'call-id': callId,
|
'call-id': callId,
|
||||||
'call-creator': callCreator,
|
'call-creator': callCreator
|
||||||
}
|
}
|
||||||
|
|
||||||
if (transactionId) {
|
if (transactionId) {
|
||||||
@@ -843,13 +838,15 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: callCreator,
|
to: callCreator,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'relaylatency',
|
{
|
||||||
attrs: relayLatencyAttrs,
|
tag: 'relaylatency',
|
||||||
content: teChildren
|
attrs: relayLatencyAttrs,
|
||||||
}]
|
content: teChildren
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -870,12 +867,12 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
callCreator: string,
|
callCreator: string,
|
||||||
to: string,
|
to: string,
|
||||||
candidates: Array<{ priority: string; data?: Uint8Array }>,
|
candidates: Array<{ priority: string; data?: Uint8Array }>,
|
||||||
round?: number,
|
round?: number
|
||||||
) => {
|
) => {
|
||||||
const transportAttrs: Record<string, string> = {
|
const transportAttrs: Record<string, string> = {
|
||||||
'call-id': callId,
|
'call-id': callId,
|
||||||
'call-creator': callCreator,
|
'call-creator': callCreator,
|
||||||
'transport-message-type': '1',
|
'transport-message-type': '1'
|
||||||
}
|
}
|
||||||
|
|
||||||
if (round !== undefined) {
|
if (round !== undefined) {
|
||||||
@@ -885,20 +882,22 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const teChildren: BinaryNode[] = candidates.map(c => ({
|
const teChildren: BinaryNode[] = candidates.map(c => ({
|
||||||
tag: 'te',
|
tag: 'te',
|
||||||
attrs: { priority: c.priority },
|
attrs: { priority: c.priority },
|
||||||
content: c.data,
|
content: c.data
|
||||||
}))
|
}))
|
||||||
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to,
|
to,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'transport',
|
{
|
||||||
attrs: transportAttrs,
|
tag: 'transport',
|
||||||
content: teChildren
|
attrs: transportAttrs,
|
||||||
}]
|
content: teChildren
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -919,25 +918,27 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
callCreator: string,
|
callCreator: string,
|
||||||
peer: string,
|
peer: string,
|
||||||
audioDuration: number,
|
audioDuration: number,
|
||||||
callType: string = '1x1',
|
callType = '1x1'
|
||||||
) => {
|
) => {
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: 'call',
|
to: 'call',
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'duration',
|
{
|
||||||
attrs: {
|
tag: 'duration',
|
||||||
'call-id': callId,
|
attrs: {
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
peer,
|
'call-creator': callCreator,
|
||||||
audio_duration: String(audioDuration),
|
peer,
|
||||||
type: callType,
|
audio_duration: String(audioDuration),
|
||||||
},
|
type: callType
|
||||||
content: undefined
|
},
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -952,27 +953,24 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
* @param to - destination JID
|
* @param to - destination JID
|
||||||
* @param muted - true to mute, false to unmute
|
* @param muted - true to mute, false to unmute
|
||||||
*/
|
*/
|
||||||
const muteCall = async (
|
const muteCall = async (callId: string, callCreator: string, to: string, muted: boolean) => {
|
||||||
callId: string,
|
|
||||||
callCreator: string,
|
|
||||||
to: string,
|
|
||||||
muted: boolean,
|
|
||||||
) => {
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to,
|
to,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'mute_v2',
|
{
|
||||||
attrs: {
|
tag: 'mute_v2',
|
||||||
'mute-state': muted ? '1' : '0',
|
attrs: {
|
||||||
'call-id': callId,
|
'mute-state': muted ? '1' : '0',
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
},
|
'call-creator': callCreator
|
||||||
content: undefined
|
},
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -985,24 +983,23 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
* @param callId - the call-id (also used as JID with @call)
|
* @param callId - the call-id (also used as JID with @call)
|
||||||
* @param callCreator - JID of the call creator
|
* @param callCreator - JID of the call creator
|
||||||
*/
|
*/
|
||||||
const sendHeartbeat = async (
|
const sendHeartbeat = async (callId: string, callCreator: string) => {
|
||||||
callId: string,
|
|
||||||
callCreator: string,
|
|
||||||
) => {
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: `${callId}@call`,
|
to: `${callId}@call`,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'heartbeat',
|
{
|
||||||
attrs: {
|
tag: 'heartbeat',
|
||||||
'call-id': callId,
|
attrs: {
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
},
|
'call-creator': callCreator
|
||||||
content: undefined
|
},
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -1017,30 +1014,27 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
* @param to - destination JID
|
* @param to - destination JID
|
||||||
* @param transactionId - transaction ID for the rekey
|
* @param transactionId - transaction ID for the rekey
|
||||||
*/
|
*/
|
||||||
const sendEncRekey = async (
|
const sendEncRekey = async (callId: string, callCreator: string, to: string, transactionId: string) => {
|
||||||
callId: string,
|
|
||||||
callCreator: string,
|
|
||||||
to: string,
|
|
||||||
transactionId: string,
|
|
||||||
) => {
|
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to,
|
to,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'enc_rekey',
|
{
|
||||||
attrs: {
|
tag: 'enc_rekey',
|
||||||
'transaction-id': transactionId,
|
attrs: {
|
||||||
'call-id': callId,
|
'transaction-id': transactionId,
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
},
|
'call-creator': callCreator
|
||||||
content: [
|
},
|
||||||
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
content: [
|
||||||
{ tag: 'enc', attrs: { v: '2', type: 'msg' }, content: undefined },
|
{ tag: 'encopt', attrs: { keygen: '2' }, content: undefined },
|
||||||
]
|
{ tag: 'enc', attrs: { v: '2', type: 'msg' }, content: undefined }
|
||||||
}]
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -1061,24 +1055,26 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
callCreator: string,
|
callCreator: string,
|
||||||
to: string,
|
to: string,
|
||||||
enabled: boolean,
|
enabled: boolean,
|
||||||
orientation: string = '1',
|
orientation = '1'
|
||||||
) => {
|
) => {
|
||||||
const stanza: BinaryNode = {
|
const stanza: BinaryNode = {
|
||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to,
|
to,
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'video',
|
{
|
||||||
attrs: {
|
tag: 'video',
|
||||||
'call-id': callId,
|
attrs: {
|
||||||
'call-creator': callCreator,
|
'call-id': callId,
|
||||||
state: enabled ? '1' : '0',
|
'call-creator': callCreator,
|
||||||
device_orientation: orientation,
|
state: enabled ? '1' : '0',
|
||||||
},
|
device_orientation: orientation
|
||||||
content: undefined
|
},
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendNode(stanza)
|
await sendNode(stanza)
|
||||||
@@ -1100,15 +1096,17 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: 'call',
|
to: 'call',
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'link_create',
|
{
|
||||||
attrs: { media },
|
tag: 'link_create',
|
||||||
content: event
|
attrs: { media },
|
||||||
? [{ tag: 'event', attrs: { start_time: String(event.startTime) }, content: undefined }]
|
content: event
|
||||||
: undefined
|
? [{ tag: 'event', attrs: { start_time: String(event.startTime) }, content: undefined }]
|
||||||
}]
|
: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
const response = await query(stanza, timeoutMs)
|
const response = await query(stanza, timeoutMs)
|
||||||
@@ -1136,9 +1134,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// URL format verified via Frida capture: https://call.whatsapp.com/<token>
|
// URL format verified via Frida capture: https://call.whatsapp.com/<token>
|
||||||
const url = token
|
const url = token ? `https://call.whatsapp.com/${token}` : undefined
|
||||||
? `https://call.whatsapp.com/${token}`
|
|
||||||
: undefined
|
|
||||||
|
|
||||||
return { token, url, response }
|
return { token, url, response }
|
||||||
}
|
}
|
||||||
@@ -1156,13 +1152,15 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: 'call',
|
to: 'call',
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'link_query',
|
{
|
||||||
attrs: { media, token },
|
tag: 'link_query',
|
||||||
content: undefined
|
attrs: { media, token },
|
||||||
}]
|
content: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
return await query(stanza)
|
return await query(stanza)
|
||||||
@@ -1180,7 +1178,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const joinContent: BinaryNode[] = [
|
const joinContent: BinaryNode[] = [
|
||||||
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined },
|
{ tag: 'audio', attrs: { rate: '16000', enc: 'opus' }, content: undefined },
|
||||||
{ tag: 'net', attrs: { medium: '2' }, content: undefined },
|
{ tag: 'net', attrs: { medium: '2' }, content: undefined },
|
||||||
{ tag: 'capability', attrs: { ver: '1' }, content: undefined },
|
{ tag: 'capability', attrs: { ver: '1' }, content: undefined }
|
||||||
]
|
]
|
||||||
|
|
||||||
if (media === 'video') {
|
if (media === 'video') {
|
||||||
@@ -1190,7 +1188,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
screen_width: '1080',
|
screen_width: '1080',
|
||||||
screen_height: '2400',
|
screen_height: '2400',
|
||||||
dec: 'H264,H265,AV1',
|
dec: 'H264,H265,AV1',
|
||||||
device_orientation: '0',
|
device_orientation: '0'
|
||||||
},
|
},
|
||||||
content: undefined
|
content: undefined
|
||||||
})
|
})
|
||||||
@@ -1200,13 +1198,15 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
tag: 'call',
|
tag: 'call',
|
||||||
attrs: {
|
attrs: {
|
||||||
to: 'call',
|
to: 'call',
|
||||||
id: randomBytes(16).toString('hex').toUpperCase(),
|
id: randomBytes(16).toString('hex').toUpperCase()
|
||||||
},
|
},
|
||||||
content: [{
|
content: [
|
||||||
tag: 'link_join',
|
{
|
||||||
attrs: { media, token },
|
tag: 'link_join',
|
||||||
content: joinContent
|
attrs: { media, token },
|
||||||
}]
|
content: joinContent
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
return await query(stanza)
|
return await query(stanza)
|
||||||
@@ -1223,7 +1223,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
// For group messages, scope by participant (each participant has its own Signal session).
|
// For group messages, scope by participant (each participant has its own Signal session).
|
||||||
const retryDedupeJid = msgKey.participant
|
const retryDedupeJid = msgKey.participant
|
||||||
? jidNormalizedUser(msgKey.participant)
|
? jidNormalizedUser(msgKey.participant)
|
||||||
: jidNormalizedUser(node.attrs.from!)
|
: jidNormalizedUser(node.attrs.from)
|
||||||
if (retryRequestActiveJids.has(retryDedupeJid)) {
|
if (retryRequestActiveJids.has(retryDedupeJid)) {
|
||||||
logger.debug(
|
logger.debug(
|
||||||
{ fromJid: retryDedupeJid, msgId },
|
{ fromJid: retryDedupeJid, msgId },
|
||||||
@@ -1246,7 +1246,9 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
// this cleanup only runs as a last resort.
|
// this cleanup only runs as a last resort.
|
||||||
// For group messages, use participant JID (Signal sessions are per-participant, not per-group).
|
// For group messages, use participant JID (Signal sessions are per-participant, not per-group).
|
||||||
if (autoCleanCorrupted) {
|
if (autoCleanCorrupted) {
|
||||||
const senderJid = msgKey.participant ? jidNormalizedUser(msgKey.participant) : jidNormalizedUser(node.attrs.from!)
|
const senderJid = msgKey.participant
|
||||||
|
? jidNormalizedUser(msgKey.participant)
|
||||||
|
: jidNormalizedUser(node.attrs.from)
|
||||||
try {
|
try {
|
||||||
const decryptionJid = await getDecryptionJid(senderJid, signalRepository)
|
const decryptionJid = await getDecryptionJid(senderJid, signalRepository)
|
||||||
const deletedCount = await cleanupCorruptedSession(decryptionJid, signalRepository, logger)
|
const deletedCount = await cleanupCorruptedSession(decryptionJid, signalRepository, logger)
|
||||||
@@ -1282,7 +1284,9 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
// Safety net cleanup (same as new system above)
|
// Safety net cleanup (same as new system above)
|
||||||
if (autoCleanCorrupted) {
|
if (autoCleanCorrupted) {
|
||||||
const senderJid = msgKey.participant ? jidNormalizedUser(msgKey.participant) : jidNormalizedUser(node.attrs.from!)
|
const senderJid = msgKey.participant
|
||||||
|
? jidNormalizedUser(msgKey.participant)
|
||||||
|
: jidNormalizedUser(node.attrs.from)
|
||||||
try {
|
try {
|
||||||
const decryptionJid = await getDecryptionJid(senderJid, signalRepository)
|
const decryptionJid = await getDecryptionJid(senderJid, signalRepository)
|
||||||
await cleanupCorruptedSession(decryptionJid, signalRepository, logger)
|
await cleanupCorruptedSession(decryptionJid, signalRepository, logger)
|
||||||
@@ -1464,13 +1468,13 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const senderTs = unixTimestampSeconds()
|
const senderTs = unixTimestampSeconds()
|
||||||
logTcToken('reissue', { jid: normalizedJid, reason: 'session_refreshed' })
|
logTcToken('reissue', { jid: normalizedJid, reason: 'session_refreshed' })
|
||||||
getPrivacyTokens([normalizedJid], senderTs)
|
getPrivacyTokens([normalizedJid], senderTs)
|
||||||
.then(async (iqResult) => {
|
.then(async iqResult => {
|
||||||
await storeTcTokensFromIqResult({
|
await storeTcTokensFromIqResult({
|
||||||
result: iqResult,
|
result: iqResult,
|
||||||
fallbackJid: normalizedJid,
|
fallbackJid: normalizedJid,
|
||||||
keys: authState.keys,
|
keys: authState.keys,
|
||||||
getLIDForPN,
|
getLIDForPN,
|
||||||
onNewJidStored: (storedJid) => {
|
onNewJidStored: storedJid => {
|
||||||
tcTokenKnownJids.add(storedJid)
|
tcTokenKnownJids.add(storedJid)
|
||||||
scheduleTcTokenIndexSave()
|
scheduleTcTokenIndexSave()
|
||||||
}
|
}
|
||||||
@@ -1516,16 +1520,20 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const affectedParticipantPn = getBinaryNodeChild(child, 'participant')?.attrs?.phone_number || actingParticipantPn!
|
const affectedParticipantPn = getBinaryNodeChild(child, 'participant')?.attrs?.phone_number || actingParticipantPn!
|
||||||
|
|
||||||
// Resolve acting participant to PN — prefer inline PN, fall back to LID→PN resolution
|
// Resolve acting participant to PN — prefer inline PN, fall back to LID→PN resolution
|
||||||
const actingParticipant = actingParticipantPn
|
const actingParticipant = actingParticipantPn || (await resolveLidToPn(actingParticipantLid, lidMapping, logger))
|
||||||
|| await resolveLidToPn(actingParticipantLid, lidMapping, logger)
|
|
||||||
|
|
||||||
// Resolve affected participant to PN
|
// Resolve affected participant to PN
|
||||||
const affectedParticipant = affectedParticipantPn
|
const affectedParticipant =
|
||||||
|| await resolveLidToPn(affectedParticipantLid, lidMapping, logger)
|
affectedParticipantPn || (await resolveLidToPn(affectedParticipantLid, lidMapping, logger))
|
||||||
|
|
||||||
// Store LID↔PN mappings from notification attributes
|
// Store LID↔PN mappings from notification attributes
|
||||||
const mappingsToStore: Array<{ lid: string; pn: string }> = []
|
const mappingsToStore: Array<{ lid: string; pn: string }> = []
|
||||||
if (actingParticipantLid && actingParticipantPn && isLidUser(actingParticipantLid) && isPnUser(actingParticipantPn)) {
|
if (
|
||||||
|
actingParticipantLid &&
|
||||||
|
actingParticipantPn &&
|
||||||
|
isLidUser(actingParticipantLid) &&
|
||||||
|
isPnUser(actingParticipantPn)
|
||||||
|
) {
|
||||||
mappingsToStore.push({ lid: actingParticipantLid, pn: actingParticipantPn })
|
mappingsToStore.push({ lid: actingParticipantLid, pn: actingParticipantPn })
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1554,7 +1562,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
// Resolve metadata owner to PN
|
// Resolve metadata owner to PN
|
||||||
if (metadata.owner && isLidUser(metadata.owner)) {
|
if (metadata.owner && isLidUser(metadata.owner)) {
|
||||||
const resolvedOwner = metadata.ownerPn || await resolveLidToPn(metadata.owner, lidMapping, logger)
|
const resolvedOwner = metadata.ownerPn || (await resolveLidToPn(metadata.owner, lidMapping, logger))
|
||||||
if (resolvedOwner) metadata.owner = resolvedOwner
|
if (resolvedOwner) metadata.owner = resolvedOwner
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1588,7 +1596,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
case 'modify':
|
case 'modify':
|
||||||
const oldNumbers = await Promise.all(
|
const oldNumbers = await Promise.all(
|
||||||
getBinaryNodeChildren(child, 'participant').map(async p => {
|
getBinaryNodeChildren(child, 'participant').map(async p => {
|
||||||
const resolved = await resolveLidToPn(p.attrs.jid!, lidMapping, logger)
|
const resolved = await resolveLidToPn(p.attrs.jid, lidMapping, logger)
|
||||||
return resolved || p.attrs.jid!
|
return resolved || p.attrs.jid!
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
@@ -1770,7 +1778,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
|
|
||||||
{
|
{
|
||||||
const rawPictureJid = jidNormalizedUser(node?.attrs?.from) || (setPicture || delPicture)?.attrs?.hash || ''
|
const rawPictureJid = jidNormalizedUser(node?.attrs?.from) || (setPicture || delPicture)?.attrs?.hash || ''
|
||||||
const pictureJid = await resolveLidToPn(rawPictureJid, signalRepository.lidMapping, logger) || rawPictureJid
|
const pictureJid = (await resolveLidToPn(rawPictureJid, signalRepository.lidMapping, logger)) || rawPictureJid
|
||||||
ev.emit('contacts.update', [
|
ev.emit('contacts.update', [
|
||||||
{
|
{
|
||||||
id: pictureJid,
|
id: pictureJid,
|
||||||
@@ -1815,7 +1823,8 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const blocklists = getBinaryNodeChildren(child, 'item')
|
const blocklists = getBinaryNodeChildren(child, 'item')
|
||||||
|
|
||||||
for (const { attrs } of blocklists) {
|
for (const { attrs } of blocklists) {
|
||||||
const resolvedBlockJid = await resolveLidToPn(attrs.jid!, signalRepository.lidMapping, logger) || attrs.jid!
|
const resolvedBlockJid =
|
||||||
|
(await resolveLidToPn(attrs.jid, signalRepository.lidMapping, logger)) || attrs.jid!
|
||||||
const blocklist = [resolvedBlockJid]
|
const blocklist = [resolvedBlockJid]
|
||||||
const type = attrs.action === 'block' ? 'add' : 'remove'
|
const type = attrs.action === 'block' ? 'add' : 'remove'
|
||||||
ev.emit('blocklist.update', { blocklist, type })
|
ev.emit('blocklist.update', { blocklist, type })
|
||||||
@@ -2146,7 +2155,8 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
if (attrs.participant) {
|
if (attrs.participant) {
|
||||||
const updateKey: keyof MessageUserReceipt =
|
const updateKey: keyof MessageUserReceipt =
|
||||||
status === proto.WebMessageInfo.Status.DELIVERY_ACK ? 'receiptTimestamp' : 'readTimestamp'
|
status === proto.WebMessageInfo.Status.DELIVERY_ACK ? 'receiptTimestamp' : 'readTimestamp'
|
||||||
const resolvedReceiptUserJid = await resolveLidToPn(attrs.participant, lidMapping, logger) || jidNormalizedUser(attrs.participant)
|
const resolvedReceiptUserJid =
|
||||||
|
(await resolveLidToPn(attrs.participant, lidMapping, logger)) || jidNormalizedUser(attrs.participant)
|
||||||
ev.emit(
|
ev.emit(
|
||||||
'message-receipt.update',
|
'message-receipt.update',
|
||||||
ids.map(id => ({
|
ids.map(id => ({
|
||||||
@@ -2259,13 +2269,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
category,
|
category,
|
||||||
author,
|
author,
|
||||||
decrypt
|
decrypt
|
||||||
} = decryptMessageNode(
|
} = decryptMessageNode(node, authState.creds.me!.id, authState.creds.me!.lid || '', signalRepository, logger)
|
||||||
node,
|
|
||||||
authState.creds.me!.id,
|
|
||||||
authState.creds.me!.lid || '',
|
|
||||||
signalRepository,
|
|
||||||
logger,
|
|
||||||
)
|
|
||||||
|
|
||||||
const alt = msg.key.participantAlt || msg.key.remoteJidAlt
|
const alt = msg.key.participantAlt || msg.key.remoteJidAlt
|
||||||
// Handle LID/PN mappings with hybrid approach:
|
// Handle LID/PN mappings with hybrid approach:
|
||||||
@@ -2680,7 +2684,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
jid: u.attrs.jid,
|
jid: u.attrs.jid,
|
||||||
state: u.attrs.state,
|
state: u.attrs.state,
|
||||||
userPn: u.attrs.user_pn,
|
userPn: u.attrs.user_pn,
|
||||||
type: u.attrs.type,
|
type: u.attrs.type
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2768,9 +2772,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
const callSummary = getBinaryNodeChild(infoChild, 'call_summary')
|
const callSummary = getBinaryNodeChild(infoChild, 'call_summary')
|
||||||
if (callSummary) {
|
if (callSummary) {
|
||||||
call.media = callSummary.attrs.media
|
call.media = callSummary.attrs.media
|
||||||
call.duration = callSummary.attrs.call_duration
|
call.duration = callSummary.attrs.call_duration ? Number(callSummary.attrs.call_duration) : undefined
|
||||||
? Number(callSummary.attrs.call_duration)
|
|
||||||
: undefined
|
|
||||||
call.participants = extractParticipants(callSummary)
|
call.participants = extractParticipants(callSummary)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2814,12 +2816,14 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
if (resolvedLinkCreator) call.linkCreator = resolvedLinkCreator
|
if (resolvedLinkCreator) call.linkCreator = resolvedLinkCreator
|
||||||
// Resolve participant JIDs in parallel
|
// Resolve participant JIDs in parallel
|
||||||
if (call.participants) {
|
if (call.participants) {
|
||||||
await Promise.all(call.participants.map(async (p) => {
|
await Promise.all(
|
||||||
if (p.jid) {
|
call.participants.map(async p => {
|
||||||
const resolved = p.userPn || await resolveLidToPn(p.jid, callLidMapping, logger)
|
if (p.jid) {
|
||||||
if (resolved) p.jid = resolved
|
const resolved = p.userPn || (await resolveLidToPn(p.jid, callLidMapping, logger))
|
||||||
}
|
if (resolved) p.jid = resolved
|
||||||
}))
|
}
|
||||||
|
})
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
ev.emit('call', [call])
|
ev.emit('call', [call])
|
||||||
@@ -2857,20 +2861,22 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
// WABA Android: error 463 triggers getPrivacyTokens() fire-and-forget
|
// WABA Android: error 463 triggers getPrivacyTokens() fire-and-forget
|
||||||
// to ensure token is available for the retry below
|
// to ensure token is available for the retry below
|
||||||
getPrivacyTokens([jid])
|
getPrivacyTokens([jid])
|
||||||
.then(async (result) => {
|
.then(async result => {
|
||||||
await storeTcTokensFromIqResult({
|
await storeTcTokensFromIqResult({
|
||||||
result,
|
result,
|
||||||
fallbackJid: jid,
|
fallbackJid: jid,
|
||||||
keys: authState.keys,
|
keys: authState.keys,
|
||||||
getLIDForPN,
|
getLIDForPN,
|
||||||
onNewJidStored: (storedJid) => {
|
onNewJidStored: storedJid => {
|
||||||
tcTokenKnownJids.add(storedJid)
|
tcTokenKnownJids.add(storedJid)
|
||||||
scheduleTcTokenIndexSave()
|
scheduleTcTokenIndexSave()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
logTcToken('fetched', { jid, reason: 'error_463' })
|
logTcToken('fetched', { jid, reason: 'error_463' })
|
||||||
})
|
})
|
||||||
.catch(() => { /* fire-and-forget */ })
|
.catch(() => {
|
||||||
|
/* fire-and-forget */
|
||||||
|
})
|
||||||
|
|
||||||
// Single-retry: wait 1.5s for the server's tctoken notification to arrive,
|
// Single-retry: wait 1.5s for the server's tctoken notification to arrive,
|
||||||
// then resend. A Set prevents infinite retry loops.
|
// then resend. A Set prevents infinite retry loops.
|
||||||
@@ -2911,20 +2917,22 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
logTcToken('error_479', { jid: jid479, msgId: attrs.id })
|
logTcToken('error_479', { jid: jid479, msgId: attrs.id })
|
||||||
// WABA Android: error 479 (SmaxInvalid) also triggers token re-fetch
|
// WABA Android: error 479 (SmaxInvalid) also triggers token re-fetch
|
||||||
getPrivacyTokens([jid479])
|
getPrivacyTokens([jid479])
|
||||||
.then(async (result) => {
|
.then(async result => {
|
||||||
await storeTcTokensFromIqResult({
|
await storeTcTokensFromIqResult({
|
||||||
result,
|
result,
|
||||||
fallbackJid: jid479,
|
fallbackJid: jid479,
|
||||||
keys: authState.keys,
|
keys: authState.keys,
|
||||||
getLIDForPN,
|
getLIDForPN,
|
||||||
onNewJidStored: (storedJid) => {
|
onNewJidStored: storedJid => {
|
||||||
tcTokenKnownJids.add(storedJid)
|
tcTokenKnownJids.add(storedJid)
|
||||||
scheduleTcTokenIndexSave()
|
scheduleTcTokenIndexSave()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
logTcToken('fetched', { jid: jid479, reason: 'error_479' })
|
logTcToken('fetched', { jid: jid479, reason: 'error_479' })
|
||||||
})
|
})
|
||||||
.catch(() => { /* fire-and-forget */ })
|
.catch(() => {
|
||||||
|
/* fire-and-forget */
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
logger.warn({ attrs }, 'received error in ack')
|
logger.warn({ attrs }, 'received error in ack')
|
||||||
}
|
}
|
||||||
@@ -3058,24 +3066,20 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
|
|||||||
// (call link relays may arrive without these attrs — just log them)
|
// (call link relays may arrive without these attrs — just log them)
|
||||||
if (callId && rawCallCreator) {
|
if (callId && rawCallCreator) {
|
||||||
// Resolve LID→PN for call creator
|
// Resolve LID→PN for call creator
|
||||||
const callCreator = await resolveLidToPn(rawCallCreator, signalRepository.lidMapping, logger) || rawCallCreator
|
const callCreator = (await resolveLidToPn(rawCallCreator, signalRepository.lidMapping, logger)) || rawCallCreator
|
||||||
logger.debug(
|
logger.debug({ callId, callCreator, uuid: node.attrs.uuid }, 'received relay info')
|
||||||
{ callId, callCreator, uuid: node.attrs.uuid },
|
ev.emit('call', [
|
||||||
'received relay info'
|
{
|
||||||
)
|
chatId: callCreator,
|
||||||
ev.emit('call', [{
|
from: callCreator,
|
||||||
chatId: callCreator,
|
id: callId,
|
||||||
from: callCreator,
|
date: new Date(),
|
||||||
id: callId,
|
offline: false,
|
||||||
date: new Date(),
|
status: 'relay' as WACallUpdateType
|
||||||
offline: false,
|
}
|
||||||
status: 'relay' as WACallUpdateType,
|
])
|
||||||
}])
|
|
||||||
} else {
|
} else {
|
||||||
logger.debug(
|
logger.debug({ attrs: node.attrs }, 'received relay stanza without call-id/call-creator')
|
||||||
{ attrs: node.attrs },
|
|
||||||
'received relay stanza without call-id/call-creator'
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
+1033
-138
File diff suppressed because it is too large
Load Diff
+13
-8
@@ -1361,13 +1361,16 @@ export const makeSocket = (config: SocketConfig) => {
|
|||||||
const pairPlatformId = isAndroid ? getPlatformId('Chrome') : getPlatformId(browser[1])
|
const pairPlatformId = isAndroid ? getPlatformId('Chrome') : getPlatformId(browser[1])
|
||||||
const pairPlatformDisplay = isAndroid ? 'Chrome (Mac OS)' : `${browser[1]} (${browser[0]})`
|
const pairPlatformDisplay = isAndroid ? 'Chrome (Mac OS)' : `${browser[1]} (${browser[0]})`
|
||||||
|
|
||||||
logger.info({
|
logger.info(
|
||||||
pairCode: pairingCode,
|
{
|
||||||
jid: authState.creds.me.id,
|
pairCode: pairingCode,
|
||||||
companionPlatformId: pairPlatformId,
|
jid: authState.creds.me.id,
|
||||||
companionPlatformDisplay: pairPlatformDisplay,
|
companionPlatformId: pairPlatformId,
|
||||||
isAndroid,
|
companionPlatformDisplay: pairPlatformDisplay,
|
||||||
}, `pair code requested | companion: ${pairPlatformDisplay} | ${isAndroid ? 'android override -> Chrome' : 'native platform'}`)
|
isAndroid
|
||||||
|
},
|
||||||
|
`pair code requested | companion: ${pairPlatformDisplay} | ${isAndroid ? 'android override -> Chrome' : 'native platform'}`
|
||||||
|
)
|
||||||
|
|
||||||
ev.emit('creds.update', authState.creds)
|
ev.emit('creds.update', authState.creds)
|
||||||
await sendNode({
|
await sendNode({
|
||||||
@@ -1538,7 +1541,9 @@ export const makeSocket = (config: SocketConfig) => {
|
|||||||
ws.on('CB:success', async (node: BinaryNode) => {
|
ws.on('CB:success', async (node: BinaryNode) => {
|
||||||
const isAndroid = isAndroidBrowser(browser)
|
const isAndroid = isAndroidBrowser(browser)
|
||||||
const phoneId = authState.creds.me?.id?.split(':')[0]?.split('@')[0] || 'new session'
|
const phoneId = authState.creds.me?.id?.split(':')[0]?.split('@')[0] || 'new session'
|
||||||
logger.info(`${isAndroid ? '\uD83D\uDCF1' : '\uD83D\uDDA5\uFE0F'} Connected to WA | ${phoneId} | platform: ${isAndroid ? 'SMB_ANDROID' : 'MACOS'} | device: ${isAndroid ? 'Android' : 'Desktop'} | platformType: ${isAndroid ? 'ANDROID_PHONE' : 'CHROME'}`)
|
logger.info(
|
||||||
|
`${isAndroid ? '\uD83D\uDCF1' : '\uD83D\uDDA5\uFE0F'} Connected to WA | ${phoneId} | platform: ${isAndroid ? 'SMB_ANDROID' : 'MACOS'} | device: ${isAndroid ? 'Android' : 'Desktop'} | platformType: ${isAndroid ? 'ANDROID_PHONE' : 'CHROME'}`
|
||||||
|
)
|
||||||
clearTimeout(qrTimer) // will never happen in all likelyhood -- but just in case WA sends success on first try
|
clearTimeout(qrTimer) // will never happen in all likelyhood -- but just in case WA sends success on first try
|
||||||
|
|
||||||
ev.emit('creds.update', { me: { ...authState.creds.me!, lid: node.attrs.lid } })
|
ev.emit('creds.update', { me: { ...authState.creds.me!, lid: node.attrs.lid } })
|
||||||
|
|||||||
@@ -716,7 +716,7 @@ export function createConnectionCircuitBreaker(customOptions?: Partial<CircuitBr
|
|||||||
const WS_LIFECYCLE_STATUS_CODES = new Set([
|
const WS_LIFECYCLE_STATUS_CODES = new Set([
|
||||||
428, // connectionClosed
|
428, // connectionClosed
|
||||||
408, // connectionLost / timedOut
|
408, // connectionLost / timedOut
|
||||||
440, // connectionReplaced
|
440 // connectionReplaced
|
||||||
])
|
])
|
||||||
|
|
||||||
return new CircuitBreaker({
|
return new CircuitBreaker({
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
isJidNewsletter,
|
isJidNewsletter,
|
||||||
isJidStatusBroadcast,
|
isJidStatusBroadcast,
|
||||||
isLidUser,
|
isLidUser,
|
||||||
isPnUser,
|
isPnUser
|
||||||
// transferDevice
|
// transferDevice
|
||||||
} from '../WABinary'
|
} from '../WABinary'
|
||||||
import { unpadRandomMax16 } from './generics'
|
import { unpadRandomMax16 } from './generics'
|
||||||
@@ -274,7 +274,7 @@ export const decryptMessageNode = (
|
|||||||
meId: string,
|
meId: string,
|
||||||
meLid: string,
|
meLid: string,
|
||||||
repository: SignalRepositoryWithLIDStore,
|
repository: SignalRepositoryWithLIDStore,
|
||||||
logger: ILogger,
|
logger: ILogger
|
||||||
) => {
|
) => {
|
||||||
const { fullMessage, author, sender } = decodeMessageNode(stanza, meId, meLid)
|
const { fullMessage, author, sender } = decodeMessageNode(stanza, meId, meLid)
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -246,6 +246,7 @@ export const fetchLatestBaileysVersion = async (options: RequestInit & { timeout
|
|||||||
} finally {
|
} finally {
|
||||||
clearTimeout(timeout)
|
clearTimeout(timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Boom(`Failed to fetch latest Baileys version: ${response.statusText}`, { statusCode: response.status })
|
throw new Boom(`Failed to fetch latest Baileys version: ${response.statusText}`, { statusCode: response.status })
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ export const extractImageThumb = async (bufferOrFilePath: Readable | Buffer | st
|
|||||||
height: dimensions.height
|
height: dimensions.height
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if ('jimp' in lib && (typeof lib.jimp?.Jimp === 'object' || typeof lib.jimp?.Jimp === 'function')) {
|
} else if ('jimp' in lib && typeof lib.jimp?.Jimp === 'function') {
|
||||||
const jimp = await (lib.jimp.Jimp as any).read(bufferOrFilePath)
|
const jimp = await (lib.jimp.Jimp as any).read(bufferOrFilePath)
|
||||||
const dimensions = {
|
const dimensions = {
|
||||||
width: jimp.width,
|
width: jimp.width,
|
||||||
|
|||||||
+56
-48
@@ -41,10 +41,12 @@ import type { ILogger } from './logger'
|
|||||||
import {
|
import {
|
||||||
downloadContentFromMessage,
|
downloadContentFromMessage,
|
||||||
encryptedStream,
|
encryptedStream,
|
||||||
|
extractImageThumb,
|
||||||
generateThumbnail,
|
generateThumbnail,
|
||||||
getAudioDuration,
|
getAudioDuration,
|
||||||
getAudioWaveform,
|
getAudioWaveform,
|
||||||
getRawMediaUploadData,
|
getRawMediaUploadData,
|
||||||
|
getStream,
|
||||||
type MediaDownloadOptions
|
type MediaDownloadOptions
|
||||||
} from './messages-media'
|
} from './messages-media'
|
||||||
import { shouldIncludeReportingToken } from './reporting-utils'
|
import { shouldIncludeReportingToken } from './reporting-utils'
|
||||||
@@ -648,6 +650,49 @@ export const generateCarouselMessage = async (
|
|||||||
if (hasMedia && mediaOptions) {
|
if (hasMedia && mediaOptions) {
|
||||||
if (card.image) {
|
if (card.image) {
|
||||||
const { imageMessage } = await prepareWAMessageMedia({ image: card.image }, mediaOptions)
|
const { imageMessage } = await prepareWAMessageMedia({ image: card.image }, mediaOptions)
|
||||||
|
|
||||||
|
// Mirror the working Pastorini-style result: every carousel image card should
|
||||||
|
// carry a jpegThumbnail and dimensions before it reaches the Web live renderer.
|
||||||
|
if (imageMessage && (!imageMessage.jpegThumbnail || !imageMessage.height || !imageMessage.width)) {
|
||||||
|
try {
|
||||||
|
const { stream } = await getStream(card.image, mediaOptions.options)
|
||||||
|
const { buffer, original } = await extractImageThumb(stream)
|
||||||
|
|
||||||
|
// eslint-disable-next-line max-depth
|
||||||
|
if (!imageMessage.jpegThumbnail) {
|
||||||
|
imageMessage.jpegThumbnail = buffer.toString('base64')
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line max-depth
|
||||||
|
if (!imageMessage.width && original.width) {
|
||||||
|
imageMessage.width = original.width
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line max-depth
|
||||||
|
if (!imageMessage.height && original.height) {
|
||||||
|
imageMessage.height = original.height
|
||||||
|
}
|
||||||
|
|
||||||
|
mediaOptions.logger?.info(
|
||||||
|
{
|
||||||
|
cardTitle: card.title,
|
||||||
|
recoveredThumbnail: !!imageMessage.jpegThumbnail,
|
||||||
|
width: imageMessage.width,
|
||||||
|
height: imageMessage.height
|
||||||
|
},
|
||||||
|
'[CAROUSEL] Recovered image metadata from source media'
|
||||||
|
)
|
||||||
|
} catch (error) {
|
||||||
|
mediaOptions.logger?.warn(
|
||||||
|
{
|
||||||
|
cardTitle: card.title,
|
||||||
|
trace: error instanceof Error ? error.stack : String(error)
|
||||||
|
},
|
||||||
|
'[CAROUSEL] Failed source-media thumbnail fallback'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Validate image fields needed for WhatsApp rendering
|
// Validate image fields needed for WhatsApp rendering
|
||||||
if (imageMessage && !imageMessage.jpegThumbnail) {
|
if (imageMessage && !imageMessage.jpegThumbnail) {
|
||||||
mediaOptions.logger?.warn(
|
mediaOptions.logger?.warn(
|
||||||
@@ -1228,57 +1273,20 @@ export const generateWAMessageContent = async (
|
|||||||
options.logger?.info('Sending CTA buttons as nativeFlowMessage with viewOnceMessage wrapper')
|
options.logger?.info('Sending CTA buttons as nativeFlowMessage with viewOnceMessage wrapper')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Check for nativeCarousel — inline handler (validated on Android, iOS, Web)
|
// Check for nativeCarousel
|
||||||
// Direct interactiveMessage at root (field 45), NO viewOnceMessage wrapper,
|
|
||||||
// NO messageContextInfo, NO biz/bot stanza nodes needed
|
|
||||||
else if (hasNonNullishProperty(message, 'nativeCarousel')) {
|
else if (hasNonNullishProperty(message, 'nativeCarousel')) {
|
||||||
const carouselMsg = message as any
|
const carouselMsg = message as any
|
||||||
const cards = carouselMsg.nativeCarousel.cards || []
|
const carouselOptions: CarouselMessageOptions = {
|
||||||
const title = carouselMsg.nativeCarousel.title || carouselMsg.title
|
cards: carouselMsg.nativeCarousel.cards,
|
||||||
const text = carouselMsg.text
|
title: carouselMsg.nativeCarousel.title || carouselMsg.title,
|
||||||
const footer = carouselMsg.footer
|
text: carouselMsg.text,
|
||||||
|
footer: carouselMsg.footer
|
||||||
const carouselCards = await Promise.all(
|
|
||||||
cards.map(async (card: any) => {
|
|
||||||
const hasMedia = !!(card.image || card.video)
|
|
||||||
const header: any = {
|
|
||||||
title: card.title || '',
|
|
||||||
subtitle: card.footer || '',
|
|
||||||
hasMediaAttachment: hasMedia
|
|
||||||
}
|
|
||||||
if (hasMedia && card.image) {
|
|
||||||
const { imageMessage } = await prepareWAMessageMedia({ image: card.image }, options)
|
|
||||||
if (imageMessage && !imageMessage.height) imageMessage.height = 500
|
|
||||||
if (imageMessage && !imageMessage.width) imageMessage.width = 500
|
|
||||||
header.imageMessage = imageMessage
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
header,
|
|
||||||
body: { text: card.body || '' },
|
|
||||||
footer: card.footer ? { text: card.footer } : undefined,
|
|
||||||
nativeFlowMessage: {
|
|
||||||
buttons: (card.buttons || []).map((btn: any) => {
|
|
||||||
switch (btn.type) {
|
|
||||||
case 'url': return { name: 'cta_url', buttonParamsJson: JSON.stringify({ display_text: btn.text, url: btn.url, merchant_url: btn.url }) }
|
|
||||||
case 'copy': return { name: 'cta_copy', buttonParamsJson: JSON.stringify({ display_text: btn.text, copy_code: btn.copyText }) }
|
|
||||||
case 'call': return { name: 'cta_call', buttonParamsJson: JSON.stringify({ display_text: btn.text, phone_number: btn.phoneNumber }) }
|
|
||||||
default: return { name: 'quick_reply', buttonParamsJson: JSON.stringify({ display_text: btn.text, id: btn.id }) }
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
m.interactiveMessage = {
|
|
||||||
header: { title: title || ' ', hasMediaAttachment: false },
|
|
||||||
body: { text: text || '' },
|
|
||||||
footer: footer ? { text: footer } : undefined,
|
|
||||||
carouselMessage: {
|
|
||||||
cards: carouselCards,
|
|
||||||
messageVersion: 1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
// Pass options for media processing if cards have images/videos
|
||||||
|
const generated = await generateCarouselMessage(carouselOptions, options)
|
||||||
|
// Frida capture shows interactiveMessage DIRECT (field 45) in DSM — no viewOnceMessage wrapper
|
||||||
|
// Testing without wrapper: biz node + quality_control already match Pastorini CDP stanza
|
||||||
|
m.interactiveMessage = generated.interactiveMessage
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
// Check for nativeList
|
// Check for nativeList
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||||
import Long from 'long'
|
import Long from 'long'
|
||||||
import { proto } from '../../WAProto/index.js'
|
import { proto } from '../../WAProto/index.js'
|
||||||
|
import type { LIDMappingStore } from '../Signal/lid-mapping'
|
||||||
import type {
|
import type {
|
||||||
AuthenticationCreds,
|
AuthenticationCreds,
|
||||||
BaileysEventEmitter,
|
BaileysEventEmitter,
|
||||||
@@ -19,7 +20,6 @@ import type {
|
|||||||
WAMessage,
|
WAMessage,
|
||||||
WAMessageKey
|
WAMessageKey
|
||||||
} from '../Types'
|
} from '../Types'
|
||||||
import type { LIDMappingStore } from '../Signal/lid-mapping'
|
|
||||||
import { WAMessageStubType } from '../Types'
|
import { WAMessageStubType } from '../Types'
|
||||||
import { getContentType, normalizeMessageContent } from '../Utils/messages'
|
import { getContentType, normalizeMessageContent } from '../Utils/messages'
|
||||||
import {
|
import {
|
||||||
@@ -784,7 +784,8 @@ const processMessage = async (
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const participantsIncludesMe = () => participants.find(p => areJidsSameUser(meId, p.id) || areJidsSameUser(meId, p.phoneNumber))
|
const participantsIncludesMe = () =>
|
||||||
|
participants.find(p => areJidsSameUser(meId, p.id) || areJidsSameUser(meId, p.phoneNumber))
|
||||||
|
|
||||||
switch (message.messageStubType) {
|
switch (message.messageStubType) {
|
||||||
case WAMessageStubType.GROUP_PARTICIPANT_CHANGE_NUMBER:
|
case WAMessageStubType.GROUP_PARTICIPANT_CHANGE_NUMBER:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Boom } from '@hapi/boom'
|
|||||||
import { createHash } from 'crypto'
|
import { createHash } from 'crypto'
|
||||||
import { zipSync } from 'fflate'
|
import { zipSync } from 'fflate'
|
||||||
import { promises as fs } from 'fs'
|
import { promises as fs } from 'fs'
|
||||||
import { gzipSync, gunzipSync } from 'zlib'
|
import { gunzipSync, gzipSync } from 'zlib'
|
||||||
import { proto } from '../../WAProto/index.js'
|
import { proto } from '../../WAProto/index.js'
|
||||||
import type { MediaType } from '../Defaults/index.js'
|
import type { MediaType } from '../Defaults/index.js'
|
||||||
import type { StickerPack, WAMediaUpload, WAMediaUploadFunction } from '../Types/Message.js'
|
import type { StickerPack, WAMediaUpload, WAMediaUploadFunction } from '../Types/Message.js'
|
||||||
@@ -728,10 +728,9 @@ export const prepareStickerPackMessage = async (
|
|||||||
// Tray icon uses PNG format, 96x96 pixels (official client standard)
|
// Tray icon uses PNG format, 96x96 pixels (official client standard)
|
||||||
const lib = await getImageProcessingLibrary()
|
const lib = await getImageProcessingLibrary()
|
||||||
if (!lib?.sharp) {
|
if (!lib?.sharp) {
|
||||||
throw new Boom(
|
throw new Boom('Sharp library is required for cover/tray icon processing. Install with: yarn add sharp', {
|
||||||
'Sharp library is required for cover/tray icon processing. Install with: yarn add sharp',
|
statusCode: 400
|
||||||
{ statusCode: 400 }
|
})
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
coverWebP = await lib.sharp
|
coverWebP = await lib.sharp
|
||||||
|
|||||||
@@ -158,11 +158,13 @@ export async function storeTcTokensFromIqResult({
|
|||||||
...existingEntry,
|
...existingEntry,
|
||||||
token: Buffer.from(tokenNode.content),
|
token: Buffer.from(tokenNode.content),
|
||||||
timestamp: tokenNode.attrs.t,
|
timestamp: tokenNode.attrs.t,
|
||||||
// Resets real_issue_timestamp to null when storing a new token
|
// WABA Android: resets real_issue_timestamp to null when storing a new token
|
||||||
|
// (UPDATE wa_trusted_contacts_send SET real_issue_timestamp=null)
|
||||||
realIssueTimestamp: null
|
realIssueTimestamp: null
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store under resolved storageJid AND under fallbackJid (PN) for reliable lookup
|
// Store under resolved storageJid AND under fallbackJid (PN) for reliable lookup
|
||||||
|
// The read path may resolve to a different LID than the store path
|
||||||
const normalizedFallback = jidNormalizedUser(fallbackJid)
|
const normalizedFallback = jidNormalizedUser(fallbackJid)
|
||||||
const keysToStore: Record<string, typeof tokenEntry | null> = {
|
const keysToStore: Record<string, typeof tokenEntry | null> = {
|
||||||
[storageJid]: tokenEntry
|
[storageJid]: tokenEntry
|
||||||
|
|||||||
Reference in New Issue
Block a user