@badzz88/baileys 8.4.7 → 8.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (240) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1055 -337
  3. package/WAProto/WAProto.proto +347 -6
  4. package/WAProto/fix-import.js +38 -0
  5. package/WAProto/fix-imports.js +86 -85
  6. package/WAProto/index.d.ts +4913 -25
  7. package/WAProto/index.js +14074 -98
  8. package/package.json +50 -90
  9. package/src/Defaults/index.js +201 -0
  10. package/src/Defaults/phonenumber-mcc.json +223 -0
  11. package/src/Signal/Group/ciphertext-message.js +15 -0
  12. package/src/Signal/Group/group-session-builder.js +92 -0
  13. package/src/Signal/Group/group_cipher.js +89 -0
  14. package/src/Signal/Group/index.js +136 -0
  15. package/src/Signal/Group/keyhelper.js +73 -0
  16. package/src/Signal/Group/sender-chain-key.js +32 -0
  17. package/src/Signal/Group/sender-key-distribution-message.js +66 -0
  18. package/src/Signal/Group/sender-key-message.js +69 -0
  19. package/src/Signal/Group/sender-key-name.js +50 -0
  20. package/src/Signal/Group/sender-key-record.js +44 -0
  21. package/src/Signal/Group/sender-key-state.js +97 -0
  22. package/src/Signal/Group/sender-message-key.js +30 -0
  23. package/src/Signal/libsignal.js +470 -0
  24. package/src/Signal/lid-mapping.js +262 -0
  25. package/src/Socket/Client/index.js +30 -0
  26. package/src/Socket/Client/types.js +13 -0
  27. package/src/Socket/Client/websocket.js +62 -0
  28. package/src/Socket/aigroups.js +240 -0
  29. package/src/Socket/business.js +422 -0
  30. package/src/Socket/chats.js +2374 -0
  31. package/src/Socket/communities.js +580 -0
  32. package/src/Socket/graphql.js +915 -0
  33. package/src/Socket/groups.js +812 -0
  34. package/src/Socket/index.js +37 -0
  35. package/src/Socket/interactive-handler.js +579 -0
  36. package/src/Socket/interop.js +566 -0
  37. package/src/Socket/managed-account.js +214 -0
  38. package/src/Socket/messages-recv.js +3012 -0
  39. package/src/Socket/messages-send.js +2163 -0
  40. package/{lib → src}/Socket/mex.js +11 -5
  41. package/src/Socket/newsletter.js +1057 -0
  42. package/src/Socket/privacy.js +452 -0
  43. package/src/Socket/registration.js +434 -0
  44. package/src/Socket/socket.js +1079 -0
  45. package/src/Socket/text-router.js +67 -0
  46. package/src/Socket/username.js +234 -0
  47. package/src/Store/index.js +36 -0
  48. package/src/Store/make-cache-manager-store.js +90 -0
  49. package/src/Store/make-in-memory-store.js +506 -0
  50. package/src/Store/make-ordered-dictionary.js +81 -0
  51. package/src/Store/object-repository.js +29 -0
  52. package/src/Types/Auth.js +38 -0
  53. package/src/Types/Bussines.js +2 -0
  54. package/src/Types/Call.js +2 -0
  55. package/src/Types/Chat.js +4 -0
  56. package/src/Types/Contact.js +2 -0
  57. package/src/Types/Events.js +2 -0
  58. package/src/Types/GroupMetadata.js +2 -0
  59. package/src/Types/Label.js +27 -0
  60. package/src/Types/LabelAssociation.js +9 -0
  61. package/src/Types/Message.js +95 -0
  62. package/src/Types/Newsletter.js +152 -0
  63. package/src/Types/Product.js +2 -0
  64. package/src/Types/Signal.js +2 -0
  65. package/src/Types/Socket.js +2 -0
  66. package/src/Types/State.js +70 -0
  67. package/src/Types/USync.js +2 -0
  68. package/src/Types/index.js +54 -0
  69. package/src/Utils/auth-utils.js +306 -0
  70. package/src/Utils/browser-utils.js +114 -0
  71. package/src/Utils/business.js +247 -0
  72. package/src/Utils/chat-utils.js +1272 -0
  73. package/src/Utils/consumer-application.js +107 -0
  74. package/src/Utils/crypto.js +125 -0
  75. package/src/Utils/decode-wa-message.js +808 -0
  76. package/src/Utils/event-buffer.js +586 -0
  77. package/src/Utils/generics.js +640 -0
  78. package/src/Utils/group-history.js +60 -0
  79. package/src/Utils/history.js +244 -0
  80. package/src/Utils/identity-change-handler.js +52 -0
  81. package/src/Utils/index.js +53 -0
  82. package/src/Utils/jid-display-normalization.js +218 -0
  83. package/src/Utils/link-preview.js +143 -0
  84. package/src/Utils/logger.js +9 -0
  85. package/src/Utils/lt-hash.js +10 -0
  86. package/src/Utils/make-mutex.js +36 -0
  87. package/src/Utils/message-composer.js +479 -0
  88. package/src/Utils/message-inspect.js +400 -0
  89. package/src/Utils/message-retry-manager.js +231 -0
  90. package/src/Utils/messages-media.js +943 -0
  91. package/src/Utils/messages.js +2490 -0
  92. package/src/Utils/meta-ai-msmsg.js +133 -0
  93. package/src/Utils/noise-handler.js +194 -0
  94. package/src/Utils/offline-node-processor.js +42 -0
  95. package/src/Utils/pre-key-manager.js +107 -0
  96. package/src/Utils/process-message.js +1047 -0
  97. package/src/Utils/reporting-utils.js +262 -0
  98. package/src/Utils/signal.js +192 -0
  99. package/src/Utils/stanza-ack.js +74 -0
  100. package/src/Utils/sync-action-utils.js +54 -0
  101. package/src/Utils/tc-token-utils.js +161 -0
  102. package/src/Utils/use-multi-file-auth-state.js +121 -0
  103. package/src/Utils/validate-connection.js +248 -0
  104. package/src/Utils/voip-rekey.js +22 -0
  105. package/src/WABinary/constants.js +1304 -0
  106. package/src/WABinary/decode.js +377 -0
  107. package/src/WABinary/encode.js +58 -0
  108. package/src/WABinary/generic-utils.js +148 -0
  109. package/src/WABinary/index.js +33 -0
  110. package/src/WABinary/jid-utils.js +374 -0
  111. package/src/WABinary/types.js +2 -0
  112. package/src/WAM/BinaryInfo.js +13 -0
  113. package/src/WAM/constants.js +39486 -0
  114. package/src/WAM/encode.js +142 -0
  115. package/src/WAM/index.js +31 -0
  116. package/src/WAUSync/Protocols/USyncBotProfileProtocol.js +55 -0
  117. package/src/WAUSync/Protocols/USyncBusinessProtocol.js +100 -0
  118. package/src/WAUSync/Protocols/USyncContactProtocol.js +60 -0
  119. package/src/WAUSync/Protocols/USyncDeviceProtocol.js +65 -0
  120. package/src/WAUSync/Protocols/USyncDisappearingModeProtocol.js +27 -0
  121. package/src/WAUSync/Protocols/USyncFeatureProtocol.js +74 -0
  122. package/src/WAUSync/Protocols/USyncLIDProtocol.js +31 -0
  123. package/src/WAUSync/Protocols/USyncPictureProtocol.js +32 -0
  124. package/src/WAUSync/Protocols/USyncSidelistProtocol.js +29 -0
  125. package/src/WAUSync/Protocols/USyncStatusProtocol.js +44 -0
  126. package/src/WAUSync/Protocols/USyncTextStatusProtocol.js +38 -0
  127. package/src/WAUSync/Protocols/USyncUsernameProtocol.js +28 -0
  128. package/src/WAUSync/Protocols/index.js +40 -0
  129. package/src/WAUSync/USyncBackoff.js +31 -0
  130. package/src/WAUSync/USyncQuery.js +204 -0
  131. package/src/WAUSync/USyncUser.js +58 -0
  132. package/src/WAUSync/index.js +32 -0
  133. package/src/antiban.js +4726 -0
  134. package/{lib → src}/index.js +48 -15
  135. package/lib/Defaults/index.js +0 -130
  136. package/lib/Signal/Group/ciphertext-message.js +0 -12
  137. package/lib/Signal/Group/group-session-builder.js +0 -30
  138. package/lib/Signal/Group/group_cipher.js +0 -82
  139. package/lib/Signal/Group/index.js +0 -12
  140. package/lib/Signal/Group/keyhelper.js +0 -18
  141. package/lib/Signal/Group/sender-chain-key.js +0 -26
  142. package/lib/Signal/Group/sender-key-distribution-message.js +0 -63
  143. package/lib/Signal/Group/sender-key-message.js +0 -66
  144. package/lib/Signal/Group/sender-key-name.js +0 -48
  145. package/lib/Signal/Group/sender-key-record.js +0 -41
  146. package/lib/Signal/Group/sender-key-state.js +0 -84
  147. package/lib/Signal/Group/sender-message-key.js +0 -26
  148. package/lib/Signal/libsignal.js +0 -431
  149. package/lib/Signal/lid-mapping.js +0 -277
  150. package/lib/Socket/Client/index.js +0 -3
  151. package/lib/Socket/Client/types.js +0 -11
  152. package/lib/Socket/Client/websocket.js +0 -54
  153. package/lib/Socket/business.js +0 -379
  154. package/lib/Socket/chats.js +0 -1193
  155. package/lib/Socket/communities.js +0 -431
  156. package/lib/Socket/groups.js +0 -374
  157. package/lib/Socket/index.js +0 -12
  158. package/lib/Socket/luxu.js +0 -386
  159. package/lib/Socket/messages-recv.js +0 -1916
  160. package/lib/Socket/messages-send.js +0 -1453
  161. package/lib/Socket/newsletter.js +0 -251
  162. package/lib/Socket/socket.js +0 -980
  163. package/lib/Socket/username.js +0 -146
  164. package/lib/Store/index.js +0 -10
  165. package/lib/Store/keyed-db.js +0 -108
  166. package/lib/Store/make-cache-manager-store.js +0 -85
  167. package/lib/Store/make-in-memory-store.js +0 -198
  168. package/lib/Store/make-ordered-dictionary.js +0 -75
  169. package/lib/Store/object-repository.js +0 -32
  170. package/lib/Types/Auth.js +0 -2
  171. package/lib/Types/Bussines.js +0 -2
  172. package/lib/Types/Call.js +0 -2
  173. package/lib/Types/Chat.js +0 -8
  174. package/lib/Types/Contact.js +0 -2
  175. package/lib/Types/Events.js +0 -2
  176. package/lib/Types/GroupMetadata.js +0 -2
  177. package/lib/Types/Label.js +0 -25
  178. package/lib/Types/LabelAssociation.js +0 -7
  179. package/lib/Types/Message.js +0 -11
  180. package/lib/Types/Mex.js +0 -37
  181. package/lib/Types/Product.js +0 -2
  182. package/lib/Types/Signal.js +0 -2
  183. package/lib/Types/Socket.js +0 -3
  184. package/lib/Types/State.js +0 -56
  185. package/lib/Types/USync.js +0 -2
  186. package/lib/Types/index.js +0 -26
  187. package/lib/Utils/auth-utils.js +0 -302
  188. package/lib/Utils/browser-utils.js +0 -49
  189. package/lib/Utils/business.js +0 -231
  190. package/lib/Utils/chat-utils.js +0 -872
  191. package/lib/Utils/companion-reg-client-utils.js +0 -35
  192. package/lib/Utils/crypto.js +0 -118
  193. package/lib/Utils/decode-wa-message.js +0 -350
  194. package/lib/Utils/event-buffer.js +0 -622
  195. package/lib/Utils/generics.js +0 -403
  196. package/lib/Utils/history.js +0 -134
  197. package/lib/Utils/identity-change-handler.js +0 -50
  198. package/lib/Utils/index.js +0 -23
  199. package/lib/Utils/link-preview.js +0 -85
  200. package/lib/Utils/logger.js +0 -3
  201. package/lib/Utils/lt-hash.js +0 -8
  202. package/lib/Utils/make-mutex.js +0 -33
  203. package/lib/Utils/message-composer.js +0 -273
  204. package/lib/Utils/message-retry-manager.js +0 -265
  205. package/lib/Utils/messages-media.js +0 -788
  206. package/lib/Utils/messages.js +0 -1260
  207. package/lib/Utils/noise-handler.js +0 -201
  208. package/lib/Utils/offline-node-processor.js +0 -40
  209. package/lib/Utils/pre-key-manager.js +0 -106
  210. package/lib/Utils/process-message.js +0 -630
  211. package/lib/Utils/reporting-utils.js +0 -258
  212. package/lib/Utils/signal.js +0 -201
  213. package/lib/Utils/stanza-ack.js +0 -38
  214. package/lib/Utils/sync-action-utils.js +0 -49
  215. package/lib/Utils/tc-token-utils.js +0 -163
  216. package/lib/Utils/use-multi-file-auth-state.js +0 -121
  217. package/lib/Utils/validate-connection.js +0 -203
  218. package/lib/WABinary/constants.js +0 -1301
  219. package/lib/WABinary/decode.js +0 -262
  220. package/lib/WABinary/encode.js +0 -220
  221. package/lib/WABinary/generic-utils.js +0 -204
  222. package/lib/WABinary/index.js +0 -6
  223. package/lib/WABinary/jid-utils.js +0 -98
  224. package/lib/WABinary/types.js +0 -2
  225. package/lib/WAM/BinaryInfo.js +0 -10
  226. package/lib/WAM/constants.js +0 -22853
  227. package/lib/WAM/encode.js +0 -150
  228. package/lib/WAM/index.js +0 -4
  229. package/lib/WAUSync/Protocols/USyncContactProtocol.js +0 -52
  230. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +0 -54
  231. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +0 -27
  232. package/lib/WAUSync/Protocols/USyncNewsletterProtocol.js +0 -263
  233. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +0 -38
  234. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +0 -25
  235. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +0 -51
  236. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +0 -29
  237. package/lib/WAUSync/Protocols/index.js +0 -6
  238. package/lib/WAUSync/USyncQuery.js +0 -98
  239. package/lib/WAUSync/USyncUser.js +0 -31
  240. package/lib/WAUSync/index.js +0 -4
