@badzz88/baileys 8.5.7 → 8.5.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 (142) hide show
  1. package/README.md +337 -1055
  2. package/WAProto/WAProto.proto +284 -264
  3. package/WAProto/index.js +5 -5
  4. package/engine-requirements.js +7 -15
  5. package/lib/Defaults/index.js +130 -187
  6. package/lib/Signal/Group/ciphertext-message.js +11 -14
  7. package/lib/Signal/Group/group-session-builder.js +29 -91
  8. package/lib/Signal/Group/group_cipher.js +81 -88
  9. package/lib/Signal/Group/index.js +12 -136
  10. package/lib/Signal/Group/keyhelper.js +15 -70
  11. package/lib/Signal/Group/sender-chain-key.js +25 -31
  12. package/lib/Signal/Group/sender-key-distribution-message.js +62 -65
  13. package/lib/Signal/Group/sender-key-message.js +65 -68
  14. package/lib/Signal/Group/sender-key-name.js +41 -43
  15. package/lib/Signal/Group/sender-key-record.js +40 -43
  16. package/lib/Signal/Group/sender-key-state.js +83 -96
  17. package/lib/Signal/Group/sender-message-key.js +25 -29
  18. package/lib/Signal/libsignal.js +425 -453
  19. package/lib/Signal/lid-mapping.js +276 -259
  20. package/lib/Socket/Client/index.js +3 -30
  21. package/lib/Socket/Client/types.js +10 -12
  22. package/lib/Socket/Client/websocket.js +53 -61
  23. package/lib/Socket/business.js +379 -422
  24. package/lib/Socket/chats.js +1193 -1816
  25. package/lib/Socket/communities.js +431 -549
  26. package/lib/Socket/graphql.js +672 -612
  27. package/lib/Socket/groups.js +374 -764
  28. package/lib/Socket/index.js +17 -38
  29. package/lib/Socket/interop.js +417 -503
  30. package/lib/Socket/messages-recv.js +1915 -2441
  31. package/lib/Socket/messages-send.js +1213 -1630
  32. package/lib/Socket/mex.js +9 -15
  33. package/lib/Socket/newsletter.js +746 -808
  34. package/lib/Socket/privacy.js +310 -441
  35. package/lib/Socket/socket.js +1025 -1022
  36. package/lib/Socket/username.js +8 -15
  37. package/lib/Store/index.js +10 -36
  38. package/lib/Store/make-cache-manager-store.js +80 -85
  39. package/lib/Store/make-in-memory-store.js +231 -591
  40. package/lib/Store/make-ordered-dictionary.js +72 -78
  41. package/lib/Store/object-repository.js +28 -25
  42. package/lib/Types/Auth.js +2 -38
  43. package/lib/Types/Bussines.js +2 -2
  44. package/lib/Types/Call.js +2 -2
  45. package/lib/Types/Chat.js +8 -4
  46. package/lib/Types/Contact.js +2 -2
  47. package/lib/Types/Events.js +2 -2
  48. package/lib/Types/GroupMetadata.js +2 -2
  49. package/lib/Types/Label.js +24 -26
  50. package/lib/Types/LabelAssociation.js +6 -8
  51. package/lib/Types/Message.js +11 -95
  52. package/lib/Types/Mex.js +111 -112
  53. package/lib/Types/Product.js +2 -2
  54. package/lib/Types/Signal.js +2 -2
  55. package/lib/Types/Socket.js +3 -2
  56. package/lib/Types/State.js +56 -70
  57. package/lib/Types/USync.js +2 -2
  58. package/lib/Types/index.js +26 -55
  59. package/lib/Utils/auth-utils.js +288 -292
  60. package/lib/Utils/browser-utils.js +47 -113
  61. package/lib/Utils/business.js +224 -240
  62. package/lib/Utils/chat-utils.js +869 -1205
  63. package/lib/Utils/companion-reg-client-utils.js +34 -41
  64. package/lib/Utils/crypto.js +107 -144
  65. package/lib/Utils/decode-wa-message.js +308 -518
  66. package/lib/Utils/event-buffer.js +611 -596
  67. package/lib/Utils/generics.js +355 -515
  68. package/lib/Utils/history.js +134 -244
  69. package/lib/Utils/identity-change-handler.js +49 -51
  70. package/lib/Utils/index.js +23 -57
  71. package/lib/Utils/link-preview.js +77 -135
  72. package/lib/Utils/logger.js +3 -9
  73. package/lib/Utils/lt-hash.js +6 -37
  74. package/lib/Utils/make-mutex.js +33 -36
  75. package/lib/Utils/message-composer.js +233 -439
  76. package/lib/Utils/message-retry-manager.js +260 -265
  77. package/lib/Utils/messages-media.js +829 -855
  78. package/lib/Utils/messages.js +961 -2528
  79. package/lib/Utils/noise-handler.js +200 -195
  80. package/lib/Utils/offline-node-processor.js +33 -35
  81. package/lib/Utils/pre-key-manager.js +102 -103
  82. package/lib/Utils/process-message.js +560 -978
  83. package/lib/Utils/reporting-utils.js +253 -257
  84. package/lib/Utils/signal.js +195 -218
  85. package/lib/Utils/stanza-ack.js +29 -31
  86. package/lib/Utils/sticker.js +109 -144
  87. package/lib/Utils/sync-action-utils.js +45 -50
  88. package/lib/Utils/tc-token-utils.js +139 -137
  89. package/lib/Utils/use-multi-file-auth-state.js +109 -109
  90. package/lib/Utils/validate-connection.js +202 -218
  91. package/lib/WABinary/constants.js +1299 -1302
  92. package/lib/WABinary/decode.js +262 -343
  93. package/lib/WABinary/encode.js +4 -12
  94. package/lib/WABinary/generic-utils.js +187 -223
  95. package/lib/WABinary/index.js +6 -33
  96. package/lib/WABinary/jid-utils.js +88 -351
  97. package/lib/WABinary/types.js +2 -2
  98. package/lib/WAM/BinaryInfo.js +9 -12
  99. package/lib/WAM/constants.js +22853 -39486
  100. package/lib/WAM/encode.js +140 -132
  101. package/lib/WAM/index.js +4 -31
  102. package/lib/WAUSync/Protocols/USyncBotProfileProtocol.js +21 -23
  103. package/lib/WAUSync/Protocols/USyncBusinessProtocol.js +9 -9
  104. package/lib/WAUSync/Protocols/USyncContactProtocol.js +7 -7
  105. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +10 -10
  106. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +7 -7
  107. package/lib/WAUSync/Protocols/USyncFeatureProtocol.js +11 -12
  108. package/lib/WAUSync/Protocols/USyncLIDProtocol.js +4 -5
  109. package/lib/WAUSync/Protocols/USyncPictureProtocol.js +7 -7
  110. package/lib/WAUSync/Protocols/USyncSidelistProtocol.js +7 -8
  111. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +7 -7
  112. package/lib/WAUSync/Protocols/USyncTextStatusProtocol.js +8 -8
  113. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +7 -7
  114. package/lib/WAUSync/Protocols/index.js +12 -39
  115. package/lib/WAUSync/USyncQuery.js +67 -49
  116. package/lib/WAUSync/USyncUser.js +11 -5
  117. package/lib/WAUSync/index.js +3 -31
  118. package/lib/index.js +15 -48
  119. package/package.json +129 -99
  120. package/LICENSE +0 -21
  121. package/lib/Defaults/phonenumber-mcc.json +0 -223
  122. package/lib/Socket/aigroups.js +0 -240
  123. package/lib/Socket/interactive-handler.js +0 -522
  124. package/lib/Socket/managed-account.js +0 -183
  125. package/lib/Socket/registration.js +0 -427
  126. package/lib/Socket/text-router.js +0 -83
  127. package/lib/Types/Newsletter.js +0 -121
  128. package/lib/Utils/command-loader.d.ts +0 -31
  129. package/lib/Utils/command-loader.js +0 -100
  130. package/lib/Utils/consumer-application.js +0 -107
  131. package/lib/Utils/curve25519-js.js +0 -275
  132. package/lib/Utils/group-history.js +0 -60
  133. package/lib/Utils/jid-display-normalization.js +0 -218
  134. package/lib/Utils/meta-ai-msmsg.js +0 -262
  135. package/lib/Utils/native-bridge.js +0 -82
  136. package/lib/Utils/session-pool.d.ts +0 -16
  137. package/lib/Utils/session-pool.js +0 -94
  138. package/lib/Utils/sticker.d.ts +0 -17
  139. package/lib/Utils/view-once-cache.d.ts +0 -9
  140. package/lib/Utils/view-once-cache.js +0 -79
  141. package/lib/Utils/voip-rekey.js +0 -22
  142. package/lib/antiban.js +0 -4637
