@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,142 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.encodeWAM = void 0
4
+ const constants_1 = require('./constants')
5
+ const getHeaderBitLength = key => (key < 256 ? 2 : 3)
6
+ const encodeWAM = binaryInfo => {
7
+ binaryInfo.buffer = []
8
+ encodeWAMHeader(binaryInfo)
9
+ encodeEvents(binaryInfo)
10
+ const totalSize = binaryInfo.buffer.map(a => a.length).reduce((a, b) => a + b)
11
+ const buffer = Buffer.alloc(totalSize)
12
+ let offset = 0
13
+ for (const buffer_ of binaryInfo.buffer) {
14
+ buffer_.copy(buffer, offset)
15
+ offset += buffer_.length
16
+ }
17
+ return buffer
18
+ }
19
+ exports.encodeWAM = encodeWAM
20
+ function encodeWAMHeader(binaryInfo) {
21
+ const headerBuffer = Buffer.alloc(8) // starting buffer
22
+ headerBuffer.write('WAM', 0, 'utf8')
23
+ headerBuffer.writeUInt8(binaryInfo.protocolVersion, 3)
24
+ headerBuffer.writeUInt8(1, 4) //random flag
25
+ headerBuffer.writeUInt16BE(binaryInfo.sequence, 5)
26
+ headerBuffer.writeUInt8(0, 7) // regular channel
27
+ binaryInfo.buffer.push(headerBuffer)
28
+ }
29
+ function encodeGlobalAttributes(binaryInfo, globals) {
30
+ for (const [key, _value] of Object.entries(globals)) {
31
+ const id = constants_1.WEB_GLOBALS.find(a => a?.name === key).id
32
+ let value = _value
33
+ if (typeof value === 'boolean') {
34
+ value = value ? 1 : 0
35
+ }
36
+ binaryInfo.buffer.push(serializeData(id, value, constants_1.FLAG_GLOBAL))
37
+ }
38
+ }
39
+ function encodeEvents(binaryInfo) {
40
+ for (const [name, { props, globals }] of binaryInfo.events.map(a => Object.entries(a)[0])) {
41
+ encodeGlobalAttributes(binaryInfo, globals)
42
+ const event = constants_1.WEB_EVENTS.find(a => a.name === name)
43
+ const props_ = Object.entries(props)
44
+ let extended = false
45
+ for (const [, value] of props_) {
46
+ extended || (extended = value !== null)
47
+ }
48
+ const eventFlag = extended ? constants_1.FLAG_EVENT : constants_1.FLAG_EVENT | constants_1.FLAG_EXTENDED
49
+ binaryInfo.buffer.push(serializeData(event.id, -event.weight, eventFlag))
50
+ for (let i = 0; i < props_.length; i++) {
51
+ const [key, _value] = props_[i]
52
+ const id = event.props[key]?.[0]
53
+ extended = i < props_.length - 1
54
+ let value = _value
55
+ if (typeof value === 'boolean') {
56
+ value = value ? 1 : 0
57
+ }
58
+ const fieldFlag = extended ? constants_1.FLAG_EVENT : constants_1.FLAG_FIELD | constants_1.FLAG_EXTENDED
59
+ binaryInfo.buffer.push(serializeData(id, value, fieldFlag))
60
+ }
61
+ }
62
+ }
63
+ function serializeData(key, value, flag) {
64
+ const bufferLength = getHeaderBitLength(key)
65
+ let buffer
66
+ let offset = 0
67
+ if (value === null) {
68
+ if (flag === constants_1.FLAG_GLOBAL) {
69
+ buffer = Buffer.alloc(bufferLength)
70
+ offset = serializeHeader(buffer, offset, key, flag)
71
+ return buffer
72
+ }
73
+ } else if (typeof value === 'number' && Number.isInteger(value)) {
74
+ // is number
75
+ if (value === 0 || value === 1) {
76
+ buffer = Buffer.alloc(bufferLength)
77
+ offset = serializeHeader(buffer, offset, key, flag | ((value + 1) << 4))
78
+ return buffer
79
+ } else if (-128 <= value && value < 128) {
80
+ buffer = Buffer.alloc(bufferLength + 1)
81
+ offset = serializeHeader(buffer, offset, key, flag | (3 << 4))
82
+ buffer.writeInt8(value, offset)
83
+ return buffer
84
+ } else if (-32768 <= value && value < 32768) {
85
+ buffer = Buffer.alloc(bufferLength + 2)
86
+ offset = serializeHeader(buffer, offset, key, flag | (4 << 4))
87
+ buffer.writeInt16LE(value, offset)
88
+ return buffer
89
+ } else if (-2147483648 <= value && value < 2147483648) {
90
+ buffer = Buffer.alloc(bufferLength + 4)
91
+ offset = serializeHeader(buffer, offset, key, flag | (5 << 4))
92
+ buffer.writeInt32LE(value, offset)
93
+ return buffer
94
+ } else {
95
+ buffer = Buffer.alloc(bufferLength + 8)
96
+ offset = serializeHeader(buffer, offset, key, flag | (7 << 4))
97
+ buffer.writeDoubleLE(value, offset)
98
+ return buffer
99
+ }
100
+ } else if (typeof value === 'number') {
101
+ // is float
102
+ buffer = Buffer.alloc(bufferLength + 8)
103
+ offset = serializeHeader(buffer, offset, key, flag | (7 << 4))
104
+ buffer.writeDoubleLE(value, offset)
105
+ return buffer
106
+ } else if (typeof value === 'string') {
107
+ // is string
108
+ const utf8Bytes = Buffer.byteLength(value, 'utf8')
109
+ if (utf8Bytes < 256) {
110
+ buffer = Buffer.alloc(bufferLength + 1 + utf8Bytes)
111
+ offset = serializeHeader(buffer, offset, key, flag | (8 << 4))
112
+ buffer.writeUint8(utf8Bytes, offset++)
113
+ } else if (utf8Bytes < 65536) {
114
+ buffer = Buffer.alloc(bufferLength + 2 + utf8Bytes)
115
+ offset = serializeHeader(buffer, offset, key, flag | (9 << 4))
116
+ buffer.writeUInt16LE(utf8Bytes, offset)
117
+ offset += 2
118
+ } else {
119
+ buffer = Buffer.alloc(bufferLength + 4 + utf8Bytes)
120
+ offset = serializeHeader(buffer, offset, key, flag | (10 << 4))
121
+ buffer.writeUInt32LE(utf8Bytes, offset)
122
+ offset += 4
123
+ }
124
+ buffer.write(value, offset, 'utf8')
125
+ return buffer
126
+ }
127
+ throw new Error(`WAM serializeData: unsupported value type ${typeof value} for key ${key}`)
128
+ }
129
+ function serializeHeader(buffer, offset, key, flag) {
130
+ if (key < 256) {
131
+ buffer.writeUInt8(flag, offset)
132
+ offset += 1
133
+ buffer.writeUInt8(key, offset)
134
+ offset += 1
135
+ } else {
136
+ buffer.writeUInt8(flag | constants_1.FLAG_BYTE, offset)
137
+ offset += 1
138
+ buffer.writeUInt16LE(key, offset)
139
+ offset += 2
140
+ }
141
+ return offset
142
+ }
@@ -0,0 +1,31 @@
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('./constants'), exports)
30
+ __exportStar(require('./encode'), exports)
31
+ __exportStar(require('./BinaryInfo'), exports)
@@ -0,0 +1,55 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncBotProfileProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncBotProfileProtocol {
6
+ constructor() {
7
+ this.name = 'bot'
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: 'bot',
12
+ attrs: {},
13
+ content: [{ tag: 'profile', attrs: { v: '1' } }]
14
+ }
15
+ }
16
+ getUserElement(user) {
17
+ return {
18
+ tag: 'bot',
19
+ attrs: {},
20
+ content: [{ tag: 'profile', attrs: { persona_id: user.personaId } }]
21
+ }
22
+ }
23
+ parser(node) {
24
+ const botNode = (0, WABinary_1.getBinaryNodeChild)(node, 'bot')
25
+ const profile = (0, WABinary_1.getBinaryNodeChild)(botNode, 'profile')
26
+ const commandsNode = (0, WABinary_1.getBinaryNodeChild)(profile, 'commands')
27
+ const promptsNode = (0, WABinary_1.getBinaryNodeChild)(profile, 'prompts')
28
+ const commands = []
29
+ const prompts = []
30
+ for (const command of (0, WABinary_1.getBinaryNodeChildren)(commandsNode, 'command')) {
31
+ commands.push({
32
+ name: (0, WABinary_1.getBinaryNodeChildString)(command, 'name'),
33
+ description: (0, WABinary_1.getBinaryNodeChildString)(command, 'description')
34
+ })
35
+ }
36
+ for (const prompt of (0, WABinary_1.getBinaryNodeChildren)(promptsNode, 'prompt')) {
37
+ prompts.push(
38
+ `${(0, WABinary_1.getBinaryNodeChildString)(prompt, 'emoji')} ${(0, WABinary_1.getBinaryNodeChildString)(prompt, 'text')}`
39
+ )
40
+ }
41
+ return {
42
+ isDefault: !!(0, WABinary_1.getBinaryNodeChild)(profile, 'default'),
43
+ jid: node.attrs.jid,
44
+ name: (0, WABinary_1.getBinaryNodeChildString)(profile, 'name'),
45
+ attributes: (0, WABinary_1.getBinaryNodeChildString)(profile, 'attributes'),
46
+ description: (0, WABinary_1.getBinaryNodeChildString)(profile, 'description'),
47
+ category: (0, WABinary_1.getBinaryNodeChildString)(profile, 'category'),
48
+ personaId: profile.attrs['persona_id'],
49
+ commandsDescription: (0, WABinary_1.getBinaryNodeChildString)(commandsNode, 'description'),
50
+ commands,
51
+ prompts
52
+ }
53
+ }
54
+ }
55
+ exports.USyncBotProfileProtocol = USyncBotProfileProtocol
@@ -0,0 +1,100 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncBusinessProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncBusinessProtocol {
6
+ constructor(profileVersion = '2') {
7
+ this.name = 'business'
8
+ this.profileVersion = profileVersion
9
+ }
10
+ getQueryElement() {
11
+ return {
12
+ tag: 'business',
13
+ attrs: {},
14
+ content: [
15
+ { tag: 'verified_name', attrs: {} },
16
+ { tag: 'profile', attrs: { v: this.profileVersion } }
17
+ ]
18
+ }
19
+ }
20
+ getUserElement(user) {
21
+ const children = []
22
+ if (user.verifiedNameSerial) {
23
+ children.push({ tag: 'verified_name', attrs: { serial: user.verifiedNameSerial } })
24
+ }
25
+ if (user.businessProfileTag) {
26
+ children.push({ tag: 'profile', attrs: { tag: user.businessProfileTag } })
27
+ }
28
+ return children.length > 0 ? { tag: 'business', attrs: {}, content: children } : null
29
+ }
30
+ parser(node) {
31
+ if (node.tag !== 'business') return null
32
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
33
+ const verifiedNameNode = (0, WABinary_1.getBinaryNodeChild)(node, 'verified_name')
34
+ const profileNode = (0, WABinary_1.getBinaryNodeChild)(node, 'profile')
35
+
36
+ // Business hours: profile may contain a business_hours child with business_hours_config children
37
+ let businessHours = undefined
38
+ if (profileNode) {
39
+ const businessHoursNode = (0, WABinary_1.getBinaryNodeChild)(profileNode, 'business_hours')
40
+ if (businessHoursNode) {
41
+ const configs = (0, WABinary_1.getBinaryNodeChildren)(businessHoursNode, 'business_hours_config')
42
+ businessHours = {
43
+ timezone: businessHoursNode.attrs?.timezone ?? null,
44
+ config: configs.map(({ attrs }) => ({
45
+ dayOfWeek: attrs?.day_of_week ?? null,
46
+ openTime: attrs?.open_time ?? null,
47
+ closeTime: attrs?.close_time ?? null,
48
+ mode: attrs?.mode ?? null
49
+ }))
50
+ }
51
+ }
52
+ }
53
+
54
+ // Business address from profile child node
55
+ const addressNode = profileNode ? (0, WABinary_1.getBinaryNodeChild)(profileNode, 'address') : null
56
+ const businessAddress = addressNode?.content
57
+ ? Buffer.isBuffer(addressNode.content)
58
+ ? addressNode.content.toString()
59
+ : String(addressNode.content)
60
+ : (profileNode?.attrs?.address ?? null)
61
+
62
+ // Catalog status from profile attrs
63
+ const catalogStatus = profileNode
64
+ ? {
65
+ exists: profileNode.attrs?.catalog_exists === 'true' || profileNode.attrs?.catalog_exists === true,
66
+ sendAll: profileNode.attrs?.catalog_send_all === 'true' || profileNode.attrs?.catalog_send_all === true
67
+ }
68
+ : null
69
+
70
+ // Cart flags from profile attrs
71
+ const cartEnabled =
72
+ profileNode?.attrs?.cart_enabled !== undefined
73
+ ? profileNode.attrs.cart_enabled === 'true' || profileNode.attrs.cart_enabled === true
74
+ : null
75
+ const webCartEnabled =
76
+ profileNode?.attrs?.web_cart_enabled !== undefined
77
+ ? profileNode.attrs.web_cart_enabled === 'true' || profileNode.attrs.web_cart_enabled === true
78
+ : null
79
+ const webCartOnOff = profileNode?.attrs?.web_cart_on_off ?? null
80
+
81
+ // Commerce experience from profile attrs
82
+ const commerceExperience = profileNode?.attrs?.commerce_experience ?? null
83
+
84
+ return {
85
+ verifiedName: verifiedNameNode?.content ?? null,
86
+ verifiedLevel: verifiedNameNode?.attrs?.verified_level ?? null,
87
+ verifiedNameLevel: verifiedNameNode?.attrs?.verified_level ?? null,
88
+ profileTag: profileNode?.attrs?.tag ?? null,
89
+ pnJid: node.attrs?.pn_jid ?? null,
90
+ businessHours: businessHours ?? null,
91
+ businessAddress,
92
+ catalogStatus,
93
+ cartEnabled,
94
+ webCartEnabled,
95
+ webCartOnOff,
96
+ commerceExperience
97
+ }
98
+ }
99
+ }
100
+ exports.USyncBusinessProtocol = USyncBusinessProtocol
@@ -0,0 +1,60 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncContactProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncContactProtocol {
6
+ constructor() {
7
+ this.name = 'contact'
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: 'contact',
12
+ attrs: {}
13
+ }
14
+ }
15
+ getUserElement(user) {
16
+ if (user.phone) {
17
+ return {
18
+ tag: 'contact',
19
+ attrs: {},
20
+ content: user.phone
21
+ }
22
+ }
23
+ if (user.username) {
24
+ return {
25
+ tag: 'contact',
26
+ attrs: {
27
+ username: user.username,
28
+ ...(user.usernameKey ? { pin: user.usernameKey } : {}),
29
+ ...(user.lid ? { lid: user.lid } : {})
30
+ }
31
+ }
32
+ }
33
+ if (user.type) {
34
+ return {
35
+ tag: 'contact',
36
+ attrs: {
37
+ type: user.type
38
+ }
39
+ }
40
+ }
41
+ return {
42
+ tag: 'contact',
43
+ attrs: {}
44
+ }
45
+ }
46
+ parser(node) {
47
+ if (node.tag === 'contact') {
48
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
49
+ const inWA = node?.attrs?.type === 'in'
50
+ const restrictionType = node?.attrs?.stella_addressbook_restriction_type
51
+ if (restrictionType !== undefined) {
52
+ // Return object with extra metadata when restriction type is present
53
+ return { inWA, stellaAddressbookRestrictionType: restrictionType }
54
+ }
55
+ return inWA
56
+ }
57
+ return false
58
+ }
59
+ }
60
+ exports.USyncContactProtocol = USyncContactProtocol
@@ -0,0 +1,65 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncDeviceProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncDeviceProtocol {
6
+ constructor() {
7
+ this.name = 'devices'
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: 'devices',
12
+ attrs: {
13
+ version: '2'
14
+ }
15
+ }
16
+ }
17
+ getUserElement(user) {
18
+ const { deviceHash, ts, expectedTs } = user
19
+ if (deviceHash == null && ts == null && expectedTs == null) {
20
+ return null
21
+ }
22
+ const attrs = {}
23
+ if (deviceHash != null) attrs.device_hash = deviceHash
24
+ if (ts != null) attrs.ts = String(ts)
25
+ if (expectedTs != null) attrs.expected_ts = String(expectedTs)
26
+ return {
27
+ tag: 'devices',
28
+ attrs
29
+ }
30
+ }
31
+ parser(node) {
32
+ const deviceList = []
33
+ let keyIndex = undefined
34
+ if (node.tag === 'devices') {
35
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
36
+ const deviceListNode = (0, WABinary_1.getBinaryNodeChild)(node, 'device-list')
37
+ const keyIndexNode = (0, WABinary_1.getBinaryNodeChild)(node, 'key-index-list')
38
+ if (Array.isArray(deviceListNode?.content)) {
39
+ for (const { tag, attrs } of deviceListNode.content) {
40
+ const id = +attrs.id
41
+ const keyIndex = +attrs['key-index']
42
+ if (tag === 'device') {
43
+ deviceList.push({
44
+ id,
45
+ keyIndex,
46
+ isHosted: !!(attrs['is_hosted'] && attrs['is_hosted'] === 'true')
47
+ })
48
+ }
49
+ }
50
+ }
51
+ if (keyIndexNode?.tag === 'key-index-list') {
52
+ keyIndex = {
53
+ timestamp: +keyIndexNode.attrs['ts'],
54
+ signedKeyIndex: keyIndexNode?.content,
55
+ expectedTimestamp: keyIndexNode.attrs['expected_ts'] ? +keyIndexNode.attrs['expected_ts'] : undefined
56
+ }
57
+ }
58
+ }
59
+ return {
60
+ deviceList,
61
+ keyIndex
62
+ }
63
+ }
64
+ }
65
+ exports.USyncDeviceProtocol = USyncDeviceProtocol
@@ -0,0 +1,27 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncDisappearingModeProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncDisappearingModeProtocol {
6
+ constructor() {
7
+ this.name = 'disappearing_mode'
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: 'disappearing_mode',
12
+ attrs: {}
13
+ }
14
+ }
15
+ getUserElement() {
16
+ return null
17
+ }
18
+ parser(node) {
19
+ if (node.tag === 'disappearing_mode') {
20
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
21
+ const duration = +node?.attrs.duration
22
+ const setAt = new Date(+(node?.attrs.t || 0) * 1000)
23
+ return { duration, setAt }
24
+ }
25
+ }
26
+ }
27
+ exports.USyncDisappearingModeProtocol = USyncDisappearingModeProtocol
@@ -0,0 +1,74 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncFeatureProtocol = exports.USYNC_FEATURES = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ // Device feature flags that can be queried, ported from WhatsApp Web's
6
+ // WAWebUsyncFeature module.
7
+ exports.USYNC_FEATURES = [
8
+ 'document',
9
+ 'encrypt',
10
+ 'encrypt_blist',
11
+ 'encrypt_contact',
12
+ 'encrypt_group_gen2',
13
+ 'encrypt_image',
14
+ 'encrypt_location',
15
+ 'encrypt_url',
16
+ 'encrypt_v2',
17
+ 'voip',
18
+ 'voip_legacy',
19
+ 'multi_agent',
20
+ 'bot_eligible'
21
+ ]
22
+ class USyncFeatureProtocol {
23
+ /**
24
+ * @param {string[]} [features] feature names to query (defaults to all known)
25
+ */
26
+ constructor(features) {
27
+ this.name = 'feature'
28
+ this.features = features && features.length ? features : exports.USYNC_FEATURES
29
+ }
30
+ getQueryElement() {
31
+ return {
32
+ tag: 'feature',
33
+ attrs: {},
34
+ content: this.features.map(feature => ({ tag: feature, attrs: {} }))
35
+ }
36
+ }
37
+ getUserElement() {
38
+ return null
39
+ }
40
+ parser(node) {
41
+ if (node.tag !== 'feature') {
42
+ return null
43
+ }
44
+ const errorNode = (0, WABinary_1.getBinaryNodeChild)(node, 'error')
45
+ if (errorNode) {
46
+ return {
47
+ errorCode: errorNode.attrs?.code ? +errorNode.attrs.code : undefined,
48
+ errorText: errorNode.attrs?.text
49
+ }
50
+ }
51
+ const CAMEL_MAP = {
52
+ encrypt_v2: 'encryptV2',
53
+ voip_legacy: 'voipLegacy',
54
+ multi_agent: 'multiAgent',
55
+ bot_eligible: 'botEligible',
56
+ encrypt_blist: 'encryptBlist',
57
+ encrypt_contact: 'encryptContact',
58
+ encrypt_group_gen2: 'encryptGroupGen2',
59
+ encrypt_image: 'encryptImage',
60
+ encrypt_location: 'encryptLocation',
61
+ encrypt_url: 'encryptUrl'
62
+ }
63
+ const features = {}
64
+ const children = Array.isArray(node.content) ? node.content : []
65
+ for (const child of children) {
66
+ if (child?.attrs && child.attrs.value !== undefined) {
67
+ const key = CAMEL_MAP[child.tag] || child.tag
68
+ features[key] = child.attrs.value
69
+ }
70
+ }
71
+ return features
72
+ }
73
+ }
74
+ exports.USyncFeatureProtocol = USyncFeatureProtocol
@@ -0,0 +1,31 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncLIDProtocol = void 0
4
+ class USyncLIDProtocol {
5
+ constructor() {
6
+ this.name = 'lid'
7
+ }
8
+ getQueryElement() {
9
+ return {
10
+ tag: 'lid',
11
+ attrs: {}
12
+ }
13
+ }
14
+ getUserElement(user) {
15
+ if (user.lid) {
16
+ return {
17
+ tag: 'lid',
18
+ attrs: { jid: user.lid }
19
+ }
20
+ } else {
21
+ return null
22
+ }
23
+ }
24
+ parser(node) {
25
+ if (node.tag === 'lid') {
26
+ return node.attrs.val
27
+ }
28
+ return null
29
+ }
30
+ }
31
+ exports.USyncLIDProtocol = USyncLIDProtocol
@@ -0,0 +1,32 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncPictureProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncPictureProtocol {
6
+ constructor(type = 'image') {
7
+ this.name = 'picture'
8
+ // "image" for full resolution, "preview" for thumbnail
9
+ this.type = type
10
+ }
11
+ getQueryElement() {
12
+ return {
13
+ tag: 'picture',
14
+ attrs: { type: this.type }
15
+ }
16
+ }
17
+ getUserElement(user) {
18
+ const attrs = {}
19
+ if (user.pictureId != null) attrs.id = String(user.pictureId)
20
+ return Object.keys(attrs).length > 0 ? { tag: 'picture', attrs } : null
21
+ }
22
+ parser(node) {
23
+ if (node.tag !== 'picture') return null
24
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
25
+ const id = node.attrs?.id ?? null
26
+ const directPath = node.attrs?.direct_path ?? null
27
+ const hash = node.attrs?.hash ?? null
28
+ if (!id && !directPath) return null
29
+ return { id, directPath, hash }
30
+ }
31
+ }
32
+ exports.USyncPictureProtocol = USyncPictureProtocol
@@ -0,0 +1,29 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncSidelistProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncSidelistProtocol {
6
+ constructor(useLidAddressing = true) {
7
+ this.name = 'sidelist'
8
+ // When true, sends addressing_mode="lid" — required for interop/LID-mode contacts
9
+ this.useLidAddressing = useLidAddressing
10
+ }
11
+ getQueryElement() {
12
+ const attrs = {}
13
+ if (this.useLidAddressing) attrs.addressing_mode = 'lid'
14
+ return { tag: 'sidelist', attrs }
15
+ }
16
+ getUserElement(user) {
17
+ if (user.sidelistDelete) {
18
+ return { tag: 'sidelist', attrs: { type: 'delete' } }
19
+ }
20
+ return null
21
+ }
22
+ parser(node) {
23
+ if (node.tag !== 'sidelist' && node.tag !== 'side_list') return null
24
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
25
+ // Returns minimal parsed data; the full side_list is parsed in USyncQuery
26
+ return { type: node.attrs?.type ?? null }
27
+ }
28
+ }
29
+ exports.USyncSidelistProtocol = USyncSidelistProtocol
@@ -0,0 +1,44 @@
1
+ 'use strict'
2
+ Object.defineProperty(exports, '__esModule', { value: true })
3
+ exports.USyncStatusProtocol = void 0
4
+ const WABinary_1 = require('../../WABinary')
5
+ class USyncStatusProtocol {
6
+ constructor() {
7
+ this.name = 'status'
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: 'status',
12
+ attrs: {}
13
+ }
14
+ }
15
+ getUserElement(user) {
16
+ if (!user?.tcToken) return null
17
+ return {
18
+ tag: 'tctoken',
19
+ attrs: {},
20
+ content: user.tcToken
21
+ }
22
+ }
23
+ parser(node) {
24
+ if (node.tag === 'status') {
25
+ ;(0, WABinary_1.assertNodeErrorFree)(node)
26
+ let status = node?.content?.toString() ?? null
27
+ const setAt = new Date(+(node?.attrs.t || 0) * 1000)
28
+ if (!status) {
29
+ if (node.attrs?.code && +node.attrs.code === 401) {
30
+ status = ''
31
+ } else {
32
+ status = null
33
+ }
34
+ } else if (typeof status === 'string' && status.length === 0) {
35
+ status = null
36
+ }
37
+ return {
38
+ status,
39
+ setAt
40
+ }
41
+ }
42
+ }
43
+ }
44
+ exports.USyncStatusProtocol = USyncStatusProtocol