@alannxd/baileys 6.0.4 → 6.0.5

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 (234) hide show
  1. package/WAProto/GenerateStatics.sh +3 -0
  2. package/WAProto/WAProto.proto +5479 -0
  3. package/WAProto/fix-imports.js +85 -0
  4. package/WAProto/index.d.ts +14017 -0
  5. package/WAProto/index.js +201 -160
  6. package/engine-requirements.js +1 -1
  7. package/lib/Defaults/index.d.ts +37 -15
  8. package/lib/Defaults/index.js +119 -136
  9. package/lib/Signal/Group/ciphertext-message.d.ts +1 -0
  10. package/lib/Signal/Group/ciphertext-message.js +2 -5
  11. package/lib/Signal/Group/group-session-builder.d.ts +4 -3
  12. package/lib/Signal/Group/group-session-builder.js +7 -41
  13. package/lib/Signal/Group/group_cipher.d.ts +4 -4
  14. package/lib/Signal/Group/group_cipher.js +37 -51
  15. package/lib/Signal/Group/index.d.ts +12 -11
  16. package/lib/Signal/Group/index.js +12 -57
  17. package/lib/Signal/Group/keyhelper.d.ts +2 -1
  18. package/lib/Signal/Group/keyhelper.js +7 -44
  19. package/lib/Signal/Group/sender-chain-key.d.ts +3 -2
  20. package/lib/Signal/Group/sender-chain-key.js +7 -15
  21. package/lib/Signal/Group/sender-key-distribution-message.d.ts +2 -1
  22. package/lib/Signal/Group/sender-key-distribution-message.js +8 -11
  23. package/lib/Signal/Group/sender-key-message.d.ts +2 -1
  24. package/lib/Signal/Group/sender-key-message.js +9 -12
  25. package/lib/Signal/Group/sender-key-name.d.ts +1 -0
  26. package/lib/Signal/Group/sender-key-name.js +2 -5
  27. package/lib/Signal/Group/sender-key-record.d.ts +3 -2
  28. package/lib/Signal/Group/sender-key-record.js +9 -21
  29. package/lib/Signal/Group/sender-key-state.d.ts +7 -6
  30. package/lib/Signal/Group/sender-key-state.js +27 -42
  31. package/lib/Signal/Group/sender-message-key.d.ts +1 -0
  32. package/lib/Signal/Group/sender-message-key.js +4 -7
  33. package/lib/Signal/libsignal.d.ts +5 -3
  34. package/lib/Signal/libsignal.js +347 -90
  35. package/lib/Signal/lid-mapping.d.ts +23 -0
  36. package/lib/Signal/lid-mapping.js +277 -0
  37. package/lib/Socket/Client/index.d.ts +3 -3
  38. package/lib/Socket/Client/index.js +3 -19
  39. package/lib/Socket/Client/{abstract-socket-client.d.ts → types.d.ts} +4 -5
  40. package/lib/Socket/Client/types.js +11 -0
  41. package/lib/Socket/Client/{web-socket-client.d.ts → websocket.d.ts} +3 -2
  42. package/lib/Socket/Client/websocket.js +54 -0
  43. package/lib/Socket/business.d.ts +154 -108
  44. package/lib/Socket/business.js +162 -43
  45. package/lib/Socket/chats.d.ts +96 -239
  46. package/lib/Socket/chats.js +627 -427
  47. package/lib/Socket/communities.d.ts +239 -146
  48. package/lib/Socket/communities.js +90 -80
  49. package/lib/Socket/groups.d.ts +104 -57
  50. package/lib/Socket/groups.js +154 -161
  51. package/lib/Socket/index.d.ts +202 -115
  52. package/lib/Socket/index.js +11 -10
  53. package/lib/Socket/luxu.d.ts +22 -266
  54. package/lib/Socket/luxu.js +422 -465
  55. package/lib/Socket/messages-recv.d.ts +136 -84
  56. package/lib/Socket/messages-recv.js +1421 -615
  57. package/lib/Socket/messages-send.d.ts +142 -126
  58. package/lib/Socket/messages-send.js +878 -671
  59. package/lib/Socket/mex.d.ts +3 -0
  60. package/lib/Socket/mex.js +42 -0
  61. package/lib/Socket/newsletter.d.ts +121 -85
  62. package/lib/Socket/newsletter.js +147 -272
  63. package/lib/Socket/socket.d.ts +34 -19
  64. package/lib/Socket/socket.js +544 -313
  65. package/lib/Store/index.d.ts +10 -3
  66. package/lib/Store/index.js +10 -10
  67. package/lib/Store/keyed-db.d.ts +22 -0
  68. package/lib/Store/keyed-db.js +108 -0
  69. package/lib/Store/make-cache-manager-store.d.ts +17 -11
  70. package/lib/Store/make-cache-manager-store.js +43 -41
  71. package/lib/Store/make-in-memory-store.d.ts +39 -118
  72. package/lib/Store/make-in-memory-store.js +112 -341
  73. package/lib/Store/make-ordered-dictionary.d.ts +11 -10
  74. package/lib/Store/make-ordered-dictionary.js +14 -20
  75. package/lib/Store/object-repository.d.ts +10 -9
  76. package/lib/Store/object-repository.js +11 -6
  77. package/lib/Types/Auth.d.ts +19 -12
  78. package/lib/Types/Auth.js +2 -2
  79. package/lib/Types/Bussines.d.ts +25 -0
  80. package/lib/Types/Bussines.js +2 -0
  81. package/lib/Types/Call.d.ts +3 -1
  82. package/lib/Types/Call.js +2 -2
  83. package/lib/Types/Chat.d.ts +35 -13
  84. package/lib/Types/Chat.js +8 -4
  85. package/lib/Types/Contact.d.ts +8 -1
  86. package/lib/Types/Contact.js +2 -2
  87. package/lib/Types/Events.d.ts +116 -17
  88. package/lib/Types/Events.js +2 -2
  89. package/lib/Types/GroupMetadata.d.ts +21 -5
  90. package/lib/Types/GroupMetadata.js +2 -2
  91. package/lib/Types/Label.d.ts +12 -0
  92. package/lib/Types/Label.js +3 -5
  93. package/lib/Types/LabelAssociation.d.ts +1 -0
  94. package/lib/Types/LabelAssociation.js +3 -5
  95. package/lib/Types/Message.d.ts +105 -58
  96. package/lib/Types/Message.js +11 -9
  97. package/lib/Types/Mex.d.ts +141 -0
  98. package/lib/Types/Mex.js +37 -0
  99. package/lib/Types/Product.d.ts +2 -1
  100. package/lib/Types/Product.js +2 -2
  101. package/lib/Types/Signal.d.ts +32 -2
  102. package/lib/Types/Signal.js +2 -2
  103. package/lib/Types/Socket.d.ts +50 -25
  104. package/lib/Types/Socket.js +3 -2
  105. package/lib/Types/State.d.ts +72 -2
  106. package/lib/Types/State.js +56 -2
  107. package/lib/Types/USync.d.ts +3 -2
  108. package/lib/Types/USync.js +2 -2
  109. package/lib/Types/index.d.ts +22 -14
  110. package/lib/Types/index.js +15 -31
  111. package/lib/Utils/auth-utils.d.ts +12 -6
  112. package/lib/Utils/auth-utils.js +239 -143
  113. package/lib/Utils/browser-utils.d.ts +4 -0
  114. package/lib/Utils/browser-utils.js +28 -0
  115. package/lib/Utils/business.d.ts +3 -2
  116. package/lib/Utils/business.js +66 -69
  117. package/lib/Utils/chat-utils.d.ts +52 -23
  118. package/lib/Utils/chat-utils.js +396 -253
  119. package/lib/Utils/companion-reg-client-utils.d.ts +17 -0
  120. package/lib/Utils/companion-reg-client-utils.js +35 -0
  121. package/lib/Utils/crypto.d.ts +18 -22
  122. package/lib/Utils/crypto.js +57 -90
  123. package/lib/Utils/decode-wa-message.d.ts +55 -8
  124. package/lib/Utils/decode-wa-message.js +203 -84
  125. package/lib/Utils/event-buffer.d.ts +9 -8
  126. package/lib/Utils/event-buffer.js +185 -77
  127. package/lib/Utils/generics.d.ts +28 -29
  128. package/lib/Utils/generics.js +180 -210
  129. package/lib/Utils/history.d.ts +18 -9
  130. package/lib/Utils/history.js +93 -55
  131. package/lib/Utils/identity-change-handler.d.ts +44 -0
  132. package/lib/Utils/identity-change-handler.js +50 -0
  133. package/lib/Utils/index.d.ts +22 -17
  134. package/lib/Utils/index.js +22 -33
  135. package/lib/Utils/link-preview.d.ts +5 -5
  136. package/lib/Utils/link-preview.js +16 -24
  137. package/lib/Utils/logger.d.ts +11 -3
  138. package/lib/Utils/logger.js +3 -7
  139. package/lib/Utils/lt-hash.d.ts +8 -12
  140. package/lib/Utils/lt-hash.js +3 -46
  141. package/lib/Utils/make-mutex.d.ts +4 -2
  142. package/lib/Utils/make-mutex.js +24 -34
  143. package/lib/Utils/message-retry-manager.d.ts +115 -0
  144. package/lib/Utils/message-retry-manager.js +265 -0
  145. package/lib/Utils/messages-media.d.ts +61 -44
  146. package/lib/Utils/messages-media.js +451 -482
  147. package/lib/Utils/messages.d.ts +32 -18
  148. package/lib/Utils/messages.js +458 -369
  149. package/lib/Utils/noise-handler.d.ts +13 -14
  150. package/lib/Utils/noise-handler.js +145 -99
  151. package/lib/Utils/offline-node-processor.d.ts +17 -0
  152. package/lib/Utils/offline-node-processor.js +40 -0
  153. package/lib/Utils/pre-key-manager.d.ts +28 -0
  154. package/lib/Utils/pre-key-manager.js +106 -0
  155. package/lib/Utils/process-message.d.ts +31 -12
  156. package/lib/Utils/process-message.js +459 -150
  157. package/lib/Utils/reporting-utils.d.ts +11 -0
  158. package/lib/Utils/reporting-utils.js +258 -0
  159. package/lib/Utils/signal.d.ts +20 -5
  160. package/lib/Utils/signal.js +120 -72
  161. package/lib/Utils/stanza-ack.d.ts +11 -0
  162. package/lib/Utils/stanza-ack.js +38 -0
  163. package/lib/Utils/sync-action-utils.d.ts +19 -0
  164. package/lib/Utils/sync-action-utils.js +49 -0
  165. package/lib/Utils/tc-token-utils.d.ts +37 -0
  166. package/lib/Utils/tc-token-utils.js +163 -0
  167. package/lib/Utils/use-multi-file-auth-state.d.ts +2 -2
  168. package/lib/Utils/use-multi-file-auth-state.js +29 -27
  169. package/lib/Utils/validate-connection.d.ts +7 -7
  170. package/lib/Utils/validate-connection.js +73 -99
  171. package/lib/WABinary/constants.d.ts +25 -27
  172. package/lib/WABinary/constants.js +1281 -20
  173. package/lib/WABinary/decode.d.ts +5 -5
  174. package/lib/WABinary/decode.js +52 -42
  175. package/lib/WABinary/encode.d.ts +3 -3
  176. package/lib/WABinary/encode.js +110 -155
  177. package/lib/WABinary/generic-utils.d.ts +8 -7
  178. package/lib/WABinary/generic-utils.js +48 -49
  179. package/lib/WABinary/index.d.ts +6 -5
  180. package/lib/WABinary/index.js +6 -21
  181. package/lib/WABinary/jid-utils.d.ts +25 -8
  182. package/lib/WABinary/jid-utils.js +74 -40
  183. package/lib/WABinary/types.d.ts +2 -1
  184. package/lib/WABinary/types.js +2 -2
  185. package/lib/WAM/BinaryInfo.d.ts +3 -11
  186. package/lib/WAM/BinaryInfo.js +2 -5
  187. package/lib/WAM/constants.d.ts +5 -3
  188. package/lib/WAM/constants.js +19071 -11568
  189. package/lib/WAM/encode.d.ts +3 -3
  190. package/lib/WAM/encode.js +17 -22
  191. package/lib/WAM/index.d.ts +4 -3
  192. package/lib/WAM/index.js +4 -19
  193. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +4 -3
  194. package/lib/WAUSync/Protocols/USyncContactProtocol.js +33 -13
  195. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +3 -2
  196. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +11 -14
  197. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +3 -2
  198. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +9 -12
  199. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +3 -2
  200. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +9 -13
  201. package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +10 -0
  202. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +25 -0
  203. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +4 -3
  204. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +20 -22
  205. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +5 -3
  206. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +13 -8
  207. package/lib/WAUSync/Protocols/index.d.ts +6 -4
  208. package/lib/WAUSync/Protocols/index.js +6 -20
  209. package/lib/WAUSync/USyncQuery.d.ts +6 -4
  210. package/lib/WAUSync/USyncQuery.js +44 -35
  211. package/lib/WAUSync/USyncUser.d.ts +10 -5
  212. package/lib/WAUSync/USyncUser.js +10 -5
  213. package/lib/WAUSync/index.d.ts +4 -0
  214. package/lib/WAUSync/index.js +4 -19
  215. package/lib/index.d.ts +10 -9
  216. package/lib/index.js +12 -34
  217. package/package.json +84 -51
  218. package/WAProto/fix-import.js +0 -29
  219. package/lib/Defaults/baileys-version.json +0 -3
  220. package/lib/Defaults/phonenumber-mcc.json +0 -223
  221. package/lib/Signal/Group/queue-job.d.ts +0 -1
  222. package/lib/Signal/Group/queue-job.js +0 -57
  223. package/lib/Socket/Client/abstract-socket-client.js +0 -13
  224. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -13
  225. package/lib/Socket/Client/mobile-socket-client.js +0 -65
  226. package/lib/Socket/Client/web-socket-client.js +0 -62
  227. package/lib/Socket/registration.d.ts +0 -267
  228. package/lib/Socket/registration.js +0 -166
  229. package/lib/Socket/usync.d.ts +0 -36
  230. package/lib/Socket/usync.js +0 -70
  231. package/lib/Types/Newsletter.d.ts +0 -103
  232. package/lib/Types/Newsletter.js +0 -38
  233. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  234. package/lib/Utils/baileys-event-stream.js +0 -63
