@sixcore/baileys 1.0.0 → 1.0.1

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 +123 -25
  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,477 +0,0 @@
1
- import { proto } from '../../WAProto/index.js'
2
- import {
3
- type GroupMetadata,
4
- type GroupParticipant,
5
- type ParticipantAction,
6
- type SocketConfig,
7
- type WAMessageKey,
8
- WAMessageStubType
9
- } from '../Types'
10
- import { generateMessageID, generateMessageIDV2, unixTimestampSeconds } from '../Utils'
11
- import logger from '../Utils/logger'
12
- import {
13
- type BinaryNode,
14
- getBinaryNodeChild,
15
- getBinaryNodeChildren,
16
- getBinaryNodeChildString,
17
- jidEncode,
18
- jidNormalizedUser
19
- } from '../WABinary'
20
- import { makeBusinessSocket } from './business'
21
-
22
- export const makeCommunitiesSocket = (config: SocketConfig) => {
23
- const sock = makeBusinessSocket(config)
24
- const { authState, ev, query, upsertMessage } = sock
25
-
26
- const communityQuery = async (jid: string, type: 'get' | 'set', content: BinaryNode[]) =>
27
- query({
28
- tag: 'iq',
29
- attrs: {
30
- type,
31
- xmlns: 'w:g2',
32
- to: jid
33
- },
34
- content
35
- })
36
-
37
- const communityMetadata = async (jid: string) => {
38
- const result = await communityQuery(jid, 'get', [{ tag: 'query', attrs: { request: 'interactive' } }])
39
- return extractCommunityMetadata(result)
40
- }
41
-
42
- const communityFetchAllParticipating = async () => {
43
- const result = await query({
44
- tag: 'iq',
45
- attrs: {
46
- to: '@g.us',
47
- xmlns: 'w:g2',
48
- type: 'get'
49
- },
50
- content: [
51
- {
52
- tag: 'participating',
53
- attrs: {},
54
- content: [
55
- { tag: 'participants', attrs: {} },
56
- { tag: 'description', attrs: {} }
57
- ]
58
- }
59
- ]
60
- })
61
- const data: { [_: string]: GroupMetadata } = {}
62
- const communitiesChild = getBinaryNodeChild(result, 'communities')
63
- if (communitiesChild) {
64
- const communities = getBinaryNodeChildren(communitiesChild, 'community')
65
- for (const communityNode of communities) {
66
- const meta = extractCommunityMetadata({
67
- tag: 'result',
68
- attrs: {},
69
- content: [communityNode]
70
- })
71
- data[meta.id] = meta
72
- }
73
- }
74
-
75
- sock.ev.emit('groups.update', Object.values(data))
76
-
77
- return data
78
- }
79
-
80
- async function parseGroupResult(node: BinaryNode) {
81
- logger.info({ node }, 'parseGroupResult')
82
- const groupNode = getBinaryNodeChild(node, 'group')
83
- if (groupNode) {
84
- try {
85
- logger.info({ groupNode }, 'groupNode')
86
- const metadata = await sock.groupMetadata(`${groupNode.attrs.id}@g.us`)
87
- return metadata ? metadata : Optional.empty()
88
- } catch (error) {
89
- console.error('Error parsing group metadata:', error)
90
- return Optional.empty()
91
- }
92
- }
93
-
94
- return Optional.empty()
95
- }
96
-
97
- const Optional = {
98
- empty: () => null,
99
- of: (value: null) => (value !== null ? { value } : null)
100
- }
101
-
102
- sock.ws.on('CB:ib,,dirty', async (node: BinaryNode) => {
103
- const { attrs } = getBinaryNodeChild(node, 'dirty')!
104
- if (attrs.type !== 'communities') {
105
- return
106
- }
107
-
108
- await communityFetchAllParticipating()
109
- await sock.cleanDirtyBits('groups')
110
- })
111
-
112
- return {
113
- ...sock,
114
- communityMetadata,
115
- communityCreate: async (subject: string, body: string) => {
116
- const descriptionId = generateMessageID().substring(0, 12)
117
-
118
- const result = await communityQuery('@g.us', 'set', [
119
- {
120
- tag: 'create',
121
- attrs: { subject },
122
- content: [
123
- {
124
- tag: 'description',
125
- attrs: { id: descriptionId },
126
- content: [
127
- {
128
- tag: 'body',
129
- attrs: {},
130
- content: Buffer.from(body || '', 'utf-8')
131
- }
132
- ]
133
- },
134
- {
135
- tag: 'parent',
136
- attrs: { default_membership_approval_mode: 'request_required' }
137
- },
138
- {
139
- tag: 'allow_non_admin_sub_group_creation',
140
- attrs: {}
141
- },
142
- {
143
- tag: 'create_general_chat',
144
- attrs: {}
145
- }
146
- ]
147
- }
148
- ])
149
-
150
- return await parseGroupResult(result)
151
- },
152
- communityCreateGroup: async (subject: string, participants: string[], parentCommunityJid: string) => {
153
- const key = generateMessageIDV2()
154
- const result = await communityQuery('@g.us', 'set', [
155
- {
156
- tag: 'create',
157
- attrs: {
158
- subject,
159
- key
160
- },
161
- content: [
162
- ...participants.map(jid => ({
163
- tag: 'participant',
164
- attrs: { jid }
165
- })),
166
- { tag: 'linked_parent', attrs: { jid: parentCommunityJid } }
167
- ]
168
- }
169
- ])
170
- return await parseGroupResult(result)
171
- },
172
- communityLeave: async (id: string) => {
173
- await communityQuery('@g.us', 'set', [
174
- {
175
- tag: 'leave',
176
- attrs: {},
177
- content: [{ tag: 'community', attrs: { id } }]
178
- }
179
- ])
180
- },
181
- communityUpdateSubject: async (jid: string, subject: string) => {
182
- await communityQuery(jid, 'set', [
183
- {
184
- tag: 'subject',
185
- attrs: {},
186
- content: Buffer.from(subject, 'utf-8')
187
- }
188
- ])
189
- },
190
- communityLinkGroup: async (groupJid: string, parentCommunityJid: string) => {
191
- await communityQuery(parentCommunityJid, 'set', [
192
- {
193
- tag: 'links',
194
- attrs: {},
195
- content: [
196
- {
197
- tag: 'link',
198
- attrs: { link_type: 'sub_group' },
199
- content: [{ tag: 'group', attrs: { jid: groupJid } }]
200
- }
201
- ]
202
- }
203
- ])
204
- },
205
- communityUnlinkGroup: async (groupJid: string, parentCommunityJid: string) => {
206
- await communityQuery(parentCommunityJid, 'set', [
207
- {
208
- tag: 'unlink',
209
- attrs: { unlink_type: 'sub_group' },
210
- content: [{ tag: 'group', attrs: { jid: groupJid } }]
211
- }
212
- ])
213
- },
214
- communityFetchLinkedGroups: async (jid: string) => {
215
- let communityJid = jid
216
- let isCommunity = false
217
-
218
- // Try to determine if it is a subgroup or a community
219
- const metadata = await sock.groupMetadata(jid)
220
- if (metadata.linkedParent) {
221
- // It is a subgroup, get the community jid
222
- communityJid = metadata.linkedParent
223
- } else {
224
- // It is a community
225
- isCommunity = true
226
- }
227
-
228
- // Fetch all subgroups of the community
229
- const result = await communityQuery(communityJid, 'get', [{ tag: 'sub_groups', attrs: {} }])
230
-
231
- const linkedGroupsData = []
232
- const subGroupsNode = getBinaryNodeChild(result, 'sub_groups')
233
- if (subGroupsNode) {
234
- const groupNodes = getBinaryNodeChildren(subGroupsNode, 'group')
235
- for (const groupNode of groupNodes) {
236
- linkedGroupsData.push({
237
- id: groupNode.attrs.id ? jidEncode(groupNode.attrs.id, 'g.us') : undefined,
238
- subject: groupNode.attrs.subject || '',
239
- creation: groupNode.attrs.creation ? Number(groupNode.attrs.creation) : undefined,
240
- owner: groupNode.attrs.creator ? jidNormalizedUser(groupNode.attrs.creator) : undefined,
241
- size: groupNode.attrs.size ? Number(groupNode.attrs.size) : undefined
242
- })
243
- }
244
- }
245
-
246
- return {
247
- communityJid,
248
- isCommunity,
249
- linkedGroups: linkedGroupsData
250
- }
251
- },
252
- communityRequestParticipantsList: async (jid: string) => {
253
- const result = await communityQuery(jid, 'get', [
254
- {
255
- tag: 'membership_approval_requests',
256
- attrs: {}
257
- }
258
- ])
259
- const node = getBinaryNodeChild(result, 'membership_approval_requests')
260
- const participants = getBinaryNodeChildren(node, 'membership_approval_request')
261
- return participants.map(v => v.attrs)
262
- },
263
- communityRequestParticipantsUpdate: async (jid: string, participants: string[], action: 'approve' | 'reject') => {
264
- const result = await communityQuery(jid, 'set', [
265
- {
266
- tag: 'membership_requests_action',
267
- attrs: {},
268
- content: [
269
- {
270
- tag: action,
271
- attrs: {},
272
- content: participants.map(jid => ({
273
- tag: 'participant',
274
- attrs: { jid }
275
- }))
276
- }
277
- ]
278
- }
279
- ])
280
- const node = getBinaryNodeChild(result, 'membership_requests_action')
281
- const nodeAction = getBinaryNodeChild(node, action)
282
- const participantsAffected = getBinaryNodeChildren(nodeAction, 'participant')
283
- return participantsAffected.map(p => {
284
- return { status: p.attrs.error || '200', jid: p.attrs.jid }
285
- })
286
- },
287
- communityParticipantsUpdate: async (jid: string, participants: string[], action: ParticipantAction) => {
288
- const result = await communityQuery(jid, 'set', [
289
- {
290
- tag: action,
291
- attrs: action === 'remove' ? { linked_groups: 'true' } : {},
292
- content: participants.map(jid => ({
293
- tag: 'participant',
294
- attrs: { jid }
295
- }))
296
- }
297
- ])
298
- const node = getBinaryNodeChild(result, action)
299
- const participantsAffected = getBinaryNodeChildren(node, 'participant')
300
- return participantsAffected.map(p => {
301
- return { status: p.attrs.error || '200', jid: p.attrs.jid, content: p }
302
- })
303
- },
304
- communityUpdateDescription: async (jid: string, description?: string) => {
305
- const metadata = await communityMetadata(jid)
306
- const prev = metadata.descId ?? null
307
-
308
- await communityQuery(jid, 'set', [
309
- {
310
- tag: 'description',
311
- attrs: {
312
- ...(description ? { id: generateMessageID() } : { delete: 'true' }),
313
- ...(prev ? { prev } : {})
314
- },
315
- content: description ? [{ tag: 'body', attrs: {}, content: Buffer.from(description, 'utf-8') }] : undefined
316
- }
317
- ])
318
- },
319
- communityInviteCode: async (jid: string) => {
320
- const result = await communityQuery(jid, 'get', [{ tag: 'invite', attrs: {} }])
321
- const inviteNode = getBinaryNodeChild(result, 'invite')
322
- return inviteNode?.attrs.code
323
- },
324
- communityRevokeInvite: async (jid: string) => {
325
- const result = await communityQuery(jid, 'set', [{ tag: 'invite', attrs: {} }])
326
- const inviteNode = getBinaryNodeChild(result, 'invite')
327
- return inviteNode?.attrs.code
328
- },
329
- communityAcceptInvite: async (code: string) => {
330
- const results = await communityQuery('@g.us', 'set', [{ tag: 'invite', attrs: { code } }])
331
- const result = getBinaryNodeChild(results, 'community')
332
- return result?.attrs.jid
333
- },
334
-
335
- /**
336
- * revoke a v4 invite for someone
337
- * @param communityJid community jid
338
- * @param invitedJid jid of person you invited
339
- * @returns true if successful
340
- */
341
- communityRevokeInviteV4: async (communityJid: string, invitedJid: string) => {
342
- const result = await communityQuery(communityJid, 'set', [
343
- { tag: 'revoke', attrs: {}, content: [{ tag: 'participant', attrs: { jid: invitedJid } }] }
344
- ])
345
- return !!result
346
- },
347
-
348
- /**
349
- * accept a CommunityInviteMessage
350
- * @param key the key of the invite message, or optionally only provide the jid of the person who sent the invite
351
- * @param inviteMessage the message to accept
352
- */
353
- communityAcceptInviteV4: ev.createBufferedFunction(
354
- async (key: string | WAMessageKey, inviteMessage: proto.Message.IGroupInviteMessage) => {
355
- key = typeof key === 'string' ? { remoteJid: key } : key
356
- const results = await communityQuery(inviteMessage.groupJid!, 'set', [
357
- {
358
- tag: 'accept',
359
- attrs: {
360
- code: inviteMessage.inviteCode!,
361
- expiration: inviteMessage.inviteExpiration!.toString(),
362
- admin: key.remoteJid!
363
- }
364
- }
365
- ])
366
-
367
- // if we have the full message key
368
- // update the invite message to be expired
369
- if (key.id) {
370
- // create new invite message that is expired
371
- inviteMessage = proto.Message.GroupInviteMessage.fromObject(inviteMessage)
372
- inviteMessage.inviteExpiration = 0
373
- inviteMessage.inviteCode = ''
374
- ev.emit('messages.update', [
375
- {
376
- key,
377
- update: {
378
- message: {
379
- groupInviteMessage: inviteMessage
380
- }
381
- }
382
- }
383
- ])
384
- }
385
-
386
- // generate the community add message
387
- await upsertMessage(
388
- {
389
- key: {
390
- remoteJid: inviteMessage.groupJid,
391
- id: generateMessageIDV2(sock.user?.id),
392
- fromMe: false,
393
- participant: key.remoteJid // TODO: investigate if this makes any sense at all
394
- },
395
- messageStubType: WAMessageStubType.GROUP_PARTICIPANT_ADD,
396
- messageStubParameters: [JSON.stringify(authState.creds.me)],
397
- participant: key.remoteJid,
398
- messageTimestamp: unixTimestampSeconds()
399
- },
400
- 'notify'
401
- )
402
-
403
- return results.attrs.from
404
- }
405
- ),
406
- communityGetInviteInfo: async (code: string) => {
407
- const results = await communityQuery('@g.us', 'get', [{ tag: 'invite', attrs: { code } }])
408
- return extractCommunityMetadata(results)
409
- },
410
- communityToggleEphemeral: async (jid: string, ephemeralExpiration: number) => {
411
- const content: BinaryNode = ephemeralExpiration
412
- ? { tag: 'ephemeral', attrs: { expiration: ephemeralExpiration.toString() } }
413
- : { tag: 'not_ephemeral', attrs: {} }
414
- await communityQuery(jid, 'set', [content])
415
- },
416
- communitySettingUpdate: async (
417
- jid: string,
418
- setting: 'announcement' | 'not_announcement' | 'locked' | 'unlocked'
419
- ) => {
420
- await communityQuery(jid, 'set', [{ tag: setting, attrs: {} }])
421
- },
422
- communityMemberAddMode: async (jid: string, mode: 'admin_add' | 'all_member_add') => {
423
- await communityQuery(jid, 'set', [{ tag: 'member_add_mode', attrs: {}, content: mode }])
424
- },
425
- communityJoinApprovalMode: async (jid: string, mode: 'on' | 'off') => {
426
- await communityQuery(jid, 'set', [
427
- { tag: 'membership_approval_mode', attrs: {}, content: [{ tag: 'community_join', attrs: { state: mode } }] }
428
- ])
429
- },
430
- communityFetchAllParticipating
431
- }
432
- }
433
-
434
- export const extractCommunityMetadata = (result: BinaryNode) => {
435
- const community = getBinaryNodeChild(result, 'community')!
436
- const descChild = getBinaryNodeChild(community, 'description')
437
- let desc: string | undefined
438
- let descId: string | undefined
439
- if (descChild) {
440
- desc = getBinaryNodeChildString(descChild, 'body')
441
- descId = descChild.attrs.id
442
- }
443
-
444
- const communityId = community.attrs.id?.includes('@')
445
- ? community.attrs.id
446
- : jidEncode(community.attrs.id || '', 'g.us')
447
- const eph = getBinaryNodeChild(community, 'ephemeral')?.attrs.expiration
448
- const memberAddMode = getBinaryNodeChildString(community, 'member_add_mode') === 'all_member_add'
449
- const metadata: GroupMetadata = {
450
- id: communityId,
451
- subject: community.attrs.subject || '',
452
- subjectOwner: community.attrs.s_o,
453
- subjectTime: Number(community.attrs.s_t || 0),
454
- size: getBinaryNodeChildren(community, 'participant').length,
455
- creation: Number(community.attrs.creation || 0),
456
- owner: community.attrs.creator ? jidNormalizedUser(community.attrs.creator) : undefined,
457
- desc,
458
- descId,
459
- linkedParent: getBinaryNodeChild(community, 'linked_parent')?.attrs.jid || undefined,
460
- restrict: !!getBinaryNodeChild(community, 'locked'),
461
- announce: !!getBinaryNodeChild(community, 'announcement'),
462
- isCommunity: !!getBinaryNodeChild(community, 'parent'),
463
- isCommunityAnnounce: !!getBinaryNodeChild(community, 'default_sub_community'),
464
- joinApprovalMode: !!getBinaryNodeChild(community, 'membership_approval_mode'),
465
- memberAddMode,
466
- participants: getBinaryNodeChildren(community, 'participant').map(({ attrs }) => {
467
- return {
468
- // TODO: IMPLEMENT THE PN/LID FIELDS HERE!!
469
- id: attrs.jid!,
470
- admin: (attrs.type || null) as GroupParticipant['admin']
471
- }
472
- }),
473
- ephemeralDuration: eph ? +eph : undefined,
474
- addressingMode: getBinaryNodeChildString(community, 'addressing_mode')! as GroupMetadata['addressingMode']
475
- }
476
- return metadata
477
- }