Skip to content

Commit 306e1c1

Browse files
purpshelljaviercr
andauthored
WEB WAM IMPLEMENTATION!!!!! (#708)
* feat(WAM): initial commit * fix(wam-development): I made a whoopsie * Update Example/example.ts Co-authored-by: Javier Cuevas <[email protected]> --------- Co-authored-by: Javier Cuevas <[email protected]>
1 parent e52570b commit 306e1c1

File tree

8 files changed

+16546
-1
lines changed

8 files changed

+16546
-1
lines changed

Example/boot_analytics_test.json

+924
Large diffs are not rendered by default.

Example/example.ts

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Boom } from '@hapi/boom'
22
import NodeCache from 'node-cache'
33
import readline from 'readline'
4-
import makeWASocket, { AnyMessageContent, delay, DisconnectReason, fetchLatestBaileysVersion, getAggregateVotesInPollMessage, makeCacheableSignalKeyStore, makeInMemoryStore, PHONENUMBER_MCC, proto, useMultiFileAuthState, WAMessageContent, WAMessageKey } from '../src'
4+
import makeWASocket, { AnyMessageContent, BinaryInfo, delay, DisconnectReason, encodeWAM, fetchLatestBaileysVersion, getAggregateVotesInPollMessage, makeCacheableSignalKeyStore, makeInMemoryStore, PHONENUMBER_MCC, proto, useMultiFileAuthState, WAMessageContent, WAMessageKey } from '../src'
55
import MAIN_LOGGER from '../src/Utils/logger'
66
import open from 'open'
77
import fs from 'fs'
@@ -176,6 +176,36 @@ const startSock = async() => {
176176
console.log('Connection closed. You are logged out.')
177177
}
178178
}
179+
180+
// WARNING: THIS WILL SEND A WAM EXAMPLE AND THIS IS A ****CAPTURED MESSAGE.****
181+
// DO NOT ACTUALLY ENABLE THIS UNLESS YOU MODIFIED THE FILE.JSON!!!!!
182+
// THE ANALYTICS IN THE FILE ARE OLD. DO NOT USE THEM.
183+
// YOUR APP SHOULD HAVE GLOBALS AND ANALYTICS ACCURATE TO TIME, DATE AND THE SESSION
184+
// THIS FILE.JSON APPROACH IS JUST AN APPROACH I USED, BE FREE TO DO THIS IN ANOTHER WAY.
185+
// THE FIRST EVENT CONTAINS THE CONSTANT GLOBALS, EXCEPT THE seqenceNumber(in the event) and commitTime
186+
// THIS INCLUDES STUFF LIKE ocVersion WHICH IS CRUCIAL FOR THE PREVENTION OF THE WARNING
187+
const sendWAMExample = false;
188+
if(connection === 'open' && sendWAMExample) {
189+
/// sending WAM EXAMPLE
190+
const {
191+
header: {
192+
wamVersion,
193+
eventSequenceNumber,
194+
},
195+
events,
196+
} = JSON.parse(await fs.promises.readFile("./boot_analytics_test.json", "utf-8"))
197+
198+
const binaryInfo = new BinaryInfo({
199+
protocolVersion: wamVersion,
200+
sequence: eventSequenceNumber,
201+
events: events
202+
})
203+
204+
const buffer = encodeWAM(binaryInfo);
205+
206+
const result = await sock.sendWAMBuffer(buffer)
207+
console.log(result)
208+
}
179209

180210
console.log('connection update', update)
181211
}

src/Socket/socket.ts

+19
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,24 @@ export const makeSocket = (config: SocketConfig) => {
547547
return Buffer.concat([salt, randomIv, ciphered])
548548
}
549549

550+
const sendWAMBuffer = (wamBuffer: Buffer) => {
551+
return query({
552+
tag: 'iq',
553+
attrs: {
554+
to: S_WHATSAPP_NET,
555+
id: generateMessageTag(),
556+
xmlns: 'w:stats'
557+
},
558+
content: [
559+
{
560+
tag: 'add',
561+
attrs: {},
562+
content: wamBuffer
563+
}
564+
]
565+
})
566+
}
567+
550568
ws.on('message', onMessageRecieved)
551569
ws.on('open', async() => {
552570
try {
@@ -723,6 +741,7 @@ export const makeSocket = (config: SocketConfig) => {
723741
requestPairingCode,
724742
/** Waits for the connection to WA to reach a state */
725743
waitForConnectionUpdate: bindWaitForConnectionUpdate(ev),
744+
sendWAMBuffer,
726745
}
727746
}
728747

src/WAM/BinaryInfo.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { EventInputType } from './constants'
2+
3+
export class BinaryInfo {
4+
protocolVersion = 5
5+
sequence = 0
6+
events = [] as EventInputType[]
7+
buffer: Buffer[] = []
8+
9+
constructor(options: Partial<BinaryInfo> = {}) {
10+
Object.assign(this, options)
11+
}
12+
}

0 commit comments

Comments
 (0)