@sixcore/baileys 1.0.0 → 1.0.2

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 (228) hide show
  1. package/WAProto/index.js +14270 -302
  2. package/jessica.js +91 -0
  3. package/lib/Defaults/baileys-version.json +1 -1
  4. package/lib/Defaults/index.js +117 -79
  5. package/lib/Defaults/phonenumber-mcc.json +223 -0
  6. package/lib/Signal/Group/ciphertext-message.d.ts +9 -0
  7. package/lib/Signal/Group/ciphertext-message.js +15 -0
  8. package/lib/Signal/Group/group-session-builder.d.ts +14 -0
  9. package/lib/Signal/Group/group-session-builder.js +64 -0
  10. package/lib/Signal/Group/group_cipher.d.ts +17 -0
  11. package/lib/Signal/Group/group_cipher.js +96 -0
  12. package/lib/Signal/Group/index.d.ts +11 -0
  13. package/lib/Signal/Group/index.js +57 -0
  14. package/lib/Signal/Group/keyhelper.d.ts +10 -0
  15. package/lib/Signal/Group/keyhelper.js +55 -0
  16. package/lib/Signal/Group/queue-job.d.ts +1 -0
  17. package/lib/Signal/Group/queue-job.js +57 -0
  18. package/lib/Signal/Group/sender-chain-key.d.ts +13 -0
  19. package/lib/Signal/Group/sender-chain-key.js +34 -0
  20. package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -0
  21. package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
  22. package/lib/Signal/Group/sender-key-message.d.ts +18 -0
  23. package/lib/Signal/Group/sender-key-message.js +69 -0
  24. package/lib/Signal/Group/sender-key-name.d.ts +17 -0
  25. package/lib/Signal/Group/sender-key-name.js +51 -0
  26. package/lib/Signal/Group/sender-key-record.d.ts +30 -0
  27. package/lib/Signal/Group/sender-key-record.js +53 -0
  28. package/lib/Signal/Group/sender-key-state.d.ts +38 -0
  29. package/lib/Signal/Group/sender-key-state.js +99 -0
  30. package/lib/Signal/Group/sender-message-key.d.ts +11 -0
  31. package/{WASignalGroup/sender_message_key.js → lib/Signal/Group/sender-message-key.js} +6 -16
  32. package/lib/Signal/libsignal.js +51 -29
  33. package/lib/Socket/business.d.ts +43 -42
  34. package/lib/Socket/chats.d.ts +222 -36
  35. package/lib/Socket/chats.js +173 -153
  36. package/lib/Socket/dugong.d.ts +254 -0
  37. package/lib/Socket/dugong.js +484 -0
  38. package/lib/Socket/groups.d.ts +7 -7
  39. package/lib/Socket/groups.js +37 -35
  40. package/lib/Socket/index.d.ts +52 -51
  41. package/lib/Socket/index.js +1 -0
  42. package/lib/Socket/messages-recv.d.ts +37 -34
  43. package/lib/Socket/messages-recv.js +175 -37
  44. package/lib/Socket/messages-send.d.ts +12 -18
  45. package/lib/Socket/messages-send.js +396 -574
  46. package/lib/Socket/newsletter.d.ts +28 -26
  47. package/lib/Socket/newsletter.js +132 -121
  48. package/lib/Socket/registration.d.ts +52 -49
  49. package/lib/Socket/registration.js +7 -7
  50. package/lib/Socket/socket.d.ts +0 -1
  51. package/lib/Socket/socket.js +49 -27
  52. package/lib/Socket/usync.d.ts +10 -11
  53. package/lib/Store/make-cache-manager-store.d.ts +1 -2
  54. package/lib/Store/make-in-memory-store.d.ts +2 -2
  55. package/lib/Store/make-in-memory-store.js +1 -5
  56. package/lib/Store/make-ordered-dictionary.js +2 -2
  57. package/lib/Types/Auth.d.ts +1 -0
  58. package/lib/Types/Call.d.ts +1 -1
  59. package/lib/Types/Chat.d.ts +7 -12
  60. package/lib/Types/Events.d.ts +2 -17
  61. package/lib/Types/GroupMetadata.d.ts +2 -3
  62. package/lib/Types/Label.d.ts +0 -11
  63. package/lib/Types/Label.js +1 -1
  64. package/lib/Types/LabelAssociation.js +1 -1
  65. package/lib/Types/Message.d.ts +10 -170
  66. package/lib/Types/Newsletter.d.ts +97 -86
  67. package/lib/Types/Newsletter.js +38 -32
  68. package/lib/Types/Socket.d.ts +2 -7
  69. package/lib/Types/index.d.ts +0 -9
  70. package/lib/Types/index.js +1 -1
  71. package/lib/Utils/auth-utils.js +14 -35
  72. package/lib/Utils/business.d.ts +1 -1
  73. package/lib/Utils/business.js +2 -2
  74. package/lib/Utils/chat-utils.d.ts +12 -11
  75. package/lib/Utils/chat-utils.js +36 -52
  76. package/lib/Utils/crypto.d.ts +16 -15
  77. package/lib/Utils/crypto.js +26 -74
  78. package/lib/Utils/decode-wa-message.d.ts +0 -17
  79. package/lib/Utils/decode-wa-message.js +17 -53
  80. package/lib/Utils/event-buffer.js +7 -10
  81. package/lib/Utils/generics.d.ts +17 -13
  82. package/lib/Utils/generics.js +79 -58
  83. package/lib/Utils/history.d.ts +2 -6
  84. package/lib/Utils/history.js +6 -4
  85. package/lib/Utils/logger.d.ts +3 -1
  86. package/lib/Utils/lt-hash.js +12 -12
  87. package/lib/Utils/make-mutex.d.ts +2 -2
  88. package/lib/Utils/messages-media.d.ts +28 -25
  89. package/lib/Utils/messages-media.js +733 -557
  90. package/lib/Utils/messages.js +68 -473
  91. package/lib/Utils/noise-handler.d.ts +5 -4
  92. package/lib/Utils/noise-handler.js +14 -19
  93. package/lib/Utils/process-message.d.ts +5 -5
  94. package/lib/Utils/process-message.js +23 -75
  95. package/lib/Utils/signal.d.ts +1 -2
  96. package/lib/Utils/signal.js +26 -32
  97. package/lib/Utils/use-multi-file-auth-state.d.ts +1 -0
  98. package/lib/Utils/use-multi-file-auth-state.js +66 -242
  99. package/lib/Utils/validate-connection.d.ts +1 -1
  100. package/lib/Utils/validate-connection.js +88 -64
  101. package/lib/WABinary/constants.d.ts +27 -24
  102. package/lib/WABinary/decode.d.ts +2 -1
  103. package/lib/WABinary/decode.js +11 -23
  104. package/lib/WABinary/encode.d.ts +2 -1
  105. package/lib/WABinary/encode.js +147 -134
  106. package/lib/WABinary/generic-utils.d.ts +5 -2
  107. package/lib/WABinary/generic-utils.js +125 -37
  108. package/lib/WABinary/jid-utils.d.ts +1 -1
  109. package/lib/WAM/BinaryInfo.d.ts +11 -2
  110. package/lib/WAM/encode.d.ts +2 -1
  111. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +3 -3
  112. package/lib/WAUSync/USyncUser.d.ts +2 -0
  113. package/lib/index.d.ts +12 -0
  114. package/lib/index.js +64 -1
  115. package/package.json +113 -51
  116. package/WAProto/GenerateStatics.sh +0 -4
  117. package/WAProto/WAProto.proto +0 -4357
  118. package/WAProto/index.d.ts +0 -50383
  119. package/WASignalGroup/GroupProtocol.js +0 -1697
  120. package/WASignalGroup/ciphertext_message.js +0 -16
  121. package/WASignalGroup/generate-proto.sh +0 -1
  122. package/WASignalGroup/group.proto +0 -42
  123. package/WASignalGroup/group_cipher.js +0 -120
  124. package/WASignalGroup/group_session_builder.js +0 -46
  125. package/WASignalGroup/index.js +0 -5
  126. package/WASignalGroup/keyhelper.js +0 -21
  127. package/WASignalGroup/protobufs.js +0 -3
  128. package/WASignalGroup/queue_job.js +0 -69
  129. package/WASignalGroup/sender_chain_key.js +0 -50
  130. package/WASignalGroup/sender_key_distribution_message.js +0 -78
  131. package/WASignalGroup/sender_key_message.js +0 -92
  132. package/WASignalGroup/sender_key_name.js +0 -70
  133. package/WASignalGroup/sender_key_record.js +0 -56
  134. package/WASignalGroup/sender_key_state.js +0 -129
  135. package/lib/Utils/use-single-file-auth-state.d.ts +0 -12
  136. package/lib/Utils/use-single-file-auth-state.js +0 -75
  137. package/src/Defaults/baileys-version.json +0 -3
  138. package/src/Defaults/index.ts +0 -133
  139. package/src/Signal/Group/ciphertext-message.ts +0 -9
  140. package/src/Signal/Group/group-session-builder.ts +0 -56
  141. package/src/Signal/Group/group_cipher.ts +0 -117
  142. package/src/Signal/Group/index.ts +0 -11
  143. package/src/Signal/Group/keyhelper.ts +0 -28
  144. package/src/Signal/Group/sender-chain-key.ts +0 -34
  145. package/src/Signal/Group/sender-key-distribution-message.ts +0 -95
  146. package/src/Signal/Group/sender-key-message.ts +0 -96
  147. package/src/Signal/Group/sender-key-name.ts +0 -66
  148. package/src/Signal/Group/sender-key-record.ts +0 -69
  149. package/src/Signal/Group/sender-key-state.ts +0 -134
  150. package/src/Signal/Group/sender-message-key.ts +0 -36
  151. package/src/Signal/libsignal.ts +0 -447
  152. package/src/Signal/lid-mapping.ts +0 -209
  153. package/src/Socket/Client/index.ts +0 -2
  154. package/src/Socket/Client/types.ts +0 -22
  155. package/src/Socket/Client/websocket.ts +0 -56
  156. package/src/Socket/business.ts +0 -421
  157. package/src/Socket/chats.ts +0 -1223
  158. package/src/Socket/communities.ts +0 -477
  159. package/src/Socket/groups.ts +0 -361
  160. package/src/Socket/index.ts +0 -22
  161. package/src/Socket/messages-recv.ts +0 -1563
  162. package/src/Socket/messages-send.ts +0 -1210
  163. package/src/Socket/mex.ts +0 -58
  164. package/src/Socket/newsletter.ts +0 -229
  165. package/src/Socket/socket.ts +0 -1072
  166. package/src/Types/Auth.ts +0 -115
  167. package/src/Types/Bussines.ts +0 -20
  168. package/src/Types/Call.ts +0 -14
  169. package/src/Types/Chat.ts +0 -138
  170. package/src/Types/Contact.ts +0 -24
  171. package/src/Types/Events.ts +0 -132
  172. package/src/Types/GroupMetadata.ts +0 -70
  173. package/src/Types/Label.ts +0 -48
  174. package/src/Types/LabelAssociation.ts +0 -35
  175. package/src/Types/Message.ts +0 -424
  176. package/src/Types/Newsletter.ts +0 -98
  177. package/src/Types/Product.ts +0 -85
  178. package/src/Types/Signal.ts +0 -76
  179. package/src/Types/Socket.ts +0 -150
  180. package/src/Types/State.ts +0 -43
  181. package/src/Types/USync.ts +0 -27
  182. package/src/Types/globals.d.ts +0 -8
  183. package/src/Types/index.ts +0 -67
  184. package/src/Utils/auth-utils.ts +0 -331
  185. package/src/Utils/browser-utils.ts +0 -31
  186. package/src/Utils/business.ts +0 -286
  187. package/src/Utils/chat-utils.ts +0 -933
  188. package/src/Utils/crypto.ts +0 -184
  189. package/src/Utils/decode-wa-message.ts +0 -355
  190. package/src/Utils/event-buffer.ts +0 -662
  191. package/src/Utils/generics.ts +0 -470
  192. package/src/Utils/history.ts +0 -114
  193. package/src/Utils/index.ts +0 -18
  194. package/src/Utils/link-preview.ts +0 -111
  195. package/src/Utils/logger.ts +0 -13
  196. package/src/Utils/lt-hash.ts +0 -65
  197. package/src/Utils/make-mutex.ts +0 -45
  198. package/src/Utils/message-retry-manager.ts +0 -229
  199. package/src/Utils/messages-media.ts +0 -820
  200. package/src/Utils/messages.ts +0 -1137
  201. package/src/Utils/noise-handler.ts +0 -192
  202. package/src/Utils/pre-key-manager.ts +0 -126
  203. package/src/Utils/process-message.ts +0 -622
  204. package/src/Utils/signal.ts +0 -214
  205. package/src/Utils/use-multi-file-auth-state.ts +0 -136
  206. package/src/Utils/validate-connection.ts +0 -253
  207. package/src/WABinary/constants.ts +0 -1305
  208. package/src/WABinary/decode.ts +0 -281
  209. package/src/WABinary/encode.ts +0 -253
  210. package/src/WABinary/generic-utils.ts +0 -127
  211. package/src/WABinary/index.ts +0 -5
  212. package/src/WABinary/jid-utils.ts +0 -128
  213. package/src/WABinary/types.ts +0 -17
  214. package/src/WAM/BinaryInfo.ts +0 -12
  215. package/src/WAM/constants.ts +0 -22889
  216. package/src/WAM/encode.ts +0 -169
  217. package/src/WAM/index.ts +0 -3
  218. package/src/WAUSync/Protocols/USyncContactProtocol.ts +0 -32
  219. package/src/WAUSync/Protocols/USyncDeviceProtocol.ts +0 -78
  220. package/src/WAUSync/Protocols/USyncDisappearingModeProtocol.ts +0 -35
  221. package/src/WAUSync/Protocols/USyncStatusProtocol.ts +0 -44
  222. package/src/WAUSync/Protocols/UsyncBotProfileProtocol.ts +0 -76
  223. package/src/WAUSync/Protocols/UsyncLIDProtocol.ts +0 -33
  224. package/src/WAUSync/Protocols/index.ts +0 -4
  225. package/src/WAUSync/USyncQuery.ts +0 -133
  226. package/src/WAUSync/USyncUser.ts +0 -32
  227. package/src/WAUSync/index.ts +0 -3
  228. package/src/index.ts +0 -13
