|
1 | 1 | import { Boom } from '@hapi/boom'
|
2 | 2 | import NodeCache from 'node-cache'
|
3 | 3 | 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' |
5 | 5 | import MAIN_LOGGER from '../src/Utils/logger'
|
6 | 6 | import open from 'open'
|
7 | 7 | import fs from 'fs'
|
@@ -176,6 +176,36 @@ const startSock = async() => {
|
176 | 176 | console.log('Connection closed. You are logged out.')
|
177 | 177 | }
|
178 | 178 | }
|
| 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 | + } |
179 | 209 |
|
180 | 210 | console.log('connection update', update)
|
181 | 211 | }
|
|
0 commit comments