@@ -1,240 +0,0 @@
1
- 'use strict'
2
- Object.defineProperty(exports, '__esModule', { value: true })
3
- exports.extractAIGroupMetadata = exports.makeAIGroupsSocket = void 0
4
- const Types_1 = require('../Types')
5
- const Utils_1 = require('../Utils')
6
- const WABinary_1 = require('../WABinary')
7
- const groups_1 = require('./groups')
8
-
9
- const makeAIGroupsSocket = config => {
10
- const sock = (0, groups_1.makeGroupsSocket)(config)
11
- const { ev, query } = sock
12
-
13
- /** Query helper for AI groups (w:gp2 namespace) */
14
- const aiGroupQuery = async (jid, type, content) =>
15
- query({
16
- tag: 'iq',
17
- attrs: {
18
- type,
19
- xmlns: 'w:g2',
20
- to: jid
21
- },
22
- content
23
- })
24
-
25
- const aiGroupMetadata = async jid => {
26
- const result = await aiGroupQuery(jid, 'get', [{ tag: 'query', attrs: { request: 'interactive' } }])
27
- return (0, exports.extractAIGroupMetadata)(result)
28
- }
29
-
30
- // Handle incoming w:gp2 notifications (create, promote, remove, add)
31
- sock.ws.on('CB:notification,w:gp2', async node => {
32
- const { attrs, content } = node
33
- if (!Array.isArray(content) || content.length === 0) return
34
-
35
- const inner = content[0]
36
- const tag = inner.tag
37
- const groupId =
38
- typeof attrs.from === 'string'
39
- ? attrs.from
40
- : attrs.from?.$1?.user
41
- ? (0, WABinary_1.jidEncode)(attrs.from.$1.user, 'g.us')
42
- : undefined
43
-
44
- if (!groupId) return
45
-
46
- if (tag === 'create') {
47
- // New AI group created — emit groups.upsert
48
- try {
49
- const meta = await aiGroupMetadata(groupId)
50
- ev.emit('groups.upsert', [meta])
51
- } catch {
52
- // metadata fetch may fail; emit minimal info
53
- ev.emit('groups.upsert', [{ id: groupId }])
54
- }
55
- } else if (tag === 'promote' || tag === 'demote' || tag === 'remove' || tag === 'add') {
56
- const participants = (0, WABinary_1.getBinaryNodeChildren)(inner, 'participant')
57
- .map(p => {
58
- const jid = p.attrs.jid
59
- if (typeof jid === 'string') return jid
60
- if (jid?.$1) {
61
- return (0, WABinary_1.jidEncode)(jid.$1.user, jid.$1.server || 's.whatsapp.net')
62
- }
63
- return undefined
64
- })
65
- .filter(Boolean)
66
-
67
- ev.emit('group-participants.update', {
68
- id: groupId,
69
- participants,
70
- action: tag
71
- })
72
- } else if (tag === 'subject') {
73
- ev.emit('groups.update', [{ id: groupId, subject: inner.attrs?.subject }])
74
- }
75
-
76
- await sock.sendMessageAck(node)
77
- })
78
-
79
- return {
80
- ...sock,
81
- aiGroupMetadata,
82
- aiGroupCreate: async (subject, participants = [], options = {}) => {
83
- if (!Array.isArray(participants)) participants = []
84
- const key = (0, Utils_1.generateMessageIDV2)()
85
- const {
86
- ephemeralExpiration = 86400,
87
- memberAddMode = 'all_member_add',
88
- memberShareGroupHistoryMode = 'all_member_share',
89
- memberLinkMode = 'all_member_link'
90
- } = options
91
- const result = await aiGroupQuery('@g.us', 'set', [
92
- {
93
- tag: 'create',
94
- attrs: {
95
- subject,
96
- key
97
- },
98
- content: participants.map(jid => ({
99
- tag: 'participant',
100
- attrs: { jid }
101
- }))
102
- }
103
- ])
104
- return (0, exports.extractAIGroupMetadata)(result)
105
- },
106
- aiGroupAddBot: async (jid, botUser = '867051314767696') => {
107
- const result = await aiGroupQuery(jid, 'set', [
108
- {
109
- tag: 'add',
110
- attrs: {},
111
- content: [
112
- {
113
- tag: 'participant',
114
- attrs: { jid: `${botUser}@bot` }
115
- }
116
- ]
117
- }
118
- ])
119
- const node = (0, WABinary_1.getBinaryNodeChild)(result, 'add')
120
- const participantsAffected = (0, WABinary_1.getBinaryNodeChildren)(node, 'participant')
121
- return participantsAffected.map(p => ({
122
- status: p.attrs.error || '200',
123
- jid: p.attrs.jid
124
- }))
125
- },
126
- aiGroupLeave: async id => {
127
- await aiGroupQuery('@g.us', 'set', [
128
- {
129
- tag: 'leave',
130
- attrs: {},
131
- content: [{ tag: 'group', attrs: { id } }]
132
- }
133
- ])
134
- },
135
- aiGroupParticipantsUpdate: async (jid, participants, action) => {
136
- const result = await aiGroupQuery(jid, 'set', [
137
- {
138
- tag: action,
139
- attrs: {},
140
- content: participants.map(jid => ({
141
- tag: 'participant',
142
- attrs: { jid }
143
- }))
144
- }
145
- ])
146
- const node = (0, WABinary_1.getBinaryNodeChild)(result, action)
147
- const participantsAffected = (0, WABinary_1.getBinaryNodeChildren)(node, 'participant')
148
- return participantsAffected.map(p => ({
149
- status: p.attrs.error || '200',
150
- jid: p.attrs.jid,
151
- content: p
152
- }))
153
- },
154
- aiGroupUpdateSubject: async (jid, subject) => {
155
- await aiGroupQuery(jid, 'set', [
156
- {
157
- tag: 'subject',
158
- attrs: {},
159
- content: Buffer.from(subject, 'utf-8')
160
- }
161
- ])
162
- },
163
- aiGroupInviteCode: async jid => {
164
- const result = await aiGroupQuery(jid, 'get', [{ tag: 'invite', attrs: {} }])
165
- const inviteNode = (0, WABinary_1.getBinaryNodeChild)(result, 'invite')
166
- return inviteNode?.attrs.code
167
- },
168
- aiGroupRevokeInvite: async jid => {
169
- const result = await aiGroupQuery(jid, 'set', [{ tag: 'invite', attrs: {} }])
170
- const inviteNode = (0, WABinary_1.getBinaryNodeChild)(result, 'invite')
171
- return inviteNode?.attrs.code
172
- },
173
- aiGroupAcceptInvite: async code => {
174
- const results = await aiGroupQuery('@g.us', 'set', [{ tag: 'invite', attrs: { code } }])
175
- const result = (0, WABinary_1.getBinaryNodeChild)(results, 'group')
176
- return result?.attrs.jid
177
- },
178
- aiGroupSettingUpdate: async (jid, setting) => {
179
- await aiGroupQuery(jid, 'set', [{ tag: setting, attrs: {} }])
180
- },
181
- aiGroupToggleEphemeral: async (jid, ephemeralExpiration) => {
182
- const content = ephemeralExpiration
183
- ? { tag: 'ephemeral', attrs: { expiration: ephemeralExpiration.toString() } }
184
- : { tag: 'not_ephemeral', attrs: {} }
185
- await aiGroupQuery(jid, 'set', [content])
186
- }
187
- }
188
- }
189
- exports.makeAIGroupsSocket = makeAIGroupsSocket
190
-
191
- const extractAIGroupMetadata = result => {
192
- // IQ response nests group inside create node: result → create → group
193
- const createNode = (0, WABinary_1.getBinaryNodeChild)(result, 'create')
194
- const group =
195
- (0, WABinary_1.getBinaryNodeChild)(createNode || result, 'group') ||
196
- (0, WABinary_1.getBinaryNodeChild)(result, 'group')
197
- const descChild = (0, WABinary_1.getBinaryNodeChild)(group, 'description')
198
- let desc, descId, descOwner, descOwnerPn, descTime
199
- if (descChild) {
200
- desc = (0, WABinary_1.getBinaryNodeChildString)(descChild, 'body')
201
- descOwner = descChild.attrs.participant ? (0, WABinary_1.jidNormalizedUser)(descChild.attrs.participant) : undefined
202
- descOwnerPn = descChild.attrs.participant_pn
203
- ? (0, WABinary_1.jidNormalizedUser)(descChild.attrs.participant_pn)
204
- : undefined
205
- descTime = +descChild.attrs.t
206
- descId = descChild.attrs.id
207
- }
208
- const groupId = group.attrs.id.includes('@') ? group.attrs.id : (0, WABinary_1.jidEncode)(group.attrs.id, 'g.us')
209
- const eph = (0, WABinary_1.getBinaryNodeChild)(group, 'ephemeral')?.attrs.expiration
210
- const metadata = {
211
- id: groupId,
212
- subject: group.attrs.subject,
213
- subjectTime: +group.attrs.s_t,
214
- creation: +group.attrs.creation,
215
- owner: group.attrs.creator ? (0, WABinary_1.jidNormalizedUser)(group.attrs.creator) : undefined,
216
- ownerPn: group.attrs.creator_pn ? (0, WABinary_1.jidNormalizedUser)(group.attrs.creator_pn) : undefined,
217
- owner_country_code: group.attrs.creator_country_code,
218
- size: group.attrs.size ? +group.attrs.size : (0, WABinary_1.getBinaryNodeChildren)(group, 'participant').length,
219
- desc,
220
- descId,
221
- descOwner,
222
- descOwnerPn,
223
- descTime,
224
- isAIGroup: true,
225
- addressingMode:
226
- group.attrs.addressing_mode === 'lid' ? Types_1.WAMessageAddressingMode.LID : Types_1.WAMessageAddressingMode.PN,
227
- participants: (0, WABinary_1.getBinaryNodeChildren)(group, 'participant').map(({ attrs }) => ({
228
- id: attrs.jid,
229
- phoneNumber:
230
- (0, WABinary_1.isLidUser)(attrs.jid) && (0, WABinary_1.isPnUser)(attrs.phone_number)
231
- ? attrs.phone_number
232
- : undefined,
233
- lid: (0, WABinary_1.isPnUser)(attrs.jid) && (0, WABinary_1.isLidUser)(attrs.lid) ? attrs.lid : undefined,
234
- admin: attrs.type || null
235
- })),
236
- ephemeralDuration: eph ? +eph : undefined
237
- }
238
- return metadata
239
- }
240
- exports.extractAIGroupMetadata = extractAIGroupMetadata