@queenanya/baileys 7.3.7 → 7.4.0

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 (395) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +941 -0
  3. package/WAProto/GenerateStatics.sh +4 -0
  4. package/WAProto/WAProto.proto +3344 -0
  5. package/WAProto/index.d.ts +37016 -0
  6. package/WAProto/index.js +101044 -0
  7. package/WASignalGroup/GroupProtocol.js +1697 -0
  8. package/WASignalGroup/ciphertext_message.js +16 -0
  9. package/WASignalGroup/group_cipher.js +120 -0
  10. package/WASignalGroup/group_session_builder.js +46 -0
  11. package/WASignalGroup/index.js +5 -0
  12. package/WASignalGroup/keyhelper.js +21 -0
  13. package/WASignalGroup/protobufs.js +3 -0
  14. package/WASignalGroup/queue_job.js +69 -0
  15. package/WASignalGroup/sender_chain_key.js +50 -0
  16. package/WASignalGroup/sender_key_distribution_message.js +78 -0
  17. package/WASignalGroup/sender_key_message.js +92 -0
  18. package/WASignalGroup/sender_key_name.js +70 -0
  19. package/WASignalGroup/sender_key_record.js +56 -0
  20. package/WASignalGroup/sender_key_state.js +129 -0
  21. package/WASignalGroup/sender_message_key.js +39 -0
  22. package/lib/Defaults/baileys-version.json +3 -0
  23. package/lib/Defaults/index.d.ts +284 -0
  24. package/lib/Defaults/index.js +122 -0
  25. package/lib/Defaults/phonenumber-mcc.json +223 -0
  26. package/lib/Signal/libsignal.d.ts +3 -0
  27. package/lib/Signal/libsignal.js +152 -0
  28. package/lib/Socket/Client/abstract-socket-client.d.ts +17 -0
  29. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  30. package/lib/Socket/Client/index.d.ts +3 -0
  31. package/lib/Socket/Client/index.js +19 -0
  32. package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
  33. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  34. package/lib/Socket/Client/web-socket-client.d.ts +12 -0
  35. package/lib/Socket/Client/web-socket-client.js +62 -0
  36. package/lib/Socket/business.d.ts +177 -0
  37. package/lib/Socket/business.js +260 -0
  38. package/lib/Socket/chats.d.ts +91 -0
  39. package/lib/Socket/chats.js +950 -0
  40. package/lib/Socket/groups.d.ts +137 -0
  41. package/lib/Socket/groups.js +314 -0
  42. package/lib/Socket/index.d.ts +179 -0
  43. package/lib/Socket/index.js +10 -0
  44. package/lib/Socket/messages-recv.d.ts +164 -0
  45. package/lib/Socket/messages-recv.js +921 -0
  46. package/lib/Socket/messages-send.d.ts +157 -0
  47. package/lib/Socket/messages-send.js +779 -0
  48. package/lib/Socket/newsletter.d.ts +143 -0
  49. package/lib/Socket/newsletter.js +249 -0
  50. package/lib/Socket/registration.d.ts +271 -0
  51. package/lib/Socket/registration.js +166 -0
  52. package/lib/Socket/socket.d.ts +44 -0
  53. package/lib/Socket/socket.js +620 -0
  54. package/lib/Store/index.d.ts +3 -0
  55. package/lib/Store/index.js +10 -0
  56. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  57. package/lib/Store/make-cache-manager-store.js +83 -0
  58. package/lib/Store/make-in-memory-store.d.ts +118 -0
  59. package/lib/Store/make-in-memory-store.js +422 -0
  60. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  61. package/lib/Store/make-ordered-dictionary.js +81 -0
  62. package/lib/Store/object-repository.d.ts +10 -0
  63. package/lib/Store/object-repository.js +27 -0
  64. package/lib/Types/Auth.d.ts +111 -0
  65. package/lib/Types/Auth.js +2 -0
  66. package/lib/Types/Call.d.ts +13 -0
  67. package/lib/Types/Call.js +2 -0
  68. package/lib/Types/Chat.d.ts +107 -0
  69. package/lib/Types/Chat.js +4 -0
  70. package/lib/Types/Contact.d.ts +19 -0
  71. package/lib/Types/Contact.js +2 -0
  72. package/lib/Types/Events.d.ts +199 -0
  73. package/lib/Types/Events.js +2 -0
  74. package/lib/Types/GroupMetadata.d.ts +56 -0
  75. package/lib/Types/GroupMetadata.js +2 -0
  76. package/lib/Types/Label.d.ts +46 -0
  77. package/lib/Types/Label.js +27 -0
  78. package/lib/Types/LabelAssociation.d.ts +29 -0
  79. package/lib/Types/LabelAssociation.js +9 -0
  80. package/lib/Types/Message.d.ts +278 -0
  81. package/lib/Types/Message.js +9 -0
  82. package/lib/Types/Newsletter.d.ts +79 -0
  83. package/lib/Types/Newsletter.js +18 -0
  84. package/lib/Types/Product.d.ts +78 -0
  85. package/lib/Types/Product.js +2 -0
  86. package/lib/Types/Signal.d.ts +57 -0
  87. package/lib/Types/Signal.js +2 -0
  88. package/lib/Types/Socket.d.ts +118 -0
  89. package/lib/Types/Socket.js +2 -0
  90. package/lib/Types/State.d.ts +27 -0
  91. package/lib/Types/State.js +2 -0
  92. package/lib/Types/index.d.ts +65 -0
  93. package/lib/Types/index.js +42 -0
  94. package/lib/Utils/auth-utils.d.ts +18 -0
  95. package/lib/Utils/auth-utils.js +206 -0
  96. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  97. package/lib/Utils/baileys-event-stream.js +63 -0
  98. package/lib/Utils/business.d.ts +22 -0
  99. package/lib/Utils/business.js +234 -0
  100. package/lib/Utils/chat-utils.d.ts +72 -0
  101. package/lib/Utils/chat-utils.js +740 -0
  102. package/lib/Utils/crypto.d.ts +42 -0
  103. package/lib/Utils/crypto.js +153 -0
  104. package/lib/Utils/decode-wa-message.d.ts +20 -0
  105. package/lib/Utils/decode-wa-message.js +207 -0
  106. package/lib/Utils/event-buffer.d.ts +35 -0
  107. package/lib/Utils/event-buffer.js +520 -0
  108. package/lib/Utils/generics.d.ts +115 -0
  109. package/lib/Utils/generics.js +440 -0
  110. package/lib/Utils/history.d.ts +19 -0
  111. package/lib/Utils/history.js +94 -0
  112. package/lib/Utils/index.d.ts +17 -0
  113. package/lib/Utils/index.js +33 -0
  114. package/lib/Utils/link-preview.d.ts +21 -0
  115. package/lib/Utils/link-preview.js +93 -0
  116. package/lib/Utils/logger.d.ts +2 -0
  117. package/lib/Utils/logger.js +7 -0
  118. package/lib/Utils/lt-hash.d.ts +12 -0
  119. package/lib/Utils/lt-hash.js +51 -0
  120. package/lib/Utils/make-mutex.d.ts +7 -0
  121. package/lib/Utils/make-mutex.js +43 -0
  122. package/lib/Utils/messages-media.d.ts +131 -0
  123. package/lib/Utils/messages-media.js +793 -0
  124. package/lib/Utils/messages.d.ts +78 -0
  125. package/lib/Utils/messages.js +771 -0
  126. package/lib/Utils/noise-handler.d.ts +22 -0
  127. package/lib/Utils/noise-handler.js +155 -0
  128. package/lib/Utils/process-message.d.ts +42 -0
  129. package/lib/Utils/process-message.js +354 -0
  130. package/lib/Utils/signal.d.ts +32 -0
  131. package/lib/Utils/signal.js +156 -0
  132. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  133. package/lib/Utils/use-multi-file-auth-state.js +93 -0
  134. package/lib/Utils/validate-connection.d.ts +11 -0
  135. package/lib/Utils/validate-connection.js +205 -0
  136. package/lib/WABinary/constants.d.ts +27 -0
  137. package/lib/WABinary/constants.js +40 -0
  138. package/lib/WABinary/decode.d.ts +8 -0
  139. package/lib/WABinary/decode.js +254 -0
  140. package/lib/WABinary/encode.d.ts +2 -0
  141. package/lib/WABinary/encode.js +228 -0
  142. package/lib/WABinary/generic-utils.d.ts +16 -0
  143. package/lib/WABinary/generic-utils.js +110 -0
  144. package/lib/WABinary/index.d.ts +5 -0
  145. package/lib/WABinary/index.js +21 -0
  146. package/lib/WABinary/jid-utils.d.ts +31 -0
  147. package/lib/WABinary/jid-utils.js +62 -0
  148. package/lib/WABinary/types.d.ts +18 -0
  149. package/lib/WABinary/types.js +2 -0
  150. package/lib/WAM/BinaryInfo.d.ts +18 -0
  151. package/lib/WAM/BinaryInfo.js +13 -0
  152. package/lib/WAM/constants.d.ts +38 -0
  153. package/lib/WAM/constants.js +15350 -0
  154. package/lib/WAM/encode.d.ts +4 -0
  155. package/lib/WAM/encode.js +155 -0
  156. package/lib/WAM/index.d.ts +3 -0
  157. package/lib/WAM/index.js +19 -0
  158. package/lib/index.d.ts +11 -0
  159. package/lib/index.js +30 -0
  160. package/package.json +102 -2
  161. package/.anya-md/.replit +0 -2
  162. package/.anya-md/.temp/.temp +0 -1
  163. package/.anya-md/Dockerfile +0 -16
  164. package/.anya-md/LICENCE +0 -674
  165. package/.anya-md/README.md +0 -301
  166. package/.anya-md/app.json +0 -81
  167. package/.anya-md/config.js +0 -74
  168. package/.anya-md/heroku.yml +0 -5
  169. package/.anya-md/index.js +0 -47
  170. package/.anya-md/koyeb.yaml +0 -14
  171. package/.anya-md/lib/.dev.js +0 -47
  172. package/.anya-md/lib/Assets/aliveMedia.mp4 +0 -0
  173. package/.anya-md/lib/Assets/goodbyeBG.jpg +0 -0
  174. package/.anya-md/lib/Assets/image_1.jpg +0 -0
  175. package/.anya-md/lib/Assets/image_2.jpg +0 -0
  176. package/.anya-md/lib/Assets/menuMedia.mp4 +0 -0
  177. package/.anya-md/lib/Assets/ownerMentionMp3.mp3 +0 -0
  178. package/.anya-md/lib/Assets/port.html +0 -36
  179. package/.anya-md/lib/Assets/reaction/angry/angry108202410.jpeg +0 -0
  180. package/.anya-md/lib/Assets/reaction/angry/angry108202412.jpeg +0 -0
  181. package/.anya-md/lib/Assets/reaction/angry/angry108202413.jpeg +0 -0
  182. package/.anya-md/lib/Assets/reaction/angry/angry108202414.jpeg +0 -0
  183. package/.anya-md/lib/Assets/reaction/angry/angry108202415.jpeg +0 -0
  184. package/.anya-md/lib/Assets/reaction/angry/angry108202416.jpeg +0 -0
  185. package/.anya-md/lib/Assets/reaction/angry/angry108202417.jpeg +0 -0
  186. package/.anya-md/lib/Assets/reaction/angry/angry108202418.jpeg +0 -0
  187. package/.anya-md/lib/Assets/reaction/angry/angry108202419.jpeg +0 -0
  188. package/.anya-md/lib/Assets/reaction/angry/angry108202420.jpeg +0 -0
  189. package/.anya-md/lib/Assets/reaction/angry/angry108202421.jpeg +0 -0
  190. package/.anya-md/lib/Assets/reaction/angry/angry108202423.jpeg +0 -0
  191. package/.anya-md/lib/Assets/reaction/angry/angry108202425.jpeg +0 -0
  192. package/.anya-md/lib/Assets/reaction/angry/angry108202426.jpeg +0 -0
  193. package/.anya-md/lib/Assets/reaction/angry/angry108202427.jpeg +0 -0
  194. package/.anya-md/lib/Assets/reaction/angry/angry108202428.jpeg +0 -0
  195. package/.anya-md/lib/Assets/reaction/angry/angry108202429.jpeg +0 -0
  196. package/.anya-md/lib/Assets/reaction/angry/angry108202430.jpeg +0 -0
  197. package/.anya-md/lib/Assets/reaction/angry/angry108202431.jpeg +0 -0
  198. package/.anya-md/lib/Assets/reaction/angry/angry108202469.jpeg +0 -0
  199. package/.anya-md/lib/Assets/reaction/angry/angry10820249.jpeg +0 -0
  200. package/.anya-md/lib/Assets/reaction/angry/angry11.mp4 +0 -0
  201. package/.anya-md/lib/Assets/reaction/angry/angry12.mp4 +0 -0
  202. package/.anya-md/lib/Assets/reaction/angry/angry14.jpg +0 -0
  203. package/.anya-md/lib/Assets/reaction/angry/angry2.mp4 +0 -0
  204. package/.anya-md/lib/Assets/reaction/angry/angry3.mp4 +0 -0
  205. package/.anya-md/lib/Assets/reaction/angry/angry5.jpg +0 -0
  206. package/.anya-md/lib/Assets/reaction/angry/angry6.png +0 -0
  207. package/.anya-md/lib/Assets/reaction/angry/angry8.png +0 -0
  208. package/.anya-md/lib/Assets/reaction/angry/angry9.jpg +0 -0
  209. package/.anya-md/lib/Assets/reaction/confused/confused1.png +0 -0
  210. package/.anya-md/lib/Assets/reaction/confused/confused2.jpg +0 -0
  211. package/.anya-md/lib/Assets/reaction/confused/confused3.jpg +0 -0
  212. package/.anya-md/lib/Assets/reaction/confused/confused4.mp4 +0 -0
  213. package/.anya-md/lib/Assets/reaction/confused/confused5.jpg +0 -0
  214. package/.anya-md/lib/Assets/reaction/confused/confused6.webp +0 -0
  215. package/.anya-md/lib/Assets/reaction/confused/confused7.png +0 -0
  216. package/.anya-md/lib/Assets/reaction/confused/confused8.jpg +0 -0
  217. package/.anya-md/lib/Assets/reaction/cry/cry1.jpeg +0 -0
  218. package/.anya-md/lib/Assets/reaction/cry/cry12.jpeg +0 -0
  219. package/.anya-md/lib/Assets/reaction/cry/cry13.jpeg +0 -0
  220. package/.anya-md/lib/Assets/reaction/cry/cry14.jpeg +0 -0
  221. package/.anya-md/lib/Assets/reaction/cry/cry15.jpeg +0 -0
  222. package/.anya-md/lib/Assets/reaction/cry/cry16.jpeg +0 -0
  223. package/.anya-md/lib/Assets/reaction/cry/cry17.jpeg +0 -0
  224. package/.anya-md/lib/Assets/reaction/cry/cry18.jpeg +0 -0
  225. package/.anya-md/lib/Assets/reaction/cry/cry19.jpeg +0 -0
  226. package/.anya-md/lib/Assets/reaction/cry/cry22.jpeg +0 -0
  227. package/.anya-md/lib/Assets/reaction/cry/cry23.jpeg +0 -0
  228. package/.anya-md/lib/Assets/reaction/cry/cry5.jpeg +0 -0
  229. package/.anya-md/lib/Assets/reaction/cry/cry9.jpeg +0 -0
  230. package/.anya-md/lib/Assets/reaction/happy/happyrect1.jpeg +0 -0
  231. package/.anya-md/lib/Assets/reaction/no/_pika +0 -1
  232. package/.anya-md/lib/Assets/reaction/no/no1.jpg +0 -0
  233. package/.anya-md/lib/Assets/reaction/no/no2.png +0 -0
  234. package/.anya-md/lib/Assets/reaction/no/no3.jpg +0 -0
  235. package/.anya-md/lib/Assets/reaction/no/no4.png +0 -0
  236. package/.anya-md/lib/Assets/reaction/no/no5.png +0 -0
  237. package/.anya-md/lib/Assets/reaction/no/no6.jpg +0 -0
  238. package/.anya-md/lib/Assets/reaction/no/no7.jpg +0 -0
  239. package/.anya-md/lib/Assets/reaction/no/no8.jpg +0 -0
  240. package/.anya-md/lib/Assets/reaction/no/no9.mp4 +0 -0
  241. package/.anya-md/lib/Assets/reaction/smug/059e1bdc-e62a-4943-b85e-ea372709f6a7.jpeg +0 -0
  242. package/.anya-md/lib/Assets/reaction/smug/8fda90b3-bc98-4d24-ac10-4402c4e7be93.jpeg +0 -0
  243. package/.anya-md/lib/Assets/reaction/smug/Aqua.jpeg +0 -0
  244. package/.anya-md/lib/Assets/reaction/smug/Karasuma Chitose.jpeg +0 -0
  245. package/.anya-md/lib/Assets/reaction/smug/Smug Face - Fibel Sistine.jpeg +0 -0
  246. package/.anya-md/lib/Assets/reaction/smug/bf8d78ec-4fcc-4ff7-b3c3-91a0c5f22567.jpeg +0 -0
  247. package/.anya-md/lib/Assets/reaction/smug//330/247/330/255/331/204/330/247/331/213 /330/247/330/250/330/252/330/263/330/247/331/205/331/207 /330/264/330/261/331/212/330/261/331/207/360/237/230/255/360/237/230/255/360/237/230/255.jpeg +0 -0
  248. package/.anya-md/lib/Assets/verifyIMG.jpg +0 -0
  249. package/.anya-md/lib/Assets/welcomeGIF.mp4 +0 -0
  250. package/.anya-md/lib/database/categories.json +0 -77
  251. package/.anya-md/lib/database/cooldown.json +0 -1
  252. package/.anya-md/lib/database/disk/main.js +0 -43
  253. package/.anya-md/lib/database/emoji.js +0 -23
  254. package/.anya-md/lib/database/games/quiz/Questions.js +0 -44
  255. package/.anya-md/lib/database/games/quiz/Quiz.js +0 -169
  256. package/.anya-md/lib/database/games/quiz/database.json +0 -1
  257. package/.anya-md/lib/database/games/quiz/index.js +0 -7
  258. package/.anya-md/lib/database/json/.pika.js +0 -3
  259. package/.anya-md/lib/database/json/animeQuotes.json +0 -51062
  260. package/.anya-md/lib/database/json/bioQuotes.json +0 -5744
  261. package/.anya-md/lib/database/json/cogan.json +0 -102
  262. package/.anya-md/lib/database/json/countries.json +0 -21210
  263. package/.anya-md/lib/database/json/countries2.json +0 -1
  264. package/.anya-md/lib/database/json/couplepp.json +0 -725
  265. package/.anya-md/lib/database/json/flaming.json +0 -7
  266. package/.anya-md/lib/database/json/ganpati.json +0 -102
  267. package/.anya-md/lib/database/json/husbu.json +0 -1967
  268. package/.anya-md/lib/database/json/islamicWall.json +0 -501
  269. package/.anya-md/lib/database/json/pickupLines.json +0 -118
  270. package/.anya-md/lib/database/json/shreeram.json +0 -49
  271. package/.anya-md/lib/database/json/truthDare.json +0 -643
  272. package/.anya-md/lib/database/mongodb/README.md +0 -142
  273. package/.anya-md/lib/database/mongodb/bot.js +0 -12
  274. package/.anya-md/lib/database/mongodb/cmd.js +0 -17
  275. package/.anya-md/lib/database/mongodb/group.js +0 -22
  276. package/.anya-md/lib/database/mongodb/index.js +0 -24
  277. package/.anya-md/lib/database/mongodb/plugins.js +0 -124
  278. package/.anya-md/lib/database/mongodb/system.js +0 -34
  279. package/.anya-md/lib/database/mongodb/ui.js +0 -15
  280. package/.anya-md/lib/database/mongodb/user.js +0 -17
  281. package/.anya-md/lib/database/mongodb/warn.js +0 -136
  282. package/.anya-md/lib/database/sessions/.pika.js +0 -3
  283. package/.anya-md/lib/frameworks/index.js +0 -5
  284. package/.anya-md/lib/frameworks/reactionMedia.js +0 -91
  285. package/.anya-md/lib/lib/README.md +0 -29
  286. package/.anya-md/lib/lib/ai/README.md +0 -35
  287. package/.anya-md/lib/lib/ai/aiArt.js +0 -47
  288. package/.anya-md/lib/lib/ai/index.js +0 -7
  289. package/.anya-md/lib/lib/buttons.js +0 -530
  290. package/.anya-md/lib/lib/connectionMsg.js +0 -72
  291. package/.anya-md/lib/lib/converter.js +0 -355
  292. package/.anya-md/lib/lib/cooldown.js +0 -46
  293. package/.anya-md/lib/lib/events.js +0 -47
  294. package/.anya-md/lib/lib/functions.js +0 -47
  295. package/.anya-md/lib/lib/greeting.js +0 -115
  296. package/.anya-md/lib/lib/index.js +0 -381
  297. package/.anya-md/lib/lib/logger.js +0 -7
  298. package/.anya-md/lib/lib/maker/remini.js +0 -35
  299. package/.anya-md/lib/lib/mongoUrlFix.js +0 -46
  300. package/.anya-md/lib/lib/myfunc.js +0 -47
  301. package/.anya-md/lib/lib/plugins.js +0 -20
  302. package/.anya-md/lib/lib/prefix.js +0 -47
  303. package/.anya-md/lib/lib/scraper/README.md +0 -35
  304. package/.anya-md/lib/lib/scraper/SoundCloud.js +0 -47
  305. package/.anya-md/lib/lib/scraper/WebToons.js +0 -47
  306. package/.anya-md/lib/lib/scraper/android1.js +0 -47
  307. package/.anya-md/lib/lib/scraper/happymodSearch.js +0 -47
  308. package/.anya-md/lib/lib/scraper/index.js +0 -27
  309. package/.anya-md/lib/lib/scraper/konaChanSearch.js +0 -47
  310. package/.anya-md/lib/lib/scraper/pinterest.js +0 -47
  311. package/.anya-md/lib/lib/scraper/playstore.js +0 -47
  312. package/.anya-md/lib/lib/scraper/ringtone.js +0 -47
  313. package/.anya-md/lib/lib/scraper/steam.js +0 -47
  314. package/.anya-md/lib/lib/scraper/trendingTwitter.js +0 -51
  315. package/.anya-md/lib/lib/scraper/wattpad.js +0 -61
  316. package/.anya-md/lib/lib/scraper/wikipediaSearch.js +0 -42
  317. package/.anya-md/lib/lib/scraper.js +0 -47
  318. package/.anya-md/lib/lib/session.js +0 -47
  319. package/.anya-md/lib/lib/session2.js +0 -47
  320. package/.anya-md/lib/lib/similar.js +0 -47
  321. package/.anya-md/lib/lib/stylish-font.js +0 -2302
  322. package/.anya-md/lib/lib/unicode.js +0 -877
  323. package/.anya-md/lib/lib/upload/index.js +0 -3
  324. package/.anya-md/lib/lib/upload/webp2mp4File.js +0 -56
  325. package/.anya-md/lib/lib/ytdl-core.js +0 -47
  326. package/.anya-md/lib/plugins/README.md +0 -83
  327. package/.anya-md/lib/plugins/_menu.js +0 -810
  328. package/.anya-md/lib/plugins/_plugins.js +0 -239
  329. package/.anya-md/lib/plugins/admins.js +0 -689
  330. package/.anya-md/lib/plugins/ai.js +0 -160
  331. package/.anya-md/lib/plugins/autoreply.js +0 -101
  332. package/.anya-md/lib/plugins/broadcast.js +0 -204
  333. package/.anya-md/lib/plugins/convert.js +0 -293
  334. package/.anya-md/lib/plugins/core.js +0 -941
  335. package/.anya-md/lib/plugins/download.js +0 -373
  336. package/.anya-md/lib/plugins/fun.js +0 -75
  337. package/.anya-md/lib/plugins/games.js +0 -33
  338. package/.anya-md/lib/plugins/gcswitches.js +0 -204
  339. package/.anya-md/lib/plugins/general.js +0 -456
  340. package/.anya-md/lib/plugins/maker.js +0 -41
  341. package/.anya-md/lib/plugins/owner.js +0 -1049
  342. package/.anya-md/lib/plugins/religious.js +0 -81
  343. package/.anya-md/lib/plugins/search.js +0 -902
  344. package/.anya-md/lib/plugins/stalker.js +0 -187
  345. package/.anya-md/lib/plugins/sticker.js +0 -125
  346. package/.anya-md/lib/plugins/tools.js +0 -193
  347. package/.anya-md/lib/plugins/youtube.js +0 -204
  348. package/.anya-md/package.json +0 -75
  349. package/.anya-md/railway.json +0 -12
  350. package/.anya-md/render.yaml +0 -48
  351. package/.anya-md/replit.nix +0 -18
  352. package/.bash_history +0 -500
  353. package/.config/gh/config.yml +0 -19
  354. package/.config/gh/hosts.yml +0 -11
  355. package/.config/ngrok/ngrok.yml +0 -3
  356. package/.config/yarn/global/package.json +0 -5
  357. package/.gitconfig +0 -772
  358. package/.node_repl_history +0 -0
  359. package/.npm/_cacache/content-v2/sha512/02/b3/d1abf5af06222f7de440ab1b057deb21f9dfb0ce0a8f5064b2ba00595933bbcbbaa040b4616f951d9f8ba48d67491df1198a4831fbd8ee26eb27dde36511 +0 -0
  360. package/.npm/_cacache/content-v2/sha512/49/7b/0cdbb4861f7c9358a7367ca478498371b269efb8143d75de901ed1169a267f56a68e60f008952f3ebcc727dbb60bb401011af3514a1dd33cdbed8d981fa8 +0 -0
  361. package/.npm/_cacache/content-v2/sha512/54/3a/647bceb49b7632e6e700cb9f1b66f0f528d4ca71f4f73e76a1e7c8c50b563a2d0bb7734c18f93e6c03b7ea93167db35db0e1999ab13b08ed6b250eed2d2a +0 -1
  362. package/.npm/_cacache/content-v2/sha512/56/7c/4d5820233a7278225351642f7355d9889af42e7efbbfe27d6b201727efad972a59fa32063c7e1159d01dbf27ba014095ca1349ec0d0767746c39441178fa +0 -1
  363. package/.npm/_cacache/content-v2/sha512/89/88/d295c7e4f4d0f4621676d4c499bea2a1c72b0c31a84ff78a8bb8f83042da2bcf596e664c021d21025b296cdd4aecb57a036ea366e39466df5a129fa471df +0 -0
  364. package/.npm/_cacache/content-v2/sha512/8b/46/42882ebb46a975b0ce6b9cdea357190c41b51bb59a21df41c575418850b28115921e130709846d8ff9cabeae72544ec37a48ee7ccb074fe94da925250e55 +0 -1
  365. package/.npm/_cacache/content-v2/sha512/dd/0d/f856b793da0619d18260556498dfff13391593abb6d6a582bf052f03ba35a03a1444bf5c2d40b7515d268ec2cb3e67a17a42f09f5e668c3bb9b743e3b8a7 +0 -1
  366. package/.npm/_cacache/content-v2/sha512/dd/15/702501c36ce653a003d2b101034a0cb9c0fd262fa77797f1a286a161a0b2dce51ef13199e9a3fa58008bdbbf4646a33b6f1a24a2807691093cb89beefb00 +0 -1
  367. package/.npm/_cacache/index-v5/35/f9/e8cc076ef93c1bc40804d3fe05171053366095c922f515b1fab2b580116f +0 -4
  368. package/.npm/_cacache/index-v5/6a/a2/780c77f928115d4dad58a9dc4fa241de8d914abfff994e44602cc93a697c +0 -2
  369. package/.npm/_cacache/index-v5/71/ba/d0bb16fddeb617bbbb3713f46750d1bf5b57742abb6feb6dee4d16c68da4 +0 -4
  370. package/.npm/_cacache/index-v5/72/ae/c69532318093b3bd13618450ca5c26adc018a4afc0e020786207068593cf +0 -2
  371. package/.npm/_cacache/index-v5/7e/5e/9683ad4854f4201d7e53bf9beb2aefafa7b1efbb2c6ac7b36b78d0b218c8 +0 -2
  372. package/.npm/_cacache/index-v5/eb/a0/19e529094c594367a9e1aa68096a313d3dc5509d410761bf50122826a6d2 +0 -4
  373. package/.npm/_cacache/index-v5/f1/fa/2d2f12de549683d1275ec0f2ff15610b408fd89d1b7a755ddb7b77c00371 +0 -2
  374. package/.npm/_logs/2024-10-03T05_52_01_853Z-debug-0.log +0 -52
  375. package/.npm/_logs/2024-10-03T05_52_08_135Z-debug-0.log +0 -52
  376. package/.npm/_logs/2024-10-03T05_52_14_087Z-debug-0.log +0 -52
  377. package/.npm/_logs/2024-10-03T05_52_22_730Z-debug-0.log +0 -52
  378. package/.npm/_logs/2024-10-03T05_52_29_410Z-debug-0.log +0 -52
  379. package/.npm/_logs/2024-10-03T05_52_35_375Z-debug-0.log +0 -52
  380. package/.npm/_logs/2024-10-03T15_32_57_465Z-debug-0.log +0 -20
  381. package/.npm/_logs/2024-10-10T05_40_23_847Z-debug-0.log +0 -254
  382. package/.npm/_logs/2024-10-10T05_40_50_397Z-debug-0.log +0 -73
  383. package/.npm/_logs/2024-10-10T05_40_59_931Z-debug-0.log +0 -52
  384. package/.npm/_logs/2024-10-10T05_42_07_969Z-debug-0.log +0 -52
  385. package/.pm2/logs/anya-error.log +0 -0
  386. package/.pm2/logs/anya-out.log +0 -59
  387. package/.pm2/logs/anya-v2-error.log +0 -2184
  388. package/.pm2/logs/anya-v2-out.log +0 -362
  389. package/.pm2/module_conf.json +0 -1
  390. package/.pm2/pm2.log +0 -919
  391. package/.pm2/pm2.pid +0 -1
  392. package/.pm2/touch +0 -1
  393. package/.ssh/authorized_keys +0 -0
  394. package/.termux/termux.properties +0 -180
  395. package/.wget-hsts +0 -5