@@ -1,281 +0,0 @@
1
- import { promisify } from 'util'
2
- import { inflate } from 'zlib'
3
- import * as constants from './constants'
4
- import { jidEncode, type JidServer, WAJIDDomains } from './jid-utils'
5
- import type { BinaryNode, BinaryNodeCodingOptions } from './types'
6
-
7
- const inflatePromise = promisify(inflate)
8
-
9
- export const decompressingIfRequired = async (buffer: Buffer) => {
10
- if (2 & buffer.readUInt8()) {
11
- buffer = await inflatePromise(buffer.slice(1))
12
- } else {
13
- // nodes with no compression have a 0x00 prefix, we remove that
14
- buffer = buffer.slice(1)
15
- }
16
-
17
- return buffer
18
- }
19
-
20
- export const decodeDecompressedBinaryNode = (
21
- buffer: Buffer,
22
- opts: Pick<BinaryNodeCodingOptions, 'DOUBLE_BYTE_TOKENS' | 'SINGLE_BYTE_TOKENS' | 'TAGS'>,
23
- indexRef: { index: number } = { index: 0 }
24
- ): BinaryNode => {
25
- const { DOUBLE_BYTE_TOKENS, SINGLE_BYTE_TOKENS, TAGS } = opts
26
-
27
- const checkEOS = (length: number) => {
28
- if (indexRef.index + length > buffer.length) {
29
- throw new Error('end of stream')
30
- }
31
- }
32
-
33
- const next = () => {
34
- const value = buffer[indexRef.index]
35
- indexRef.index += 1
36
- return value
37
- }
38
-
39
- const readByte = () => {
40
- checkEOS(1)
41
- return next()
42
- }
43
-
44
- const readBytes = (n: number) => {
45
- checkEOS(n)
46
- const value = buffer.slice(indexRef.index, indexRef.index + n)
47
- indexRef.index += n
48
- return value
49
- }
50
-
51
- const readStringFromChars = (length: number) => {
52
- return readBytes(length).toString('utf-8')
53
- }
54
-
55
- const readInt = (n: number, littleEndian = false) => {
56
- checkEOS(n)
57
- let val = 0
58
- for (let i = 0; i < n; i++) {
59
- const shift = littleEndian ? i : n - 1 - i
60
- val |= next()! << (shift * 8)
61
- }
62
-
63
- return val
64
- }
65
-
66
- const readInt20 = () => {
67
- checkEOS(3)
68
- return ((next()! & 15) << 16) + (next()! << 8) + next()!
69
- }
70
-
71
- const unpackHex = (value: number) => {
72
- if (value >= 0 && value < 16) {
73
- return value < 10 ? '0'.charCodeAt(0) + value : 'A'.charCodeAt(0) + value - 10
74
- }
75
-
76
- throw new Error('invalid hex: ' + value)
77
- }
78
-
79
- const unpackNibble = (value: number) => {
80
- if (value >= 0 && value <= 9) {
81
- return '0'.charCodeAt(0) + value
82
- }
83
-
84
- switch (value) {
85
- case 10:
86
- return '-'.charCodeAt(0)
87
- case 11:
88
- return '.'.charCodeAt(0)
89
- case 15:
90
- return '\0'.charCodeAt(0)
91
- default:
92
- throw new Error('invalid nibble: ' + value)
93
- }
94
- }
95
-
96
- const unpackByte = (tag: number, value: number) => {
97
- if (tag === TAGS.NIBBLE_8) {
98
- return unpackNibble(value)
99
- } else if (tag === TAGS.HEX_8) {
100
- return unpackHex(value)
101
- } else {
102
- throw new Error('unknown tag: ' + tag)
103
- }
104
- }
105
-
106
- const readPacked8 = (tag: number) => {
107
- const startByte = readByte()!
108
- let value = ''
109
-
110
- for (let i = 0; i < (startByte & 127); i++) {
111
- const curByte = readByte()!
112
-
113
- value += String.fromCharCode(unpackByte(tag, (curByte & 0xf0) >> 4))
114
- value += String.fromCharCode(unpackByte(tag, curByte & 0x0f))
115
- }
116
-
117
- if (startByte >> 7 !== 0) {
118
- value = value.slice(0, -1)
119
- }
120
-
121
- return value
122
- }
123
-
124
- const isListTag = (tag: number) => {
125
- return tag === TAGS.LIST_EMPTY || tag === TAGS.LIST_8 || tag === TAGS.LIST_16
126
- }
127
-
128
- const readListSize = (tag: number) => {
129
- switch (tag) {
130
- case TAGS.LIST_EMPTY:
131
- return 0
132
- case TAGS.LIST_8:
133
- return readByte()
134
- case TAGS.LIST_16:
135
- return readInt(2)
136
- default:
137
- throw new Error('invalid tag for list size: ' + tag)
138
- }
139
- }
140
-
141
- const readJidPair = () => {
142
- const i = readString(readByte()!)
143
- const j = readString(readByte()!)
144
- if (j) {
145
- return (i || '') + '@' + j
146
- }
147
-
148
- throw new Error('invalid jid pair: ' + i + ', ' + j)
149
- }
150
-
151
- const readAdJid = () => {
152
- const rawDomainType = readByte()
153
- const domainType = Number(rawDomainType)
154
-
155
- const device = readByte()
156
- const user = readString(readByte()!)
157
-
158
- let server: JidServer = 's.whatsapp.net' // default whatsapp server
159
- if (domainType === WAJIDDomains.LID) {
160
- server = 'lid'
161
- } else if (domainType === WAJIDDomains.HOSTED) {
162
- server = 'hosted'
163
- } else if (domainType === WAJIDDomains.HOSTED_LID) {
164
- server = 'hosted.lid'
165
- }
166
-
167
- return jidEncode(user, server, device)
168
- }
169
-
170
- const readString = (tag: number): string => {
171
- if (tag >= 1 && tag < SINGLE_BYTE_TOKENS.length) {
172
- return SINGLE_BYTE_TOKENS[tag] || ''
173
- }
174
-
175
- switch (tag) {
176
- case TAGS.DICTIONARY_0:
177
- case TAGS.DICTIONARY_1:
178
- case TAGS.DICTIONARY_2:
179
- case TAGS.DICTIONARY_3:
180
- return getTokenDouble(tag - TAGS.DICTIONARY_0, readByte()!)
181
- case TAGS.LIST_EMPTY:
182
- return ''
183
- case TAGS.BINARY_8:
184
- return readStringFromChars(readByte()!)
185
- case TAGS.BINARY_20:
186
- return readStringFromChars(readInt20())
187
- case TAGS.BINARY_32:
188
- return readStringFromChars(readInt(4))
189
- case TAGS.JID_PAIR:
190
- return readJidPair()
191
- case TAGS.AD_JID:
192
- return readAdJid()
193
- case TAGS.HEX_8:
194
- case TAGS.NIBBLE_8:
195
- return readPacked8(tag)
196
- default:
197
- throw new Error('invalid string with tag: ' + tag)
198
- }
199
- }
200
-
201
- const readList = (tag: number) => {
202
- const items: BinaryNode[] = []
203
- const size = readListSize(tag)!
204
- for (let i = 0; i < size; i++) {
205
- items.push(decodeDecompressedBinaryNode(buffer, opts, indexRef))
206
- }
207
-
208
- return items
209
- }
210
-
211
- const getTokenDouble = (index1: number, index2: number) => {
212
- const dict = DOUBLE_BYTE_TOKENS[index1]
213
- if (!dict) {
214
- throw new Error(`Invalid double token dict (${index1})`)
215
- }
216
-
217
- const value = dict[index2]
218
- if (typeof value === 'undefined') {
219
- throw new Error(`Invalid double token (${index2})`)
220
- }
221
-
222
- return value
223
- }
224
-
225
- const listSize = readListSize(readByte()!)
226
- const header = readString(readByte()!)
227
- if (!listSize || !header.length) {
228
- throw new Error('invalid node')
229
- }
230
-
231
- const attrs: BinaryNode['attrs'] = {}
232
- let data: BinaryNode['content']
233
- if (listSize === 0 || !header) {
234
- throw new Error('invalid node')
235
- }
236
-
237
- // read the attributes in
238
- const attributesLength = (listSize - 1) >> 1
239
- for (let i = 0; i < attributesLength; i++) {
240
- const key = readString(readByte()!)
241
- const value = readString(readByte()!)
242
-
243
- attrs[key] = value
244
- }
245
-
246
- if (listSize % 2 === 0) {
247
- const tag = readByte()!
248
- if (isListTag(tag)) {
249
- data = readList(tag)
250
- } else {
251
- let decoded: Buffer | string
252
- switch (tag) {
253
- case TAGS.BINARY_8:
254
- decoded = readBytes(readByte()!)
255
- break
256
- case TAGS.BINARY_20:
257
- decoded = readBytes(readInt20())
258
- break
259
- case TAGS.BINARY_32:
260
- decoded = readBytes(readInt(4))
261
- break
262
- default:
263
- decoded = readString(tag)
264
- break
265
- }
266
-
267
- data = decoded
268
- }
269
- }
270
-
271
- return {
272
- tag: header,
273
- attrs,
274
- content: data
275
- }
276
- }
277
-
278
- export const decodeBinaryNode = async (buff: Buffer): Promise<BinaryNode> => {
279
- const decompBuff = await decompressingIfRequired(buff)
280
- return decodeDecompressedBinaryNode(decompBuff, constants)
281
- }
@@ -1,253 +0,0 @@
1
- import * as constants from './constants'
2
- import { type FullJid, jidDecode } from './jid-utils'
3
- import type { BinaryNode, BinaryNodeCodingOptions } from './types'
4
-
5
- export const encodeBinaryNode = (
6
- node: BinaryNode,
7
- opts: Pick<BinaryNodeCodingOptions, 'TAGS' | 'TOKEN_MAP'> = constants,
8
- buffer: number[] = [0]
9
- ): Buffer => {
10
- const encoded = encodeBinaryNodeInner(node, opts, buffer)
11
- return Buffer.from(encoded)
12
- }
13
-
14
- const encodeBinaryNodeInner = (
15
- { tag, attrs, content }: BinaryNode,
16
- opts: Pick<BinaryNodeCodingOptions, 'TAGS' | 'TOKEN_MAP'>,
17
- buffer: number[]
18
- ): number[] => {
19
- const { TAGS, TOKEN_MAP } = opts
20
-
21
- const pushByte = (value: number) => buffer.push(value & 0xff)
22
-
23
- const pushInt = (value: number, n: number, littleEndian = false) => {
24
- for (let i = 0; i < n; i++) {
25
- const curShift = littleEndian ? i : n - 1 - i
26
- buffer.push((value >> (curShift * 8)) & 0xff)
27
- }
28
- }
29
-
30
- const pushBytes = (bytes: Uint8Array | Buffer | number[]) => {
31
- for (const b of bytes) {
32
- buffer.push(b)
33
- }
34
- }
35
-
36
- const pushInt16 = (value: number) => {
37
- pushBytes([(value >> 8) & 0xff, value & 0xff])
38
- }
39
-
40
- const pushInt20 = (value: number) => pushBytes([(value >> 16) & 0x0f, (value >> 8) & 0xff, value & 0xff])
41
- const writeByteLength = (length: number) => {
42
- if (length >= 4294967296) {
43
- throw new Error('string too large to encode: ' + length)
44
- }
45
-
46
- if (length >= 1 << 20) {
47
- pushByte(TAGS.BINARY_32)
48
- pushInt(length, 4) // 32 bit integer
49
- } else if (length >= 256) {
50
- pushByte(TAGS.BINARY_20)
51
- pushInt20(length)
52
- } else {
53
- pushByte(TAGS.BINARY_8)
54
- pushByte(length)
55
- }
56
- }
57
-
58
- const writeStringRaw = (str: string) => {
59
- const bytes = Buffer.from(str, 'utf-8')
60
- writeByteLength(bytes.length)
61
- pushBytes(bytes)
62
- }
63
-
64
- const writeJid = ({ domainType, device, user, server }: FullJid) => {
65
- if (typeof device !== 'undefined') {
66
- pushByte(TAGS.AD_JID)
67
- pushByte(domainType || 0)
68
- pushByte(device || 0)
69
- writeString(user)
70
- } else {
71
- pushByte(TAGS.JID_PAIR)
72
- if (user.length) {
73
- writeString(user)
74
- } else {
75
- pushByte(TAGS.LIST_EMPTY)
76
- }
77
-
78
- writeString(server)
79
- }
80
- }
81
-
82
- const packNibble = (char: string) => {
83
- switch (char) {
84
- case '-':
85
- return 10
86
- case '.':
87
- return 11
88
- case '\0':
89
- return 15
90
- default:
91
- if (char >= '0' && char <= '9') {
92
- return char.charCodeAt(0) - '0'.charCodeAt(0)
93
- }
94
-
95
- throw new Error(`invalid byte for nibble "${char}"`)
96
- }
97
- }
98
-
99
- const packHex = (char: string) => {
100
- if (char >= '0' && char <= '9') {
101
- return char.charCodeAt(0) - '0'.charCodeAt(0)
102
- }
103
-
104
- if (char >= 'A' && char <= 'F') {
105
- return 10 + char.charCodeAt(0) - 'A'.charCodeAt(0)
106
- }
107
-
108
- if (char >= 'a' && char <= 'f') {
109
- return 10 + char.charCodeAt(0) - 'a'.charCodeAt(0)
110
- }
111
-
112
- if (char === '\0') {
113
- return 15
114
- }
115
-
116
- throw new Error(`Invalid hex char "${char}"`)
117
- }
118
-
119
- const writePackedBytes = (str: string, type: 'nibble' | 'hex') => {
120
- if (str.length > TAGS.PACKED_MAX) {
121
- throw new Error('Too many bytes to pack')
122
- }
123
-
124
- pushByte(type === 'nibble' ? TAGS.NIBBLE_8 : TAGS.HEX_8)
125
-
126
- let roundedLength = Math.ceil(str.length / 2.0)
127
- if (str.length % 2 !== 0) {
128
- roundedLength |= 128
129
- }
130
-
131
- pushByte(roundedLength)
132
- const packFunction = type === 'nibble' ? packNibble : packHex
133
-
134
- const packBytePair = (v1: string, v2: string) => {
135
- const result = (packFunction(v1) << 4) | packFunction(v2)
136
- return result
137
- }
138
-
139
- const strLengthHalf = Math.floor(str.length / 2)
140
- for (let i = 0; i < strLengthHalf; i++) {
141
- pushByte(packBytePair(str[2 * i]!, str[2 * i + 1]!))
142
- }
143
-
144
- if (str.length % 2 !== 0) {
145
- pushByte(packBytePair(str[str.length - 1]!, '\x00'))
146
- }
147
- }
148
-
149
- const isNibble = (str?: string) => {
150
- if (!str || str.length > TAGS.PACKED_MAX) {
151
- return false
152
- }
153
-
154
- for (const char of str) {
155
- const isInNibbleRange = char >= '0' && char <= '9'
156
- if (!isInNibbleRange && char !== '-' && char !== '.') {
157
- return false
158
- }
159
- }
160
-
161
- return true
162
- }
163
-
164
- const isHex = (str?: string) => {
165
- if (!str || str.length > TAGS.PACKED_MAX) {
166
- return false
167
- }
168
-
169
- for (const char of str) {
170
- const isInNibbleRange = char >= '0' && char <= '9'
171
- if (!isInNibbleRange && !(char >= 'A' && char <= 'F')) {
172
- return false
173
- }
174
- }
175
-
176
- return true
177
- }
178
-
179
- const writeString = (str?: string) => {
180
- if (str === undefined || str === null) {
181
- pushByte(TAGS.LIST_EMPTY)
182
- return
183
- }
184
-
185
- const tokenIndex = TOKEN_MAP[str]
186
- if (tokenIndex) {
187
- if (typeof tokenIndex.dict === 'number') {
188
- pushByte(TAGS.DICTIONARY_0 + tokenIndex.dict)
189
- }
190
-
191
- pushByte(tokenIndex.index)
192
- } else if (isNibble(str)) {
193
- writePackedBytes(str, 'nibble')
194
- } else if (isHex(str)) {
195
- writePackedBytes(str, 'hex')
196
- } else if (str) {
197
- const decodedJid = jidDecode(str)
198
- if (decodedJid) {
199
- writeJid(decodedJid)
200
- } else {
201
- writeStringRaw(str)
202
- }
203
- }
204
- }
205
-
206
- const writeListStart = (listSize: number) => {
207
- if (listSize === 0) {
208
- pushByte(TAGS.LIST_EMPTY)
209
- } else if (listSize < 256) {
210
- pushBytes([TAGS.LIST_8, listSize])
211
- } else {
212
- pushByte(TAGS.LIST_16)
213
- pushInt16(listSize)
214
- }
215
- }
216
-
217
- if (!tag) {
218
- throw new Error('Invalid node: tag cannot be undefined')
219
- }
220
-
221
- const validAttributes = Object.keys(attrs || {}).filter(k => typeof attrs[k] !== 'undefined' && attrs[k] !== null)
222
-
223
- writeListStart(2 * validAttributes.length + 1 + (typeof content !== 'undefined' ? 1 : 0))
224
- writeString(tag)
225
-
226
- for (const key of validAttributes) {
227
- if (typeof attrs[key] === 'string') {
228
- writeString(key)
229
- writeString(attrs[key])
230
- }
231
- }
232
-
233
- if (typeof content === 'string') {
234
- writeString(content)
235
- } else if (Buffer.isBuffer(content) || content instanceof Uint8Array) {
236
- writeByteLength(content.length)
237
- pushBytes(content)
238
- } else if (Array.isArray(content)) {
239
- const validContent = content.filter(
240
- item => item && (item.tag || Buffer.isBuffer(item) || item instanceof Uint8Array || typeof item === 'string')
241
- )
242
- writeListStart(validContent.length)
243
- for (const item of validContent) {
244
- encodeBinaryNodeInner(item, opts, buffer)
245
- }
246
- } else if (typeof content === 'undefined') {
247
- // do nothing
248
- } else {
249
- throw new Error(`invalid children for header "${tag}": ${content} (${typeof content})`)
250
- }
251
-
252
- return buffer
253
- }
@@ -1,127 +0,0 @@
1
- import { Boom } from '@hapi/boom'
2
- import { proto } from '../../WAProto/index.js'
3
- import { type BinaryNode } from './types'
4
-
5
- // some extra useful utilities
6
-
7
- export const getBinaryNodeChildren = (node: BinaryNode | undefined, childTag: string) => {
8
- if (Array.isArray(node?.content)) {
9
- return node.content.filter(item => item.tag === childTag)
10
- }
11
-
12
- return []
13
- }
14
-
15
- export const getAllBinaryNodeChildren = ({ content }: BinaryNode) => {
16
- if (Array.isArray(content)) {
17
- return content
18
- }
19
-
20
- return []
21
- }
22
-
23
- export const getBinaryNodeChild = (node: BinaryNode | undefined, childTag: string) => {
24
- if (Array.isArray(node?.content)) {
25
- return node?.content.find(item => item.tag === childTag)
26
- }
27
- }
28
-
29
- export const getBinaryNodeChildBuffer = (node: BinaryNode | undefined, childTag: string) => {
30
- const child = getBinaryNodeChild(node, childTag)?.content
31
- if (Buffer.isBuffer(child) || child instanceof Uint8Array) {
32
- return child
33
- }
34
- }
35
-
36
- export const getBinaryNodeChildString = (node: BinaryNode | undefined, childTag: string) => {
37
- const child = getBinaryNodeChild(node, childTag)?.content
38
- if (Buffer.isBuffer(child) || child instanceof Uint8Array) {
39
- return Buffer.from(child).toString('utf-8')
40
- } else if (typeof child === 'string') {
41
- return child
42
- }
43
- }
44
-
45
- export const getBinaryNodeChildUInt = (node: BinaryNode, childTag: string, length: number) => {
46
- const buff = getBinaryNodeChildBuffer(node, childTag)
47
- if (buff) {
48
- return bufferToUInt(buff, length)
49
- }
50
- }
51
-
52
- export const assertNodeErrorFree = (node: BinaryNode) => {
53
- const errNode = getBinaryNodeChild(node, 'error')
54
- if (errNode) {
55
- throw new Boom(errNode.attrs.text || 'Unknown error', { data: +errNode.attrs.code! })
56
- }
57
- }
58
-
59
- export const reduceBinaryNodeToDictionary = (node: BinaryNode, tag: string) => {
60
- const nodes = getBinaryNodeChildren(node, tag)
61
- const dict = nodes.reduce(
62
- (dict, { attrs }) => {
63
- if (typeof attrs.name === 'string') {
64
- dict[attrs.name] = attrs.value! || attrs.config_value!
65
- } else {
66
- dict[attrs.config_code!] = attrs.value! || attrs.config_value!
67
- }
68
-
69
- return dict
70
- },
71
- {} as { [_: string]: string }
72
- )
73
- return dict
74
- }
75
-
76
- export const getBinaryNodeMessages = ({ content }: BinaryNode) => {
77
- const msgs: proto.WebMessageInfo[] = []
78
- if (Array.isArray(content)) {
79
- for (const item of content) {
80
- if (item.tag === 'message') {
81
- msgs.push(proto.WebMessageInfo.decode(item.content as Buffer).toJSON() as proto.WebMessageInfo)
82
- }
83
- }
84
- }
85
-
86
- return msgs
87
- }
88
-
89
- function bufferToUInt(e: Uint8Array | Buffer, t: number) {
90
- let a = 0
91
- for (let i = 0; i < t; i++) {
92
- a = 256 * a + e[i]!
93
- }
94
-
95
- return a
96
- }
97
-
98
- const tabs = (n: number) => '\t'.repeat(n)
99
-
100
- export function binaryNodeToString(node: BinaryNode | BinaryNode['content'], i = 0): string {
101
- if (!node) {
102
- return node!
103
- }
104
-
105
- if (typeof node === 'string') {
106
- return tabs(i) + node
107
- }
108
-
109
- if (node instanceof Uint8Array) {
110
- return tabs(i) + Buffer.from(node).toString('hex')
111
- }
112
-
113
- if (Array.isArray(node)) {
114
- return node.map(x => tabs(i + 1) + binaryNodeToString(x, i + 1)).join('\n')
115
- }
116
-
117
- const children = binaryNodeToString(node.content, i + 1)
118
-
119
- const tag = `<${node.tag} ${Object.entries(node.attrs || {})
120
- .filter(([, v]) => v !== undefined)
121
- .map(([k, v]) => `${k}='${v}'`)
122
- .join(' ')}`
123
-
124
- const content: string = children ? `>\n${children}\n${tabs(i)}</${node.tag}>` : '/>'
125
-
126
- return tag + content
127
- }
@@ -1,5 +0,0 @@
1
- export * from './encode'
2
- export * from './decode'
3
- export * from './generic-utils'
4
- export * from './jid-utils'
5
- export * from './types'