@@ -1,290 +1,164 @@
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.waLabelAssociationKey = exports.waMessageID = exports.waChatKey = void 0;
7
- const WAProto_1 = require("../../WAProto");
8
- const Defaults_1 = require("../Defaults");
9
- const LabelAssociation_1 = require("../Types/LabelAssociation");
10
- const Utils_1 = require("../Utils");
11
- const WABinary_1 = require("../WABinary");
12
- const make_ordered_dictionary_1 = __importDefault(require("./make-ordered-dictionary"));
13
- const object_repository_1 = require("./object-repository");
1
+ import * as WAProto_1 from "../../WAProto/index.js";
2
+ import * as Defaults_1 from "../Defaults/index.js";
3
+ import { LabelAssociationType } from "../Types/LabelAssociation.js";
4
+ import * as Utils_1 from "../Utils/index.js";
5
+ import * as WABinary_1 from "../WABinary/index.js";
6
+ import makeOrderedDictionary from "./make-ordered-dictionary.js";
7
+ import { ObjectRepository } from "./object-repository.js";
8
+ import KeyedDB from "./keyed-db.js";
9
+
14
10
  const waChatKey = (pin) => ({
15
- key: (c) => (pin ? (c.pinned ? '1' : '0') : '') + (c.archived ? '0' : '1') + (c.conversationTimestamp ? c.conversationTimestamp.toString(16).padStart(8, '0') : '') + c.id,
11
+ key: (c) =>
12
+ (pin ? (c.pinned ? "1" : "0") : "") +
13
+ (c.archived ? "0" : "1") +
14
+ (c.conversationTimestamp
15
+ ? c.conversationTimestamp.toString(16).padStart(8, "0")
16
+ : "") +
17
+ c.id,
16
18
  compare: (k1, k2) => k2.localeCompare(k1)
17
19
  });