@@ -0,0 +1,779 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.makeMessagesSocket = void 0;
7
+ const boom_1 = require("@hapi/boom");
8
+ const node_cache_1 = __importDefault(require("node-cache"));
9
+ const WAProto_1 = require("../../WAProto");
10
+ const Defaults_1 = require("../Defaults");
11
+ const Utils_1 = require("../Utils");
12
+ const link_preview_1 = require("../Utils/link-preview");
13
+ const WABinary_1 = require("../WABinary");
14
+ const newsletter_1 = require("./newsletter");
15
+ var ListType = WAProto_1.proto.Message.ListMessage.ListType;
16
+ const makeMessagesSocket = (config) => {
17
+ const { logger, linkPreviewImageThumbnailWidth, generateHighQualityLinkPreview, options: axiosOptions, patchMessageBeforeSending, cachedGroupMetadata, } = config;
18
+ const sock = (0, newsletter_1.makeNewsletterSocket)(config);
19
+ const { ev, authState, processingMutex, signalRepository, upsertMessage, query, fetchPrivacySettings, generateMessageTag, sendNode, groupMetadata, groupToggleEphemeral, } = sock;
20
+ const userDevicesCache = config.userDevicesCache || new node_cache_1.default({
21
+ stdTTL: Defaults_1.DEFAULT_CACHE_TTLS.USER_DEVICES,
22
+ useClones: false
23
+ });
24
+ let mediaConn;
25
+ const refreshMediaConn = async (forceGet = false) => {
26
+ const media = await mediaConn;
27
+ if (!media || forceGet || (new Date().getTime() - media.fetchDate.getTime()) > media.ttl * 1000) {
28
+ mediaConn = (async () => {
29
+ const result = await query({
30
+ tag: 'iq',
31
+ attrs: {
32
+ type: 'set',
33
+ xmlns: 'w:m',
34
+ to: WABinary_1.S_WHATSAPP_NET,
35
+ },
36
+ content: [{ tag: 'media_conn', attrs: {} }]
37
+ });
38
+ const mediaConnNode = (0, WABinary_1.getBinaryNodeChild)(result, 'media_conn');
39
+ const node = {
40
+ hosts: (0, WABinary_1.getBinaryNodeChildren)(mediaConnNode, 'host').map(({ attrs }) => ({
41
+ hostname: attrs.hostname,
42
+ maxContentLengthBytes: +attrs.maxContentLengthBytes,
43
+ })),
44
+ auth: mediaConnNode.attrs.auth,
45
+ ttl: +mediaConnNode.attrs.ttl,
46
+ fetchDate: new Date()
47
+ };
48
+ logger.debug('fetched media conn');
49
+ return node;
50
+ })();
51
+ }
52
+ return mediaConn;
53
+ };
54
+ /**
55
+ * generic send receipt function
56
+ * used for receipts of phone call, read, delivery etc.
57
+ * */
58
+ const sendReceipt = async (jid, participant, messageIds, type) => {
59
+ const node = {
60
+ tag: 'receipt',
61
+ attrs: {
62
+ id: messageIds[0],
63
+ },
64
+ };
65
+ const isReadReceipt = type === 'read' || type === 'read-self';
66
+ if (isReadReceipt) {
67
+ node.attrs.t = (0, Utils_1.unixTimestampSeconds)().toString();
68
+ }
69
+ if (type === 'sender' && (0, WABinary_1.isJidUser)(jid)) {
70
+ node.attrs.recipient = jid;
71
+ node.attrs.to = participant;
72
+ }
73
+ else {
74
+ node.attrs.to = jid;
75
+ if (participant) {
76
+ node.attrs.participant = participant;
77
+ }
78
+ }
79
+ if (type) {
80
+ node.attrs.type = (0, WABinary_1.isJidNewsletter)(jid) ? 'read-self' : type;
81
+ }
82
+ const remainingMessageIds = messageIds.slice(1);
83
+ if (remainingMessageIds.length) {
84
+ node.content = [
85
+ {
86
+ tag: 'list',
87
+ attrs: {},
88
+ content: remainingMessageIds.map(id => ({
89
+ tag: 'item',
90
+ attrs: { id }
91
+ }))
92
+ }
93
+ ];
94
+ }
95
+ logger.debug({ attrs: node.attrs, messageIds }, 'sending receipt for messages');
96
+ await sendNode(node);
97
+ };
98
+ /** Correctly bulk send receipts to multiple chats, participants */
99
+ const sendReceipts = async (keys, type) => {
100
+ const recps = (0, Utils_1.aggregateMessageKeysNotFromMe)(keys);
101
+ for (const { jid, participant, messageIds } of recps) {
102
+ await sendReceipt(jid, participant, messageIds, type);
103
+ }
104
+ };
105
+ /** Bulk read messages. Keys can be from different chats & participants */
106
+ const readMessages = async (keys) => {
107
+ const privacySettings = await fetchPrivacySettings();
108
+ // based on privacy settings, we have to change the read type
109
+ const readType = privacySettings.readreceipts === 'all' ? 'read' : 'read-self';
110
+ await sendReceipts(keys, readType);
111
+ };
112
+ /** Fetch all the devices we've to send a message to */
113
+ const getUSyncDevices = async (jids, useCache, ignoreZeroDevices) => {
114
+ var _a;
115
+ const deviceResults = [];
116
+ if (!useCache) {
117
+ logger.debug('not using cache for devices');
118
+ }
119
+ const users = [];
120
+ jids = Array.from(new Set(jids));
121
+ for (let jid of jids) {
122
+ const user = (_a = (0, WABinary_1.jidDecode)(jid)) === null || _a === void 0 ? void 0 : _a.user;
123
+ jid = (0, WABinary_1.jidNormalizedUser)(jid);
124
+ const devices = userDevicesCache.get(user);
125
+ if (devices && useCache) {
126
+ deviceResults.push(...devices);
127
+ logger.trace({ user }, 'using cache for devices');
128
+ }
129
+ else {
130
+ users.push({ tag: 'user', attrs: { jid } });
131
+ }
132
+ }
133
+ if (!users.length) {
134
+ return deviceResults;
135
+ }
136
+ const iq = {
137
+ tag: 'iq',
138
+ attrs: {
139
+ to: WABinary_1.S_WHATSAPP_NET,
140
+ type: 'get',
141
+ xmlns: 'usync',
142
+ },
143
+ content: [
144
+ {
145
+ tag: 'usync',
146
+ attrs: {
147
+ sid: generateMessageTag(),
148
+ mode: 'query',
149
+ last: 'true',
150
+ index: '0',
151
+ context: 'message',
152
+ },
153
+ content: [
154
+ {
155
+ tag: 'query',
156
+ attrs: {},
157
+ content: [
158
+ {
159
+ tag: 'devices',
160
+ attrs: { version: '2' }
161
+ }
162
+ ]
163
+ },
164
+ { tag: 'list', attrs: {}, content: users }
165
+ ]
166
+ },
167
+ ],
168
+ };
169
+ const result = await query(iq);
170
+ const extracted = (0, Utils_1.extractDeviceJids)(result, authState.creds.me.id, ignoreZeroDevices);
171
+ const deviceMap = {};
172
+ for (const item of extracted) {
173
+ deviceMap[item.user] = deviceMap[item.user] || [];
174
+ deviceMap[item.user].push(item);
175
+ deviceResults.push(item);
176
+ }
177
+ for (const key in deviceMap) {
178
+ userDevicesCache.set(key, deviceMap[key]);
179
+ }
180
+ return deviceResults;
181
+ };
182
+ const assertSessions = async (jids, force) => {
183
+ let didFetchNewSession = false;
184
+ let jidsRequiringFetch = [];
185
+ if (force) {
186
+ jidsRequiringFetch = jids;
187
+ }
188
+ else {
189
+ const addrs = jids.map(jid => (signalRepository
190
+ .jidToSignalProtocolAddress(jid)));
191
+ const sessions = await authState.keys.get('session', addrs);
192
+ for (const jid of jids) {
193
+ const signalId = signalRepository
194
+ .jidToSignalProtocolAddress(jid);
195
+ if (!sessions[signalId]) {
196
+ jidsRequiringFetch.push(jid);
197
+ }
198
+ }
199
+ }
200
+ if (jidsRequiringFetch.length) {
201
+ logger.debug({ jidsRequiringFetch }, 'fetching sessions');
202
+ const result = await query({
203
+ tag: 'iq',
204
+ attrs: {
205
+ xmlns: 'encrypt',
206
+ type: 'get',
207
+ to: WABinary_1.S_WHATSAPP_NET,
208
+ },
209
+ content: [
210
+ {
211
+ tag: 'key',
212
+ attrs: {},
213
+ content: jidsRequiringFetch.map(jid => ({
214
+ tag: 'user',
215
+ attrs: { jid },
216
+ }))
217
+ }
218
+ ]
219
+ });
220
+ await (0, Utils_1.parseAndInjectE2ESessions)(result, signalRepository);
221
+ didFetchNewSession = true;
222
+ }
223
+ return didFetchNewSession;
224
+ };
225
+ const sendPeerDataOperationMessage = async (pdoMessage) => {
226
+ var _a;
227
+ //TODO: for later, abstract the logic to send a Peer Message instead of just PDO - useful for App State Key Resync with phone
228
+ if (!((_a = authState.creds.me) === null || _a === void 0 ? void 0 : _a.id)) {
229
+ throw new boom_1.Boom('Not authenticated');
230
+ }
231
+ const protocolMessage = {
232
+ protocolMessage: {
233
+ peerDataOperationRequestMessage: pdoMessage,
234
+ type: WAProto_1.proto.Message.ProtocolMessage.Type.PEER_DATA_OPERATION_REQUEST_MESSAGE
235
+ }
236
+ };
237
+ const meJid = (0, WABinary_1.jidNormalizedUser)(authState.creds.me.id);
238
+ const msgId = await relayMessage(meJid, protocolMessage, {
239
+ additionalAttributes: {
240
+ category: 'peer',
241
+ // eslint-disable-next-line camelcase
242
+ push_priority: 'high_force',
243
+ },
244
+ });
245
+ return msgId;
246
+ };
247
+ const createParticipantNodes = async (jids, message, extraAttrs) => {
248
+ const patched = await patchMessageBeforeSending(message, jids);
249
+ const bytes = (0, Utils_1.encodeWAMessage)(patched);
250
+ let shouldIncludeDeviceIdentity = false;
251
+ const nodes = await Promise.all(jids.map(async (jid) => {
252
+ const { type, ciphertext } = await signalRepository
253
+ .encryptMessage({ jid, data: bytes });
254
+ if (type === 'pkmsg') {
255
+ shouldIncludeDeviceIdentity = true;
256
+ }
257
+ const node = {
258
+ tag: 'to',
259
+ attrs: { jid },
260
+ content: [{
261
+ tag: 'enc',
262
+ attrs: {
263
+ v: '2',
264
+ type,
265
+ ...extraAttrs || {}
266
+ },
267
+ content: ciphertext
268
+ }]
269
+ };
270
+ return node;
271
+ }));
272
+ return { nodes, shouldIncludeDeviceIdentity };
273
+ };
274
+ const relayMessage = async (jid, message, { messageId: msgId, participant, additionalAttributes, additionalNodes, useUserDevicesCache, useCachedGroupMetadata, statusJidList }) => {
275
+ var _a;
276
+ const meId = authState.creds.me.id;
277
+ let shouldIncludeDeviceIdentity = false;
278
+ const { user, server } = (0, WABinary_1.jidDecode)(jid);
279
+ const statusJid = 'status@broadcast';
280
+ const isGroup = server === 'g.us';
281
+ const isNewsletter = server == 'newsletter';
282
+ const isStatus = jid === statusJid;
283
+ const isLid = server === 'lid';
284
+ msgId = msgId || (0, Utils_1.generateMessageIDV3)((_a = sock.user) === null || _a === void 0 ? void 0 : _a.id);
285
+ useUserDevicesCache = useUserDevicesCache !== false;
286
+ useCachedGroupMetadata = useCachedGroupMetadata !== false && !isStatus;
287
+ const participants = [];
288
+ const destinationJid = (!isStatus) ? (0, WABinary_1.jidEncode)(user, isLid ? 'lid' : isGroup ? 'g.us' : isNewsletter ? 'newsletter' : 's.whatsapp.net') : statusJid;
289
+ const binaryNodeContent = [];
290
+ const devices = [];
291
+ const meMsg = {
292
+ deviceSentMessage: {
293
+ destinationJid,
294
+ message
295
+ }
296
+ };
297
+ const extraAttrs = {};
298
+ if (participant) {
299
+ // when the retry request is not for a group
300
+ // only send to the specific device that asked for a retry
301
+ // otherwise the message is sent out to every device that should be a recipient
302
+ if (!isGroup && !isStatus) {
303
+ additionalAttributes = { ...additionalAttributes, 'device_fanout': 'false' };
304
+ }
305
+ const { user, device } = (0, WABinary_1.jidDecode)(participant.jid);
306
+ devices.push({ user, device });
307
+ }
308
+ await authState.keys.transaction(async () => {
309
+ var _a, _b, _c, _d, _e;
310
+ const mediaType = getMediaType(message);
311
+ if (mediaType) {
312
+ extraAttrs['mediatype'] = mediaType;
313
+ }
314
+ if ((_a = (0, Utils_1.normalizeMessageContent)(message)) === null || _a === void 0 ? void 0 : _a.pinInChatMessage) {
315
+ extraAttrs['decrypt-fail'] = 'hide';
316
+ }
317
+ if (isGroup || isStatus) {
318
+ const [groupData, senderKeyMap] = await Promise.all([
319
+ (async () => {
320
+ let groupData = useCachedGroupMetadata && cachedGroupMetadata ? await cachedGroupMetadata(jid) : undefined;
321
+ if (groupData && Array.isArray(groupData === null || groupData === void 0 ? void 0 : groupData.participants)) {
322
+ logger.trace({ jid, participants: groupData.participants.length }, 'using cached group metadata');
323
+ }
324
+ else if (!isStatus) {
325
+ groupData = await groupMetadata(jid);
326
+ }
327
+ return groupData;
328
+ })(),
329
+ (async () => {
330
+ if (!participant && !isStatus) {
331
+ const result = await authState.keys.get('sender-key-memory', [jid]);
332
+ return result[jid] || {};
333
+ }
334
+ return {};
335
+ })()
336
+ ]);
337
+ if (!participant) {
338
+ const participantsList = (groupData && !isStatus) ? groupData.participants.map(p => p.id) : [];
339
+ if (isStatus && statusJidList) {
340
+ participantsList.push(...statusJidList);
341
+ }
342
+ const additionalDevices = await getUSyncDevices(participantsList, !!useUserDevicesCache, false);
343
+ devices.push(...additionalDevices);
344
+ }
345
+ const patched = await patchMessageBeforeSending(message, devices.map(d => (0, WABinary_1.jidEncode)(d.user, isLid ? 'lid' : 's.whatsapp.net', d.device)));
346
+ const bytes = (0, Utils_1.encodeWAMessage)(patched);
347
+ const { ciphertext, senderKeyDistributionMessage } = await signalRepository.encryptGroupMessage({
348
+ group: destinationJid,
349
+ data: bytes,
350
+ meId,
351
+ });
352
+ const senderKeyJids = [];
353
+ // ensure a connection is established with every device
354
+ for (const { user, device } of devices) {
355
+ const jid = (0, WABinary_1.jidEncode)(user, isLid ? 'lid' : 's.whatsapp.net', device);
356
+ if (!senderKeyMap[jid] || !!participant) {
357
+ senderKeyJids.push(jid);
358
+ // store that this person has had the sender keys sent to them
359
+ senderKeyMap[jid] = true;
360
+ }
361
+ }
362
+ // if there are some participants with whom the session has not been established
363
+ // if there are, we re-send the senderkey
364
+ if (senderKeyJids.length) {
365
+ logger.debug({ senderKeyJids }, 'sending new sender key');
366
+ const senderKeyMsg = {
367
+ senderKeyDistributionMessage: {
368
+ axolotlSenderKeyDistributionMessage: senderKeyDistributionMessage,
369
+ groupId: destinationJid
370
+ }
371
+ };
372
+ await assertSessions(senderKeyJids, false);
373
+ const result = await createParticipantNodes(senderKeyJids, senderKeyMsg, extraAttrs);
374
+ shouldIncludeDeviceIdentity = shouldIncludeDeviceIdentity || result.shouldIncludeDeviceIdentity;
375
+ participants.push(...result.nodes);
376
+ }
377
+ binaryNodeContent.push({
378
+ tag: 'enc',
379
+ attrs: { v: '2', type: 'skmsg' },
380
+ content: ciphertext
381
+ });
382
+ await authState.keys.set({ 'sender-key-memory': { [jid]: senderKeyMap } });
383
+ }
384
+ else if (isNewsletter) {
385
+ const patched = await patchMessageBeforeSending(message, []);
386
+ const bytes = (0, Utils_1.encodeNewsletterMessage)(patched);
387
+ binaryNodeContent.push({
388
+ tag: 'plaintext',
389
+ attrs: {},
390
+ content: bytes
391
+ });
392
+ }
393
+ else {
394
+ const { user: meUser, device: meDevice } = (0, WABinary_1.jidDecode)(meId);
395
+ if (!participant) {
396
+ devices.push({ user });
397
+ // do not send message to self if the device is 0 (mobile)
398
+ if (!((additionalAttributes === null || additionalAttributes === void 0 ? void 0 : additionalAttributes['category']) === 'peer' && user === meUser)) {
399
+ if (meDevice !== undefined && meDevice !== 0) {
400
+ devices.push({ user: meUser });
401
+ }
402
+ const additionalDevices = await getUSyncDevices([meId, jid], !!useUserDevicesCache, true);
403
+ devices.push(...additionalDevices);
404
+ }
405
+ }
406
+ const allJids = [];
407
+ const meJids = [];
408
+ const otherJids = [];
409
+ for (const { user, device } of devices) {
410
+ const isMe = user === meUser;
411
+ const jid = (0, WABinary_1.jidEncode)(isMe && isLid ? ((_c = (_b = authState.creds) === null || _b === void 0 ? void 0 : _b.me) === null || _c === void 0 ? void 0 : _c.lid.split(':')[0]) || user : user, isLid ? 'lid' : 's.whatsapp.net', device);
412
+ if (isMe) {
413
+ meJids.push(jid);
414
+ }
415
+ else {
416
+ otherJids.push(jid);
417
+ }
418
+ allJids.push(jid);
419
+ }
420
+ await assertSessions(allJids, false);
421
+ const [{ nodes: meNodes, shouldIncludeDeviceIdentity: s1 }, { nodes: otherNodes, shouldIncludeDeviceIdentity: s2 }] = await Promise.all([
422
+ createParticipantNodes(meJids, meMsg, extraAttrs),
423
+ createParticipantNodes(otherJids, message, extraAttrs)
424
+ ]);
425
+ participants.push(...meNodes);
426
+ participants.push(...otherNodes);
427
+ shouldIncludeDeviceIdentity = shouldIncludeDeviceIdentity || s1 || s2;
428
+ }
429
+ if (participants.length) {
430
+ if ((additionalAttributes === null || additionalAttributes === void 0 ? void 0 : additionalAttributes['category']) === 'peer') {
431
+ const peerNode = (_e = (_d = participants[0]) === null || _d === void 0 ? void 0 : _d.content) === null || _e === void 0 ? void 0 : _e[0];
432
+ if (peerNode) {
433
+ binaryNodeContent.push(peerNode); // push only enc
434
+ }
435
+ }
436
+ else {
437
+ binaryNodeContent.push({
438
+ tag: 'participants',
439
+ attrs: {},
440
+ content: participants
441
+ });
442
+ }
443
+ }
444
+ const stanza = {
445
+ tag: 'message',
446
+ attrs: {
447
+ id: msgId,
448
+ type: 'text',
449
+ ...(additionalAttributes || {})
450
+ },
451
+ content: binaryNodeContent
452
+ };
453
+ // if the participant to send to is explicitly specified (generally retry recp)
454
+ // ensure the message is only sent to that person
455
+ // if a retry receipt is sent to everyone -- it'll fail decryption for everyone else who received the msg
456
+ if (participant) {
457
+ if ((0, WABinary_1.isJidGroup)(destinationJid)) {
458
+ stanza.attrs.to = destinationJid;
459
+ stanza.attrs.participant = participant.jid;
460
+ }
461
+ else if ((0, WABinary_1.areJidsSameUser)(participant.jid, meId)) {
462
+ stanza.attrs.to = participant.jid;
463
+ stanza.attrs.recipient = destinationJid;
464
+ }
465
+ else {
466
+ stanza.attrs.to = participant.jid;
467
+ }
468
+ }
469
+ else {
470
+ stanza.attrs.to = destinationJid;
471
+ }
472
+ if (shouldIncludeDeviceIdentity) {
473
+ stanza.content.push({
474
+ tag: 'device-identity',
475
+ attrs: {},
476
+ content: (0, Utils_1.encodeSignedDeviceIdentity)(authState.creds.account, true)
477
+ });
478
+ logger.debug({ jid }, 'adding device identity');
479
+ }
480
+ if (additionalNodes && additionalNodes.length > 0) {
481
+ stanza.content.push(...additionalNodes);
482
+ }
483
+ /**
484
+ const buttonType = getButtonType(message)
485
+ if(buttonType) {
486
+ (stanza.content as BinaryNode[]).push({
487
+ tag: 'biz',
488
+ attrs: { },
489
+ content: [
490
+ {
491
+ tag: buttonType,
492
+ attrs: getButtonArgs(message),
493
+ }
494
+ ]
495
+ })
496
+
497
+ logger.debug({ jid }, 'adding business node')
498
+ }
499
+ */
500
+ logger.debug({ msgId }, `sending message to ${participants.length} devices`);
501
+ await sendNode(stanza);
502
+ });
503
+ return msgId;
504
+ };
505
+ const getTypeMessage = (msg) => {
506
+ if (msg.viewOnceMessage) {
507
+ return getTypeMessage(msg.viewOnceMessage.message);
508
+ }
509
+ else if (msg.viewOnceMessageV2) {
510
+ return getTypeMessage(msg.viewOnceMessageV2.message);
511
+ }
512
+ else if (msg.viewOnceMessageV2Extension) {
513
+ return getTypeMessage(msg.viewOnceMessageV2Extension.message);
514
+ }
515
+ else if (msg.ephemeralMessage) {
516
+ return getTypeMessage(msg.ephemeralMessage.message);
517
+ }
518
+ else if (msg.documentWithCaptionMessage) {
519
+ return getTypeMessage(msg.documentWithCaptionMessage.message);
520
+ }
521
+ else if (msg.reactionMessage) {
522
+ return 'reaction';
523
+ }
524
+ else if (msg.pollCreationMessage || msg.pollCreationMessageV2 || msg.pollCreationMessageV3 || msg.pollUpdateMessage) {
525
+ return 'reaction';
526
+ }
527
+ else if (getMediaType(msg)) {
528
+ return 'media';
529
+ }
530
+ else {
531
+ return 'text';
532
+ }
533
+ };
534
+ const getMediaType = (message) => {
535
+ if (message.imageMessage) {
536
+ return 'image';
537
+ }
538
+ else if (message.videoMessage) {
539
+ return message.videoMessage.gifPlayback ? 'gif' : 'video';
540
+ }
541
+ else if (message.audioMessage) {
542
+ return message.audioMessage.ptt ? 'ptt' : 'audio';
543
+ }
544
+ else if (message.contactMessage) {
545
+ return 'vcard';
546
+ }
547
+ else if (message.documentMessage) {
548
+ return 'document';
549
+ }
550
+ else if (message.contactsArrayMessage) {
551
+ return 'contact_array';
552
+ }
553
+ else if (message.liveLocationMessage) {
554
+ return 'livelocation';
555
+ }
556
+ else if (message.stickerMessage) {
557
+ return 'sticker';
558
+ }
559
+ else if (message.listMessage) {
560
+ return 'list';
561
+ }
562
+ else if (message.listResponseMessage) {
563
+ return 'list_response';
564
+ }
565
+ else if (message.buttonsResponseMessage) {
566
+ return 'buttons_response';
567
+ }
568
+ else if (message.orderMessage) {
569
+ return 'order';
570
+ }
571
+ else if (message.productMessage) {
572
+ return 'product';
573
+ }
574
+ else if (message.interactiveResponseMessage) {
575
+ return 'native_flow_response';
576
+ }
577
+ else if (message.groupInviteMessage) {
578
+ return 'url';
579
+ }
580
+ };
581
+ const getButtonType = (message) => {
582
+ if (message.buttonsMessage) {
583
+ return 'buttons';
584
+ }
585
+ else if (message.buttonsResponseMessage) {
586
+ return 'buttons_response';
587
+ }
588
+ else if (message.interactiveResponseMessage) {
589
+ return 'interactive_response';
590
+ }
591
+ else if (message.listMessage) {
592
+ return 'list';
593
+ }
594
+ else if (message.listResponseMessage) {
595
+ return 'list_response';
596
+ }
597
+ };
598
+ const getButtonArgs = (message) => {
599
+ if (message.templateMessage) {
600
+ // TODO: Add attributes
601
+ return {};
602
+ }
603
+ else if (message.listMessage) {
604
+ const type = message.listMessage.listType;
605
+ if (!type) {
606
+ throw new boom_1.Boom('Expected list type inside message');
607
+ }
608
+ return { v: '2', type: ListType[type].toLowerCase() };
609
+ }
610
+ else {
611
+ return {};
612
+ }
613
+ };
614
+ const getPrivacyTokens = async (jids) => {
615
+ const t = (0, Utils_1.unixTimestampSeconds)().toString();
616
+ const result = await query({
617
+ tag: 'iq',
618
+ attrs: {
619
+ to: WABinary_1.S_WHATSAPP_NET,
620
+ type: 'set',
621
+ xmlns: 'privacy'
622
+ },
623
+ content: [
624
+ {
625
+ tag: 'tokens',
626
+ attrs: {},
627
+ content: jids.map(jid => ({
628
+ tag: 'token',
629
+ attrs: {
630
+ jid: (0, WABinary_1.jidNormalizedUser)(jid),
631
+ t,
632
+ type: 'trusted_contact'
633
+ }
634
+ }))
635
+ }
636
+ ]
637
+ });
638
+ return result;
639
+ };
640
+ const waUploadToServer = (0, Utils_1.getWAUploadToServer)(config, refreshMediaConn);
641
+ const waitForMsgMediaUpdate = (0, Utils_1.bindWaitForEvent)(ev, 'messages.media-update');
642
+ return {
643
+ ...sock,
644
+ getPrivacyTokens,
645
+ assertSessions,
646
+ relayMessage,
647
+ sendReceipt,
648
+ sendReceipts,
649
+ // getButtonArgs,
650
+ readMessages,
651
+ refreshMediaConn,
652
+ waUploadToServer,
653
+ fetchPrivacySettings,
654
+ sendPeerDataOperationMessage,
655
+ createParticipantNodes,
656
+ getUSyncDevices,
657
+ updateMediaMessage: async (message) => {
658
+ const content = (0, Utils_1.assertMediaContent)(message.message);
659
+ const mediaKey = content.mediaKey;
660
+ const meId = authState.creds.me.id;
661
+ const node = (0, Utils_1.encryptMediaRetryRequest)(message.key, mediaKey, meId);
662
+ let error = undefined;
663
+ await Promise.all([
664
+ sendNode(node),
665
+ waitForMsgMediaUpdate(update => {
666
+ const result = update.find(c => c.key.id === message.key.id);
667
+ if (result) {
668
+ if (result.error) {
669
+ error = result.error;
670
+ }
671
+ else {
672
+ try {
673
+ const media = (0, Utils_1.decryptMediaRetryData)(result.media, mediaKey, result.key.id);
674
+ if (media.result !== WAProto_1.proto.MediaRetryNotification.ResultType.SUCCESS) {
675
+ const resultStr = WAProto_1.proto.MediaRetryNotification.ResultType[media.result];
676
+ throw new boom_1.Boom(`Media re-upload failed by device (${resultStr})`, { data: media, statusCode: (0, Utils_1.getStatusCodeForMediaRetry)(media.result) || 404 });
677
+ }
678
+ content.directPath = media.directPath;
679
+ content.url = (0, Utils_1.getUrlFromDirectPath)(content.directPath);
680
+ logger.debug({ directPath: media.directPath, key: result.key }, 'media update successful');
681
+ }
682
+ catch (err) {
683
+ error = err;
684
+ }
685
+ }
686
+ return true;
687
+ }
688
+ })
689
+ ]);
690
+ if (error) {
691
+ throw error;
692
+ }
693
+ ev.emit('messages.update', [
694
+ { key: message.key, update: { message: message.message } }
695
+ ]);
696
+ return message;
697
+ },
698
+ sendMessage: async (jid, content, options = {}) => {
699
+ var _a, _b, _c;
700
+ const userJid = authState.creds.me.id;
701
+ if (typeof content === 'object' &&
702
+ 'disappearingMessagesInChat' in content &&
703
+ typeof content['disappearingMessagesInChat'] !== 'undefined' &&
704
+ (0, WABinary_1.isJidGroup)(jid)) {
705
+ const { disappearingMessagesInChat } = content;
706
+ const value = typeof disappearingMessagesInChat === 'boolean' ?
707
+ (disappearingMessagesInChat ? Defaults_1.WA_DEFAULT_EPHEMERAL : 0) :
708
+ disappearingMessagesInChat;
709
+ await groupToggleEphemeral(jid, value);
710
+ }
711
+ else {
712
+ let mediaHandle;
713
+ const fullMsg = await (0, Utils_1.generateWAMessage)(jid, content, {
714
+ logger,
715
+ userJid,
716
+ getUrlInfo: text => (0, link_preview_1.getUrlInfo)(text, {
717
+ thumbnailWidth: linkPreviewImageThumbnailWidth,
718
+ fetchOpts: {
719
+ timeout: 3000,
720
+ ...axiosOptions || {}
721
+ },
722
+ logger,
723
+ uploadImage: generateHighQualityLinkPreview
724
+ ? waUploadToServer
725
+ : undefined
726
+ }),
727
+ //TODO: CACHE
728
+ getProfilePicUrl: sock.profilePictureUrl,
729
+ upload: async (readStream, opts) => {
730
+ const up = await waUploadToServer(readStream, { ...opts, newsletter: (0, WABinary_1.isJidNewsletter)(jid) });
731
+ mediaHandle = up.handle;
732
+ return up;
733
+ },
734
+ /**
735
+ upload: waUploadToServer,
736
+ */
737
+ mediaCache: config.mediaCache,
738
+ options: config.options,
739
+ messageId: (0, Utils_1.generateMessageIDV3)((_a = sock.user) === null || _a === void 0 ? void 0 : _a.id),
740
+ ...options,
741
+ });
742
+ const isDeleteMsg = 'delete' in content && !!content.delete;
743
+ const isEditMsg = 'edit' in content && !!content.edit;
744
+ const isPinMsg = 'pin' in content && !!content.pin;
745
+ const additionalAttributes = {};
746
+ // required for delete
747
+ if (isDeleteMsg) {
748
+ // if the chat is a group, and I am not the author, then delete the message as an admin
749
+ if (((0, WABinary_1.isJidGroup)((_b = content.delete) === null || _b === void 0 ? void 0 : _b.remoteJid) && !((_c = content.delete) === null || _c === void 0 ? void 0 : _c.fromMe)) || (0, WABinary_1.isJidNewsletter)(jid)) {
750
+ additionalAttributes.edit = '8';
751
+ }
752
+ else {
753
+ additionalAttributes.edit = '7';
754
+ }
755
+ }
756
+ else if (isEditMsg) {
757
+ additionalAttributes.edit = (0, WABinary_1.isJidNewsletter)(jid) ? '3' : '1';
758
+ }
759
+ else if (isPinMsg) {
760
+ additionalAttributes.edit = '2';
761
+ }
762
+ if (mediaHandle) {
763
+ additionalAttributes['media_id'] = mediaHandle;
764
+ }
765
+ if ('cachedGroupMetadata' in options) {
766
+ console.warn('cachedGroupMetadata in sendMessage are deprecated, now cachedGroupMetadata is part of the socket config.');
767
+ }
768
+ await relayMessage(jid, fullMsg.message, { messageId: fullMsg.key.id, useCachedGroupMetadata: options.useCachedGroupMetadata, additionalAttributes, statusJidList: options.statusJidList });
769
+ if (config.emitOwnEvents) {
770
+ process.nextTick(() => {
771
+ processingMutex.mutex(() => (upsertMessage(fullMsg, 'append')));
772
+ });
773
+ }
774
+ return fullMsg;
775
+ }
776
+ }
777
+ };
778
+ };
779
+ exports.makeMessagesSocket = makeMessagesSocket;