@@ -0,0 +1,377 @@
1
+ 'use strict'
2
+ var __createBinding =
3
+ (this && this.__createBinding) ||
4
+ (Object.create
5
+ ? function (o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k
7
+ var desc = Object.getOwnPropertyDescriptor(m, k)
8
+ if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = {
10
+ enumerable: true,
11
+ get: function () {
12
+ return m[k]
13
+ }
14
+ }
15
+ }
16
+ Object.defineProperty(o, k2, desc)
17
+ }
18
+ : function (o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k
20
+ o[k2] = m[k]
21
+ })
22
+ var __setModuleDefault =
23
+ (this && this.__setModuleDefault) ||
24
+ (Object.create
25
+ ? function (o, v) {
26
+ Object.defineProperty(o, 'default', { enumerable: true, value: v })
27
+ }
28
+ : function (o, v) {
29
+ o['default'] = v
30
+ })
31
+ var __importStar =
32
+ (this && this.__importStar) ||
33
+ (function () {
34
+ var ownKeys = function (o) {
35
+ ownKeys =
36
+ Object.getOwnPropertyNames ||
37
+ function (o) {
38
+ var ar = []
39
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k
40
+ return ar
41
+ }
42
+ return ownKeys(o)
43
+ }
44
+ return function (mod) {
45
+ if (mod && mod.__esModule) return mod
46
+ var result = {}
47
+ if (mod != null)
48
+ for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== 'default') __createBinding(result, mod, k[i])
49
+ __setModuleDefault(result, mod)
50
+ return result
51
+ }
52
+ })()
53
+ Object.defineProperty(exports, '__esModule', { value: true })
54
+ exports.decodeBinaryNode = exports.decodeDecompressedBinaryNode = exports.decompressingIfRequired = void 0
55
+ const util_1 = require('util')
56
+ const zlib_1 = require('zlib')
57
+ const constants = __importStar(require('./constants'))
58
+ const jid_utils_1 = require('./jid-utils')
59
+ const rb = require('whatsapp-rust-bridge-baron')
60
+ const inflatePromise = (0, util_1.promisify)(zlib_1.inflate)
61
+ const decompressingIfRequired = async buffer => {
62
+ if (2 & buffer.readUInt8()) {
63
+ buffer = await inflatePromise(buffer.slice(1))
64
+ } else {
65
+ // nodes with no compression have a 0x00 prefix, we remove that
66
+ buffer = buffer.slice(1)
67
+ }
68
+ return buffer
69
+ }
70
+ exports.decompressingIfRequired = decompressingIfRequired
71
+
72
+ // Converts InternalBinaryNode.toJSON() output to a plain JS object with Buffer content
73
+ const rustNodeToJs = node => {
74
+ if (!node || typeof node !== 'object') return node
75
+ const result = { tag: node.tag, attrs: node.attrs || {} }
76
+ const content = node.content
77
+ if (content === undefined || content === null) {
78
+ // no content
79
+ } else if (content instanceof Uint8Array) {
80
+ result.content = Buffer.from(content)
81
+ } else if (typeof content === 'string') {
82
+ result.content = content
83
+ } else if (Array.isArray(content)) {
84
+ result.content = content.map(rustNodeToJs)
85
+ } else {
86
+ result.content = content
87
+ }
88
+ return result
89
+ }
90
+ const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0 }) => {
91
+ const { DOUBLE_BYTE_TOKENS, SINGLE_BYTE_TOKENS, TAGS } = opts
92
+ const checkEOS = length => {
93
+ if (indexRef.index + length > buffer.length) {
94
+ throw new Error('end of stream')
95
+ }
96
+ }
97
+ const next = () => {
98
+ const value = buffer[indexRef.index]
99
+ indexRef.index += 1
100
+ return value
101
+ }
102
+ const readByte = () => {
103
+ checkEOS(1)
104
+ return next()
105
+ }
106
+ const readBytes = n => {
107
+ checkEOS(n)
108
+ const value = buffer.slice(indexRef.index, indexRef.index + n)
109
+ indexRef.index += n
110
+ return value
111
+ }
112
+ const readStringFromChars = length => {
113
+ return readBytes(length).toString('utf8')
114
+ }
115
+ const readInt = (n, littleEndian = false) => {
116
+ checkEOS(n)
117
+ let val = 0
118
+ for (let i = 0; i < n; i++) {
119
+ const shift = littleEndian ? i : n - 1 - i
120
+ val |= next() << (shift * 8)
121
+ }
122
+ return val
123
+ }
124
+ const readInt20 = () => {
125
+ checkEOS(3)
126
+ return ((next() & 15) << 16) + (next() << 8) + next()
127
+ }
128
+ const unpackHex = value => {
129
+ if (value >= 0 && value < 16) {
130
+ return value < 10 ? '0'.charCodeAt(0) + value : 'A'.charCodeAt(0) + value - 10
131
+ }
132
+ throw new Error('invalid hex: ' + value)
133
+ }
134
+ const unpackNibble = value => {
135
+ if (value >= 0 && value <= 9) {
136
+ return '0'.charCodeAt(0) + value
137
+ }
138
+ switch (value) {
139
+ case 10:
140
+ return '-'.charCodeAt(0)
141
+ case 11:
142
+ return '.'.charCodeAt(0)
143
+ case 15:
144
+ return '\0'.charCodeAt(0)
145
+ default:
146
+ throw new Error('invalid nibble: ' + value)
147
+ }
148
+ }
149
+ const unpackByte = (tag, value) => {
150
+ if (tag === TAGS.NIBBLE_8) {
151
+ return unpackNibble(value)
152
+ } else if (tag === TAGS.HEX_8) {
153
+ return unpackHex(value)
154
+ } else {
155
+ throw new Error('unknown tag: ' + tag)
156
+ }
157
+ }
158
+ const readPacked8 = tag => {
159
+ const startByte = readByte()
160
+ let value = ''
161
+ for (let i = 0; i < (startByte & 127); i++) {
162
+ const curByte = readByte()
163
+ value += String.fromCharCode(unpackByte(tag, (curByte & 0xf0) >> 4))
164
+ value += String.fromCharCode(unpackByte(tag, curByte & 0x0f))
165
+ }
166
+ if (startByte >> 7 !== 0) {
167
+ value = value.slice(0, -1)
168
+ }
169
+ return value
170
+ }
171
+ const isListTag = tag => {
172
+ return tag === TAGS.LIST_EMPTY || tag === TAGS.LIST_8 || tag === TAGS.LIST_16
173
+ }
174
+ const readListSize = tag => {
175
+ switch (tag) {
176
+ case TAGS.LIST_EMPTY:
177
+ return 0
178
+ case TAGS.LIST_8:
179
+ return readByte()
180
+ case TAGS.LIST_16:
181
+ return readInt(2)
182
+ default:
183
+ throw new Error('invalid tag for list size: ' + tag)
184
+ }
185
+ }
186
+ const readJidPair = () => {
187
+ const i = readString(readByte())
188
+ const j = readString(readByte())
189
+ if (j) {
190
+ return (i || '') + '@' + j
191
+ }
192
+ throw new Error('invalid jid pair: ' + i + ', ' + j)
193
+ }
194
+ const readAdJid = () => {
195
+ const rawDomainType = readByte()
196
+ const domainType = Number(rawDomainType)
197
+ const device = readByte()
198
+ const user = readString(readByte())
199
+ let server = 's.whatsapp.net' // default whatsapp server
200
+ if (domainType === jid_utils_1.WAJIDDomains.LID) {
201
+ server = 'lid'
202
+ } else if (domainType === jid_utils_1.WAJIDDomains.HOSTED) {
203
+ server = 'hosted'
204
+ } else if (domainType === jid_utils_1.WAJIDDomains.HOSTED_LID) {
205
+ server = 'hosted.lid'
206
+ }
207
+ return (0, jid_utils_1.jidEncode)(user, server, device)
208
+ }
209
+ const readFbJid = () => {
210
+ const user = readString(readByte())
211
+ const device = readInt(2)
212
+ const server = readString(readByte())
213
+ return `${user}:${device}@${server}`
214
+ }
215
+ const readInteropJid = () => {
216
+ const user = readString(readByte())
217
+ const device = readInt(2)
218
+ const integrator = readInt(2)
219
+ let server = 'interop'
220
+ // Only attempt to read the optional server field if at least 1 byte remains
221
+ // and the next byte is a valid string tag (avoids corrupting the stream on
222
+ // unknown tags that readString would swallow silently after a catch).
223
+ if (indexRef.index < buffer.length) {
224
+ const serverTag = buffer[indexRef.index]
225
+ // BINARY_8 / BINARY_20 / BINARY_32 or a single-byte token (1–235) are
226
+ // valid string tags; LIST_EMPTY (0) means no server string follows.
227
+ const isValidStringTag =
228
+ (serverTag >= 1 && serverTag <= 235) ||
229
+ serverTag === TAGS.BINARY_8 ||
230
+ serverTag === TAGS.BINARY_20 ||
231
+ serverTag === TAGS.BINARY_32 ||
232
+ serverTag === TAGS.NIBBLE_8 ||
233
+ serverTag === TAGS.HEX_8
234
+ if (isValidStringTag) {
235
+ indexRef.index++ // consume the tag byte
236
+ server = readString(serverTag)
237
+ }
238
+ }
239
+ return `${integrator}-${user}:${device}@${server}`
240
+ }
241
+ const readInteropJidTuple = () => {
242
+ const user = readString(readByte())
243
+ const device = readInt(2)
244
+ const integrator = readInt(2)
245
+ const domain = readByte()
246
+ if (domain !== 0) {
247
+ throw new Error(`invalid domain for INTEROP_JID_TUPLE: ${domain}`)
248
+ }
249
+ const devicePart = device !== 0 ? `:${device}` : ''
250
+ return `${integrator}-${user}${devicePart}@interop`
251
+ }
252
+ const readString = tag => {
253
+ if (tag >= 1 && tag < SINGLE_BYTE_TOKENS.length) {
254
+ return SINGLE_BYTE_TOKENS[tag] || ''
255
+ }
256
+ switch (tag) {
257
+ case TAGS.DICTIONARY_0:
258
+ case TAGS.DICTIONARY_1:
259
+ case TAGS.DICTIONARY_2:
260
+ case TAGS.DICTIONARY_3:
261
+ return getTokenDouble(tag - TAGS.DICTIONARY_0, readByte())
262
+ case TAGS.LIST_EMPTY:
263
+ return ''
264
+ case TAGS.BINARY_8:
265
+ return readStringFromChars(readByte())
266
+ case TAGS.BINARY_20:
267
+ return readStringFromChars(readInt20())
268
+ case TAGS.BINARY_32:
269
+ return readStringFromChars(readInt(4))
270
+ case TAGS.JID_PAIR:
271
+ return readJidPair()
272
+ case TAGS.FB_JID:
273
+ return readFbJid()
274
+ case TAGS.INTEROP_JID_TUPLE:
275
+ return readInteropJidTuple()
276
+ case TAGS.INTEROP_JID:
277
+ return readInteropJid()
278
+ case TAGS.AD_JID:
279
+ return readAdJid()
280
+ case TAGS.HEX_8:
281
+ case TAGS.NIBBLE_8:
282
+ return readPacked8(tag)
283
+ default:
284
+ // Unknown tag — token table may be outdated (new WA protocol version)
285
+ process.stderr.write(`[WABinary] unknown string tag 0x${tag.toString(16)} — token table outdated?\n`)
286
+ return ''
287
+ }
288
+ }
289
+ const readList = tag => {
290
+ const items = []
291
+ const size = readListSize(tag)
292
+ for (let i = 0; i < size; i++) {
293
+ items.push((0, exports.decodeDecompressedBinaryNode)(buffer, opts, indexRef))
294
+ }
295
+ return items
296
+ }
297
+ const getTokenDouble = (index1, index2) => {
298
+ const dict = DOUBLE_BYTE_TOKENS[index1]
299
+ if (!dict) {
300
+ // Unknown dictionary — token table may be outdated (new WA protocol version)
301
+ process.stderr.write(`[WABinary] unknown double-byte token dict ${index1} — token table outdated?\n`)
302
+ return ''
303
+ }
304
+ const value = dict[index2]
305
+ if (typeof value === 'undefined') {
306
+ // Unknown token in known dictionary — token table may be outdated
307
+ process.stderr.write(
308
+ `[WABinary] unknown double-byte token dict=${index1} idx=${index2} — token table outdated?\n`
309
+ )
310
+ return ''
311
+ }
312
+ return value
313
+ }
314
+ const listSize = readListSize(readByte())
315
+ const header = readString(readByte())
316
+ if (!listSize || !header.length) {
317
+ throw new Error('invalid node')
318
+ }
319
+ const attrs = {}
320
+ let data
321
+ if (listSize === 0 || !header) {
322
+ throw new Error('invalid node')
323
+ }
324
+ // read the attributes in
325
+ const attributesLength = (listSize - 1) >> 1
326
+ for (let i = 0; i < attributesLength; i++) {
327
+ const key = readString(readByte())
328
+ const value = readString(readByte())
329
+ attrs[key] = value
330
+ }
331
+ if (listSize % 2 === 0) {
332
+ const tag = readByte()
333
+ if (isListTag(tag)) {
334
+ data = readList(tag)
335
+ } else {
336
+ let decoded
337
+ switch (tag) {
338
+ case TAGS.BINARY_8:
339
+ decoded = readBytes(readByte())
340
+ break
341
+ case TAGS.BINARY_20:
342
+ decoded = readBytes(readInt20())
343
+ break
344
+ case TAGS.BINARY_32:
345
+ decoded = readBytes(readInt(4))
346
+ break
347
+ default:
348
+ decoded = readString(tag)
349
+ break
350
+ }
351
+ data = decoded
352
+ }
353
+ }
354
+ return {
355
+ tag: header,
356
+ attrs,
357
+ content: data
358
+ }
359
+ }
360
+ exports.decodeDecompressedBinaryNode = decodeDecompressedBinaryNode
361
+ const JS_DECODE_OPTS = {
362
+ TAGS: constants.TAGS,
363
+ SINGLE_BYTE_TOKENS: constants.SINGLE_BYTE_TOKENS,
364
+ DOUBLE_BYTE_TOKENS: constants.DOUBLE_BYTE_TOKENS,
365
+ }
366
+ const decodeBinaryNode = buff => {
367
+ const u8 = buff instanceof Uint8Array ? buff : new Uint8Array(buff.buffer, buff.byteOffset, buff.byteLength)
368
+ try {
369
+ const internal = rb.decodeNode(u8)
370
+ return rustNodeToJs(internal.toJSON())
371
+ } catch (_) {
372
+ // WASM token table is outdated (e.g. INTEROP_JID_TUPLE=244, INTEROP_JID=245).
373
+ // Fall back to the JS decoder which knows all current tags.
374
+ return (0, exports.decodeDecompressedBinaryNode)(buff, JS_DECODE_OPTS)
375
+ }
376
+ }
377
+ exports.decodeBinaryNode = decodeBinaryNode
@@ -0,0 +1,58 @@
1
+ 'use strict'
2
+ var __createBinding =
3
+ (this && this.__createBinding) ||
4
+ (Object.create
5
+ ? function (o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k
7
+ var desc = Object.getOwnPropertyDescriptor(m, k)
8
+ if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = {
10
+ enumerable: true,
11
+ get: function () {
12
+ return m[k]
13
+ }
14
+ }
15
+ }
16
+ Object.defineProperty(o, k2, desc)
17
+ }
18
+ : function (o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k
20
+ o[k2] = m[k]
21
+ })
22
+ var __setModuleDefault =
23
+ (this && this.__setModuleDefault) ||
24
+ (Object.create
25
+ ? function (o, v) {
26
+ Object.defineProperty(o, 'default', { enumerable: true, value: v })
27
+ }
28
+ : function (o, v) {
29
+ o['default'] = v
30
+ })
31
+ var __importStar =
32
+ (this && this.__importStar) ||
33
+ (function () {
34
+ var ownKeys = function (o) {
35
+ ownKeys =
36
+ Object.getOwnPropertyNames ||
37
+ function (o) {
38
+ var ar = []
39
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k
40
+ return ar
41
+ }
42
+ return ownKeys(o)
43
+ }
44
+ return function (mod) {
45
+ if (mod && mod.__esModule) return mod
46
+ var result = {}
47
+ if (mod != null)
48
+ for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== 'default') __createBinding(result, mod, k[i])
49
+ __setModuleDefault(result, mod)
50
+ return result
51
+ }
52
+ })()
53
+ Object.defineProperty(exports, '__esModule', { value: true })
54
+ exports.encodeBinaryNode = void 0
55
+ const rb = require('whatsapp-rust-bridge-baron')
56
+ const encodeBinaryNode = node => Buffer.from(rb.encodeNode(node))
57
+ exports.encodeBinaryNode = encodeBinaryNode
58
+ // Legacy JS implementation kept below but no longer called
@@ -0,0 +1,148 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.getBinaryNodeMessages =
4
+ exports.reduceBinaryNodeToDictionary =
5
+ exports.assertNodeErrorFree =
6
+ exports.getBinaryNodeChildUInt =
7
+ exports.getBinaryNodeChildString =
8
+ exports.getBinaryNodeChildBuffer =
9
+ exports.getAllBinaryNodeChildren =
10
+ exports.getBinaryNodeChild =
11
+ exports.getBinaryNodeChildren =
12
+ void 0
13
+ exports.binaryNodeToString = binaryNodeToString
14
+ const boom_1 = require('@hapi/boom')
15
+ const index_js_1 = require('../../WAProto/index.js')
16
+ // some extra useful utilities
17
+ const indexCache = new WeakMap()
18
+ const getBinaryNodeChildren = (node, childTag) => {
19
+ if (!node || !Array.isArray(node.content)) return []
20
+ let index = indexCache.get(node)
21
+ // Build the index once per node
22
+ if (!index) {
23
+ index = new Map()
24
+ for (const child of node.content) {
25
+ let arr = index.get(child.tag)
26
+ if (!arr) index.set(child.tag, (arr = []))
27
+ arr.push(child)
28
+ }
29
+ indexCache.set(node, index)
30
+ }
31
+ // Return first matching child
32
+ return index.get(childTag) || []
33
+ }
34
+ exports.getBinaryNodeChildren = getBinaryNodeChildren
35
+ const getBinaryNodeChild = (node, childTag) => {
36
+ return (0, exports.getBinaryNodeChildren)(node, childTag)[0]
37
+ }
38
+ exports.getBinaryNodeChild = getBinaryNodeChild
39
+ const getAllBinaryNodeChildren = ({ content }) => {
40
+ if (Array.isArray(content)) {
41
+ return content
42
+ }
43
+ return []
44
+ }
45
+ exports.getAllBinaryNodeChildren = getAllBinaryNodeChildren
46
+ const getBinaryNodeChildBuffer = (node, childTag) => {
47
+ const child = (0, exports.getBinaryNodeChild)(node, childTag)?.content
48
+ if (Buffer.isBuffer(child) || child instanceof Uint8Array) {
49
+ return child
50
+ }
51
+ }
52
+ exports.getBinaryNodeChildBuffer = getBinaryNodeChildBuffer
53
+ const getBinaryNodeChildString = (node, childTag) => {
54
+ const child = (0, exports.getBinaryNodeChild)(node, childTag)?.content
55
+ if (Buffer.isBuffer(child) || child instanceof Uint8Array) {
56
+ return Buffer.from(child).toString('utf8')
57
+ } else if (typeof child === 'string') {
58
+ return child
59
+ }
60
+ }
61
+ exports.getBinaryNodeChildString = getBinaryNodeChildString
62
+ const getBinaryNodeChildUInt = (node, childTag, length) => {
63
+ const buff = (0, exports.getBinaryNodeChildBuffer)(node, childTag)
64
+ if (buff) {
65
+ return bufferToUInt(buff, length)
66
+ }
67
+ }
68
+ exports.getBinaryNodeChildUInt = getBinaryNodeChildUInt
69
+ const assertNodeErrorFree = node => {
70
+ const errNode = (0, exports.getBinaryNodeChild)(node, 'error')
71
+ if (errNode) {
72
+ throw new boom_1.Boom(errNode.attrs.text || 'Unknown error', { data: +errNode.attrs.code })
73
+ }
74
+ }
75
+ exports.assertNodeErrorFree = assertNodeErrorFree
76
+ const reduceBinaryNodeToDictionary = (node, tag) => {
77
+ const nodes = (0, exports.getBinaryNodeChildren)(node, tag)
78
+ const dict = nodes.reduce((dict, { attrs }) => {
79
+ if (typeof attrs.name === 'string') {
80
+ dict[attrs.name] = attrs.value || attrs.config_value
81
+ } else {
82
+ dict[attrs.config_code] = attrs.value || attrs.config_value
83
+ }
84
+ return dict
85
+ }, {})
86
+ return dict
87
+ }
88
+ exports.reduceBinaryNodeToDictionary = reduceBinaryNodeToDictionary
89
+ const getBinaryNodeMessages = ({ content }) => {
90
+ const msgs = []
91
+ if (Array.isArray(content)) {
92
+ for (const item of content) {
93
+ if (item.tag === 'message') {
94
+ msgs.push(index_js_1.proto.WebMessageInfo.decode(item.content).toJSON())
95
+ }
96
+ }
97
+ }
98
+ return msgs
99
+ }
100
+ exports.getBinaryNodeMessages = getBinaryNodeMessages
101
+
102
+ const getBinaryFilteredButtons = nodeContent => {
103
+ if (!Array.isArray(nodeContent)) return false
104
+
105
+ return nodeContent.some(
106
+ a =>
107
+ ['native_flow'].includes(a?.content?.[0]?.content?.[0]?.tag) ||
108
+ ['interactive', 'buttons', 'list'].includes(a?.content?.[0]?.tag) ||
109
+ ['hsm', 'biz'].includes(a?.tag)
110
+ )
111
+ }
112
+ exports.getBinaryFilteredButtons = getBinaryFilteredButtons
113
+ const getBinaryFilteredBizBot = nodeContent => {
114
+ if (!Array.isArray(nodeContent)) return false
115
+
116
+ return nodeContent.some(b => ['bot'].includes(b?.tag) && b?.attrs?.biz_bot === '1')
117
+ }
118
+ exports.getBinaryFilteredBizBot = getBinaryFilteredBizBot
119
+
120
+ function bufferToUInt(e, t) {
121
+ let a = 0
122
+ for (let i = 0; i < t; i++) {
123
+ a = 256 * a + e[i]
124
+ }
125
+ return a
126
+ }
127
+ const tabs = n => '\t'.repeat(n)
128
+ function binaryNodeToString(node, i = 0) {
129
+ if (!node) {
130
+ return node
131
+ }
132
+ if (typeof node === 'string') {
133
+ return tabs(i) + node
134
+ }
135
+ if (node instanceof Uint8Array) {
136
+ return tabs(i) + Buffer.from(node).toString('hex')
137
+ }
138
+ if (Array.isArray(node)) {
139
+ return node.map(x => tabs(i + 1) + binaryNodeToString(x, i + 1)).join('\n')
140
+ }
141
+ const children = binaryNodeToString(node.content, i + 1)
142
+ const tag = `<${node.tag} ${Object.entries(node.attrs || {})
143
+ .filter(([, v]) => v !== undefined)
144
+ .map(([k, v]) => `${k}='${v}'`)
145
+ .join(' ')}`
146
+ const content = children ? `>\n${children}\n${tabs(i)}</${node.tag}>` : '/>'
147
+ return tag + content
148
+ }
@@ -0,0 +1,33 @@
1
+ 'use strict'
2
+ var __createBinding =
3
+ (this && this.__createBinding) ||
4
+ (Object.create
5
+ ? function (o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k
7
+ var desc = Object.getOwnPropertyDescriptor(m, k)
8
+ if (!desc || ('get' in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = {
10
+ enumerable: true,
11
+ get: function () {
12
+ return m[k]
13
+ }
14
+ }
15
+ }
16
+ Object.defineProperty(o, k2, desc)
17
+ }
18
+ : function (o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k
20
+ o[k2] = m[k]
21
+ })
22
+ var __exportStar =
23
+ (this && this.__exportStar) ||
24
+ function (m, exports) {
25
+ for (var p in m)
26
+ if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p)
27
+ }
28
+ Object.defineProperty(exports, '__esModule', { value: true })
29
+ __exportStar(require('./encode'), exports)
30
+ __exportStar(require('./decode'), exports)
31
+ __exportStar(require('./generic-utils'), exports)
32
+ __exportStar(require('./jid-utils'), exports)
33
+ __exportStar(require('./types'), exports)