18
- exports.waChatKey = waChatKey;
19
- const waMessageID = (m) => m.key.id || '';
20
- exports.waMessageID = waMessageID;
21
- exports.waLabelAssociationKey = {
22
- key: (la) => (la.type === LabelAssociation_1.LabelAssociationType.Chat ? la.chatId + la.labelId : la.chatId + la.messageId + la.labelId),
20
+
21
+ export const waMessageID = (m) => m.key.id || "";
22
+
23
+ export const waLabelAssociationKey = {
24
+ key: (la) =>
25
+ la.type === LabelAssociationType.Chat
26
+ ? la.chatId + la.labelId
27
+ : la.chatId + la.messageId + la.labelId,
23
28
  compare: (k1, k2) => k2.localeCompare(k1)
24
29
  };
25
- const makeMessagesDictionary = () => (0, make_ordered_dictionary_1.default)(exports.waMessageID);
26
- exports.default = (config) => {
30
+
31
+ const makeMessagesDictionary = () => makeOrderedDictionary(waMessageID);
32
+
33
+ export default function makeInMemoryStore(config) {
27
34
  const socket = config.socket;
28
- const chatKey = config.chatKey || (0, exports.waChatKey)(true);
29
- const labelAssociationKey = config.labelAssociationKey || exports.waLabelAssociationKey;
30
- const logger = config.logger || Defaults_1.DEFAULT_CONNECTION_CONFIG.logger.child({ stream: 'in-mem-store' });
31
- const KeyedDB = require('@adiwajshing/keyed-db').default;
32
- const chats = new KeyedDB(chatKey, c => c.id);
35
+ const chatKey = config.chatKey || waChatKey(true);
36
+ const labelAssociationKey = config.labelAssociationKey || waLabelAssociationKey;
37
+ const logger =
38
+ config.logger ||
39
+ Defaults_1.DEFAULT_CONNECTION_CONFIG.logger.child({
40
+ stream: "in-mem-store"
41
+ });
42
+
43
+ const chats = new KeyedDB(chatKey.compare, chatKey.key);
33
44
  const messages = {};
34
45
  const contacts = {};
35
46
  const groupMetadata = {};
36
47
  const presences = {};
37
- const state = { connection: 'close' };
38
- const labels = new object_repository_1.ObjectRepository();
39
- const labelAssociations = new KeyedDB(labelAssociationKey, labelAssociationKey.key);
48
+ const state = { connection: "close" };
49
+ const labels = new ObjectRepository();
50
+ const labelAssociations = new KeyedDB(labelAssociationKey.compare, labelAssociationKey.key);
51
+
40
52
  const assertMessageList = (jid) => {
41
- if (!messages[jid]) {
42
- messages[jid] = makeMessagesDictionary();
43
- }
53
+ if (!messages[jid]) messages[jid] = makeMessagesDictionary();
44
54
  return messages[jid];
45
55
  };
56
+
46
57
  const contactsUpsert = (newContacts) => {
47
58
  const oldContacts = new Set(Object.keys(contacts));
48
59
  for (const contact of newContacts) {
49
60
  oldContacts.delete(contact.id);
50
- contacts[contact.id] = Object.assign(contacts[contact.id] || {}, contact);
61
+ contacts[contact.id] = { ...(contacts[contact.id] || {}), ...contact };
51
62
  }
52
63
  return oldContacts;
53
64
  };
65
+
54
66
  const labelsUpsert = (newLabels) => {
55
- for (const label of newLabels) {
56
- labels.upsertById(label.id, label);
57
- }
58
- };
59
- const getValidContacts = () => {
60
- for (const contact of Object.keys(contacts)) {
61
- if (contact.indexOf('@') < 0) {
62
- delete contacts[contact];
63
- }
64
- }
65
- return Object.keys(contacts);
67
+ for (const label of newLabels) labels.upsertById(label.id, label);
66
68
  };
67
- /**
68
- * binds to a BaileysEventEmitter.
69
- * It listens to all events and constructs a state that you can query accurate data from.
70
- * Eg. can use the store to fetch chats, contacts, messages etc.
71
- * @param ev typically the event emitter from the socket connection
72
- */
69
+
73
70
  const bind = (ev) => {
74
- ev.on('connection.update', update => {
75
- Object.assign(state, update);
76
- });
77
- ev.on('messaging-history.set', ({ chats: newChats, contacts: newContacts, messages: newMessages, isLatest }) => {
71
+ ev.on("connection.update", (update) => Object.assign(state, update));
72
+
73
+ ev.on("messaging-history.set", ({ chats: newChats, contacts: newContacts, messages: newMessages, isLatest, syncType }) => {
74
+ if (syncType === WAProto_1.proto.HistorySync.HistorySyncType.ON_DEMAND) return;
78
75
  if (isLatest) {
79
76
  chats.clear();
80
- for (const id in messages) {
81
- delete messages[id];
82
- }
77
+ for (const id in messages) delete messages[id];
83
78
  }
84
- const chatsAdded = chats.insertIfAbsent(...newChats).length;
85
- logger.debug({ chatsAdded }, 'synced chats');
79
+ chats.insertIfAbsent(...newChats);
86
80
  const oldContacts = contactsUpsert(newContacts);
87
- if (isLatest) {
88
- for (const jid of oldContacts) {
89
- delete contacts[jid];
90
- }
91
- }
92
- logger.debug({ deletedContacts: isLatest ? oldContacts.size : 0, newContacts }, 'synced contacts');
81
+ if (isLatest) for (const jid of oldContacts) delete contacts[jid];
93
82
  for (const msg of newMessages) {
94
83
  const jid = msg.key.remoteJid;
95
84
  const list = assertMessageList(jid);
96
- list.upsert(msg, 'prepend');
85
+ list.upsert(msg, "prepend");
97
86
  }
98
- logger.debug({ messages: newMessages.length }, 'synced messages');
99
- });
100
- ev.on('contacts.upsert', contacts => {
101
- contactsUpsert(contacts);
102
87
  });
103
- ev.on('contacts.update', async (updates) => {
104
- var _a;
88
+
89
+ ev.on("contacts.upsert", contactsUpsert);
90
+
91
+ ev.on("contacts.update", async (updates) => {
105
92
  for (const update of updates) {
106
- let contact;
107
- if (contacts[update.id]) {
108
- contact = contacts[update.id];
109
- }
110
- else {
111
- const validContacts = getValidContacts();
112
- const contactHashes = validContacts.map((contactId) => {
113
- const { user } = (0, WABinary_1.jidDecode)(contactId);
114
- return [contactId, ((0, Utils_1.md5)(Buffer.from(user + 'WA_ADD_NOTIF', 'utf8'))).toString('base64').slice(0, 3)];
115
- });
116
- contact = contacts[((_a = contactHashes.find(([, b]) => b === update.id)) === null || _a === void 0 ? void 0 : _a[0]) || '']; // find contact by attrs.hash, when user is not saved as a contact
117
- }
118
- if (contact) {
119
- if (update.imgUrl === 'changed') {
120
- contact.imgUrl = socket ? await (socket === null || socket === void 0 ? void 0 : socket.profilePictureUrl(contact.id)) : undefined;
121
- }
122
- else if (update.imgUrl === 'removed') {
123
- delete contact.imgUrl;
124
- }
125
- Object.assign(contacts[contact.id], contact);
126
- }
127
- else {
128
- logger.debug({ update }, 'got update for non-existant contact');
129
- }
93
+ const contact = contacts[update.id];
94
+ if (contact) Object.assign(contact, update);
130
95
  }
131
96
  });
132
- ev.on('chats.upsert', newChats => {
133
- chats.upsert(...newChats);
134
- });
135
- ev.on('chats.update', updates => {
97
+
98
+ ev.on("chats.upsert", (newChats) => chats.upsert(...newChats));
99
+
100
+ ev.on("chats.update", (updates) => {
136
101
  for (let update of updates) {
137
- const result = chats.update(update.id, chat => {
138
- if (update.unreadCount > 0) {
139
- update = { ...update };
140
- update.unreadCount = (chat.unreadCount || 0) + update.unreadCount;
141
- }
142
- Object.assign(chat, update);
143
- });
144
- if (!result) {
145
- logger.debug({ update }, 'got update for non-existant chat');
146
- }
102
+ chats.update(update.id, (chat) => Object.assign(chat, update));
147
103
  }
148
104
  });
149
- ev.on('labels.edit', (label) => {
150
- if (label.deleted) {
151
- return labels.deleteById(label.id);
152
- }
153
- // WhatsApp can store only up to 20 labels
154
- if (labels.count() < 20) {
155
- return labels.upsertById(label.id, label);
156
- }
157
- logger.error('Labels count exceed');
105
+
106
+ ev.on("labels.edit", (label) => {
107
+ if (label.deleted) return labels.deleteById(label.id);
108
+ if (labels.count() < 20) labels.upsertById(label.id, label);
158
109
  });
159
- ev.on('labels.association', ({ type, association }) => {
160
- switch (type) {
161
- case 'add':
162
- labelAssociations.upsert(association);
163
- break;
164
- case 'remove':
165
- labelAssociations.delete(association);
166
- break;
167
- default:
168
- console.error(`unknown operation type [${type}]`);
169
- }
110
+
111
+ ev.on("labels.association", ({ type, association }) => {
112
+ if (type === "add") labelAssociations.upsert(association);
113
+ if (type === "remove") labelAssociations.delete(association);
170
114
  });
171
- ev.on('presence.update', ({ id, presences: update }) => {
115
+
116
+ ev.on("presence.update", ({ id, presences: update }) => {
172
117
  presences[id] = presences[id] || {};
173
118
  Object.assign(presences[id], update);
174
119
  });
175
- ev.on('chats.delete', deletions => {
176
- for (const item of deletions) {
177
- if (chats.get(item)) {
178
- chats.deleteById(item);
179
- }
180
- }
120
+
121
+ ev.on("chats.delete", (deletions) => {
122
+ for (const item of deletions) chats.deleteById(item);
181
123
  });
182
- ev.on('messages.upsert', ({ messages: newMessages, type }) => {
183
- switch (type) {
184
- case 'append':
185
- case 'notify':
186
- for (const msg of newMessages) {
187
- const jid = (0, WABinary_1.jidNormalizedUser)(msg.key.remoteJid);
188
- const list = assertMessageList(jid);
189
- list.upsert(msg, 'append');
190
- if (type === 'notify') {
191
- if (!chats.get(jid)) {
192
- ev.emit('chats.upsert', [
193
- {
194
- id: jid,
195
- conversationTimestamp: (0, Utils_1.toNumber)(msg.messageTimestamp),
196
- unreadCount: 1
197
- }
198
- ]);
199
- }
124
+
125
+ ev.on("messages.upsert", ({ messages: newMessages, type }) => {
126
+ if (type !== "append" && type !== "notify") return;
127
+ for (const msg of newMessages) {
128
+ const jid = WABinary_1.jidNormalizedUser(msg.key.remoteJid);
129
+ const list = assertMessageList(jid);
130
+ list.upsert(msg, "append");
131
+ if (type === "notify" && !chats.get(jid))
132
+ ev.emit("chats.upsert", [
133
+ {
134
+ id: jid,
135
+ conversationTimestamp: Utils_1.toNumber(msg.messageTimestamp),
136
+ unreadCount: 1
200
137
  }
201
- }
202
- break;
138
+ ]);
203
139
  }
204
140
  });
205
- ev.on('messages.update', updates => {
206
- var _a;
141
+
142
+ ev.on("messages.update", (updates) => {
207
143
  for (const { update, key } of updates) {
208
- const list = assertMessageList((0, WABinary_1.jidNormalizedUser)(key.remoteJid));
209
- if (update === null || update === void 0 ? void 0 : update.status) {
210
- const listStatus = (_a = list.get(key.id)) === null || _a === void 0 ? void 0 : _a.status;
211
- if (listStatus && (update === null || update === void 0 ? void 0 : update.status) <= listStatus) {
212
- logger.debug({ update, storedStatus: listStatus }, 'status stored newer then update');
213
- delete update.status;
214
- logger.debug({ update }, 'new update object');
215
- }
216
- }
217
- const result = list.updateAssign(key.id, update);
218
- if (!result) {
219
- logger.debug({ update }, 'got update for non-existent message');
220
- }
144
+ const list = assertMessageList(WABinary_1.jidNormalizedUser(key.remoteJid));
145
+ list.updateAssign(key.id, update);
221
146
  }
222
147
  });
223
- ev.on('messages.delete', item => {
224
- if ('all' in item) {
225
- const list = messages[item.jid];
226
- list === null || list === void 0 ? void 0 : list.clear();
227
- }
148
+
149
+ ev.on("messages.delete", (item) => {
150
+ if ("all" in item) messages[item.jid]?.clear();
228
151
  else {
229
152
  const jid = item.keys[0].remoteJid;
230
153
  const list = messages[jid];
231
154
  if (list) {
232
- const idSet = new Set(item.keys.map(k => k.id));
233
- list.filter(m => !idSet.has(m.key.id));
234
- }
235
- }
236
- });
237
- ev.on('groups.update', updates => {
238
- for (const update of updates) {
239
- const id = update.id;
240
- if (groupMetadata[id]) {
241
- Object.assign(groupMetadata[id], update);
242
- }
243
- else {
244
- logger.debug({ update }, 'got update for non-existant group metadata');
245
- }
246
- }
247
- });
248
- ev.on('group-participants.update', ({ id, participants, action }) => {
249
- const metadata = groupMetadata[id];
250
- if (metadata) {
251
- switch (action) {
252
- case 'add':
253
- metadata.participants.push(...participants.map(id => ({ id, isAdmin: false, isSuperAdmin: false })));
254
- break;
255
- case 'demote':
256
- case 'promote':
257
- for (const participant of metadata.participants) {
258
- if (participants.includes(participant.id)) {
259
- participant.isAdmin = action === 'promote';
260
- }
261
- }
262
- break;
263
- case 'remove':
264
- metadata.participants = metadata.participants.filter(p => !participants.includes(p.id));
265
- break;
266
- }
267
- }
268
- });
269
- ev.on('message-receipt.update', updates => {
270
- for (const { key, receipt } of updates) {
271
- const obj = messages[key.remoteJid];
272
- const msg = obj === null || obj === void 0 ? void 0 : obj.get(key.id);
273
- if (msg) {
274
- (0, Utils_1.updateMessageWithReceipt)(msg, receipt);
275
- }
276
- }
277
- });
278
- ev.on('messages.reaction', (reactions) => {
279
- for (const { key, reaction } of reactions) {
280
- const obj = messages[key.remoteJid];
281
- const msg = obj === null || obj === void 0 ? void 0 : obj.get(key.id);
282
- if (msg) {
283
- (0, Utils_1.updateMessageWithReaction)(msg, reaction);
155
+ const idSet = new Set(item.keys.map((k) => k.id));
156
+ list.filter((m) => !idSet.has(m.key.id));
284
157
  }
285
158
  }
286
159
  });
287
160
  };
161
+
288
162
  const toJSON = () => ({
289
163
  chats,
290
164
  contacts,
@@ -292,18 +166,21 @@ exports.default = (config) => {
292
166
  labels,
293
167
  labelAssociations
294
168
  });
169
+
295
170
  const fromJSON = (json) => {
296
171
  chats.upsert(...json.chats);
297
- labelAssociations.upsert(...json.labelAssociations || []);
172
+ labelAssociations.upsert(...(json.labelAssociations || []));
298
173
  contactsUpsert(Object.values(json.contacts));
299
174
  labelsUpsert(Object.values(json.labels || {}));
300
175
  for (const jid in json.messages) {
301
176
  const list = assertMessageList(jid);
302
- for (const msg of json.messages[jid]) {
303
- list.upsert(WAProto_1.proto.WebMessageInfo.fromObject(msg), 'append');
304
- }
177
+ for (const msg of json.messages[jid])
178
+ list.upsert(WAProto_1.proto.WebMessageInfo.fromObject(msg), "append");
305
179
  }
306
180
  };
181
+ const loadMessage = async (jid, id) => {
182
+ return messages[jid]?.get(id)
183
+ }
307
184
  return {
308
185
  chats,
309
186
  contacts,
@@ -314,114 +191,8 @@ exports.default = (config) => {
314
191
  labels,
315
192
  labelAssociations,
316
193
  bind,
317
- /** loads messages from the store, if not found -- uses the legacy connection */
318
- loadMessages: async (jid, count, cursor) => {
319
- const list = assertMessageList(jid);
320
- const mode = !cursor || 'before' in cursor ? 'before' : 'after';
321
- const cursorKey = !!cursor ? ('before' in cursor ? cursor.before : cursor.after) : undefined;
322
- const cursorValue = cursorKey ? list.get(cursorKey.id) : undefined;
323
- let messages;
324
- if (list && mode === 'before' && (!cursorKey || cursorValue)) {
325
- if (cursorValue) {
326
- const msgIdx = list.array.findIndex(m => m.key.id === (cursorKey === null || cursorKey === void 0 ? void 0 : cursorKey.id));
327
- messages = list.array.slice(0, msgIdx);
328
- }
329
- else {
330
- messages = list.array;
331
- }
332
- const diff = count - messages.length;
333
- if (diff < 0) {
334
- messages = messages.slice(-count); // get the last X messages
335
- }
336
- }
337
- else {
338
- messages = [];
339
- }
340
- return messages;
341
- },
342
- /**
343
- * Get all available labels for profile
344
- *
345
- * Keep in mind that the list is formed from predefined tags and tags
346
- * that were "caught" during their editing.
347
- */
348
- getLabels: () => {
349
- return labels;
350
- },
351
- /**
352
- * Get labels for chat
353
- *
354
- * @returns Label IDs
355
- **/
356
- getChatLabels: (chatId) => {
357
- return labelAssociations.filter((la) => la.chatId === chatId).all();
358
- },
359
- /**
360
- * Get labels for message
361
- *
362
- * @returns Label IDs
363
- **/
364
- getMessageLabels: (messageId) => {
365
- const associations = labelAssociations
366
- .filter((la) => la.messageId === messageId)
367
- .all();
368
- return associations.map(({ labelId }) => labelId);
369
- },
370
- loadMessage: async (jid, id) => { var _a; return (_a = messages[jid]) === null || _a === void 0 ? void 0 : _a.get(id); },
371
- mostRecentMessage: async (jid) => {
372
- var _a;
373
- const message = (_a = messages[jid]) === null || _a === void 0 ? void 0 : _a.array.slice(-1)[0];
374
- return message;
375
- },
376
- fetchImageUrl: async (jid, sock) => {
377
- const contact = contacts[jid];
378
- if (!contact) {
379
- return sock === null || sock === void 0 ? void 0 : sock.profilePictureUrl(jid);
380
- }
381
- if (typeof contact.imgUrl === 'undefined') {
382
- contact.imgUrl = await (sock === null || sock === void 0 ? void 0 : sock.profilePictureUrl(jid));
383
- }
384
- return contact.imgUrl;
385
- },
386
- fetchGroupMetadata: async (jid, sock) => {
387
- if (!groupMetadata[jid]) {
388
- const metadata = await (sock === null || sock === void 0 ? void 0 : sock.groupMetadata(jid));
389
- if (metadata) {
390
- groupMetadata[jid] = metadata;
391
- }
392
- }
393
- return groupMetadata[jid];
394
- },
395
- // fetchBroadcastListInfo: async(jid: string, sock: WASocket | undefined) => {
396
- // if(!groupMetadata[jid]) {
397
- // const metadata = await sock?.getBroadcastListInfo(jid)
398
- // if(metadata) {
399
- // groupMetadata[jid] = metadata
400
- // }
401
- // }
402
- // return groupMetadata[jid]
403
- // },
404
- fetchMessageReceipts: async ({ remoteJid, id }) => {
405
- const list = messages[remoteJid];
406
- const msg = list === null || list === void 0 ? void 0 : list.get(id);
407
- return msg === null || msg === void 0 ? void 0 : msg.userReceipt;
408
- },
409
194
  toJSON,
410
195
  fromJSON,
411
- writeToFile: (path) => {
412
- // require fs here so that in case "fs" is not available -- the app does not crash
413
- const { writeFileSync } = require('fs');
414
- writeFileSync(path, JSON.stringify(toJSON()));
415
- },
416
- readFromFile: (path) => {
417
- // require fs here so that in case "fs" is not available -- the app does not crash
418
- const { readFileSync, existsSync } = require('fs');
419
- if (existsSync(path)) {
420
- logger.debug({ path }, 'reading from file');
421
- const jsonStr = readFileSync(path, { encoding: 'utf-8' });
422
- const json = JSON.parse(jsonStr);
423
- fromJSON(json);
424
- }
425
- }
196
+ loadMessage
426
197
  };
427
- };
198
+ }
@@ -1,13 +1,14 @@
1
1
  declare function makeOrderedDictionary<T>(idGetter: (item: T) => string): {
2
- array: T[];
3
- get: (id: string) => T | undefined;
4
- upsert: (item: T, mode: 'append' | 'prepend') => void;
5
- update: (item: T) => boolean;
6
- remove: (item: T) => boolean;
7
- updateAssign: (id: string, update: Partial<T>) => boolean;
8
- clear: () => void;
9
- filter: (contain: (item: T) => boolean) => void;
10
- toJSON: () => T[];
11
- fromJSON: (newItems: T[]) => void;
2
+ array: T[];
3
+ get: (id: string) => T | undefined;
4
+ upsert: (item: T, mode: 'append' | 'prepend') => void;
5
+ update: (item: T) => boolean;
6
+ remove: (item: T) => boolean;
7
+ updateAssign: (id: string, update: Partial<T>) => boolean;
8
+ clear: () => void;
9
+ filter: (contain: (item: T) => boolean) => void;
10
+ toJSON: () => T[];
11
+ fromJSON: (newItems: T[]) => void;
12
12
  };
13
13
  export default makeOrderedDictionary;
14
+ export { makeOrderedDictionary };
@@ -1,9 +1,9 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- function makeOrderedDictionary(idGetter) {
1
+ export default function makeOrderedDictionary(idGetter) {
4
2
  const array = [];
5
3
  const dict = {};
4
+
6
5
  const get = (id) => dict[id];
6
+
7
7
  const update = (item) => {
8
8
  const id = idGetter(item);
9
9
  const idx = array.findIndex(i => idGetter(i) === id);
@@ -13,21 +13,18 @@ function makeOrderedDictionary(idGetter) {
13
13
  }
14
14
  return false;
15
15
  };
16
+
16
17
  const upsert = (item, mode) => {
17
18
  const id = idGetter(item);
18
19
  if (get(id)) {
19
20
  update(item);
20
- }
21
- else {
22
- if (mode === 'append') {
23
- array.push(item);
24
- }
25
- else {
26
- array.splice(0, 0, item);
27
- }
21
+ } else {
22
+ if (mode === 'append') array.push(item);
23
+ else array.unshift(item);
28
24
  dict[id] = item;
29
25
  }
30
26
  };
27
+
31
28
  const remove = (item) => {
32
29
  const id = idGetter(item);
33
30
  const idx = array.findIndex(i => idGetter(i) === id);
@@ -38,6 +35,7 @@ function makeOrderedDictionary(idGetter) {
38
35
  }
39
36
  return false;
40
37
  };
38
+
41
39
  return {
42
40
  array,
43
41
  get,
@@ -55,10 +53,8 @@ function makeOrderedDictionary(idGetter) {
55
53
  return false;
56
54
  },
57
55
  clear: () => {
58
- array.splice(0, array.length);
59
- Object.keys(dict).forEach(key => {
60
- delete dict[key];
61
- });
56
+ array.length = 0;
57
+ for (const key of Object.keys(dict)) delete dict[key];
62
58
  },
63
59
  filter: (contain) => {
64
60
  let i = 0;
@@ -66,9 +62,8 @@ function makeOrderedDictionary(idGetter) {
66
62
  if (!contain(array[i])) {
67
63
  delete dict[idGetter(array[i])];
68
64
  array.splice(i, 1);
69
- }
70
- else {
71
- i += 1;
65
+ } else {
66
+ i++;
72
67
  }
73
68
  }
74
69
  },
@@ -77,5 +72,4 @@ function makeOrderedDictionary(idGetter) {
77
72
  array.splice(0, array.length, ...newItems);
78
73
  }
79
74
  };
80
- }
81
- exports.default = makeOrderedDictionary;
75
+ }
@@ -1,10 +1,11 @@
1
- export declare class ObjectRepository<T extends object> {
2
- readonly entityMap: Map<string, T>;
3
- constructor(entities?: Record<string, T>);
4
- findById(id: string): T | undefined;
5
- findAll(): T[];
6
- upsertById(id: string, entity: T): Map<string, T>;
7
- deleteById(id: string): boolean;
8
- count(): number;
9
- toJSON(): T[];
1
+ declare class ObjectRepository<T> {
2
+ private entityMap: Map<string, T>;
3
+ constructor(entities?: { [id: string]: T });
4
+ findById(id: string): T | undefined;
5
+ findAll(): T[];
6
+ upsertById(id: string, entity: T): Map<string, T>;
7
+ deleteById(id: string): boolean;
8
+ count(): number;
9
+ toJSON(): T[];
10
10
  }
11
+ export { ObjectRepository };