@alannxd/baileys 6.0.6 → 6.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +341 -286
  3. package/WAProto/GenerateStatics.sh +3 -0
  4. package/WAProto/WAProto.proto +6902 -0
  5. package/WAProto/fix-imports.js +85 -0
  6. package/WAProto/index.d.ts +79257 -0
  7. package/WAProto/index.js +205861 -60565
  8. package/engine-requirements.js +1 -1
  9. package/lib/Defaults/index.js +119 -136
  10. package/lib/Signal/Group/ciphertext-message.js +2 -5
  11. package/lib/Signal/Group/group-session-builder.js +7 -41
  12. package/lib/Signal/Group/group_cipher.js +37 -51
  13. package/lib/Signal/Group/index.js +12 -57
  14. package/lib/Signal/Group/keyhelper.js +7 -44
  15. package/lib/Signal/Group/sender-chain-key.js +7 -15
  16. package/lib/Signal/Group/sender-key-distribution-message.js +8 -11
  17. package/lib/Signal/Group/sender-key-message.js +9 -12
  18. package/lib/Signal/Group/sender-key-name.js +2 -5
  19. package/lib/Signal/Group/sender-key-record.js +9 -21
  20. package/lib/Signal/Group/sender-key-state.js +27 -42
  21. package/lib/Signal/Group/sender-message-key.js +4 -7
  22. package/lib/Signal/libsignal.js +347 -90
  23. package/lib/Signal/lid-mapping.js +277 -0
  24. package/lib/Socket/Client/index.js +3 -19
  25. package/lib/Socket/Client/types.js +11 -0
  26. package/lib/Socket/Client/websocket.js +54 -0
  27. package/lib/Socket/business.js +162 -43
  28. package/lib/Socket/chats.js +627 -427
  29. package/lib/Socket/communities.js +90 -80
  30. package/lib/Socket/groups.js +154 -161
  31. package/lib/Socket/index.js +11 -10
  32. package/lib/Socket/luxu.js +315 -469
  33. package/lib/Socket/messages-recv.js +1421 -615
  34. package/lib/Socket/messages-send.js +1150 -799
  35. package/lib/Socket/mex.js +42 -0
  36. package/lib/Socket/newsletter.js +152 -204
  37. package/lib/Socket/socket.js +544 -313
  38. package/lib/Store/index.js +10 -10
  39. package/lib/Store/keyed-db.js +108 -0
  40. package/lib/Store/make-cache-manager-store.js +43 -41
  41. package/lib/Store/make-in-memory-store.js +112 -341
  42. package/lib/Store/make-ordered-dictionary.js +14 -20
  43. package/lib/Store/object-repository.js +11 -6
  44. package/lib/Types/Auth.js +2 -2
  45. package/lib/Types/Bussines.js +2 -0
  46. package/lib/Types/Call.js +2 -2
  47. package/lib/Types/Chat.js +8 -4
  48. package/lib/Types/Contact.js +2 -2
  49. package/lib/Types/Events.js +2 -2
  50. package/lib/Types/GroupMetadata.js +2 -2
  51. package/lib/Types/Label.js +3 -5
  52. package/lib/Types/LabelAssociation.js +3 -5
  53. package/lib/Types/Message.js +11 -9
  54. package/lib/Types/Mex.js +37 -0
  55. package/lib/Types/Product.js +2 -2
  56. package/lib/Types/Signal.js +2 -2
  57. package/lib/Types/Socket.js +3 -2
  58. package/lib/Types/State.js +56 -2
  59. package/lib/Types/USync.js +2 -2
  60. package/lib/Types/index.js +15 -31
  61. package/lib/Utils/auth-utils.js +239 -143
  62. package/lib/Utils/browser-utils.js +48 -0
  63. package/lib/Utils/business.js +66 -69
  64. package/lib/Utils/chat-utils.js +396 -253
  65. package/lib/Utils/companion-reg-client-utils.js +35 -0
  66. package/lib/Utils/crypto.js +57 -90
  67. package/lib/Utils/decode-wa-message.js +236 -84
  68. package/lib/Utils/event-buffer.js +185 -77
  69. package/lib/Utils/generics.js +189 -209
  70. package/lib/Utils/history.js +93 -55
  71. package/lib/Utils/identity-change-handler.js +50 -0
  72. package/lib/Utils/index.js +23 -33
  73. package/lib/Utils/link-preview.js +16 -24
  74. package/lib/Utils/logger.js +3 -7
  75. package/lib/Utils/lt-hash.js +3 -46
  76. package/lib/Utils/make-mutex.js +24 -34
  77. package/lib/Utils/message-composer.js +273 -0
  78. package/lib/Utils/message-retry-manager.js +265 -0
  79. package/lib/Utils/messages-media.js +451 -482
  80. package/lib/Utils/messages.js +795 -369
  81. package/lib/Utils/noise-handler.js +145 -99
  82. package/lib/Utils/offline-node-processor.js +40 -0
  83. package/lib/Utils/pre-key-manager.js +106 -0
  84. package/lib/Utils/process-message.js +459 -150
  85. package/lib/Utils/reporting-utils.js +258 -0
  86. package/lib/Utils/signal.js +120 -72
  87. package/lib/Utils/stanza-ack.js +38 -0
  88. package/lib/Utils/sync-action-utils.js +49 -0
  89. package/lib/Utils/tc-token-utils.js +163 -0
  90. package/lib/Utils/use-multi-file-auth-state.js +29 -27
  91. package/lib/Utils/validate-connection.js +73 -99
  92. package/lib/WABinary/constants.js +1281 -20
  93. package/lib/WABinary/decode.js +52 -42
  94. package/lib/WABinary/encode.js +110 -155
  95. package/lib/WABinary/generic-utils.js +55 -49
  96. package/lib/WABinary/index.js +6 -21
  97. package/lib/WABinary/jid-utils.js +76 -40
  98. package/lib/WABinary/types.js +2 -2
  99. package/lib/WAM/BinaryInfo.js +2 -5
  100. package/lib/WAM/constants.js +19071 -11568
  101. package/lib/WAM/encode.js +17 -22
  102. package/lib/WAM/index.js +4 -19
  103. package/lib/WAUSync/Protocols/USyncContactProtocol.js +33 -13
  104. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +11 -14
  105. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +9 -12
  106. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +9 -13
  107. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +25 -0
  108. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +20 -22
  109. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +13 -8
  110. package/lib/WAUSync/Protocols/index.js +6 -20
  111. package/lib/WAUSync/USyncQuery.js +44 -35
  112. package/lib/WAUSync/USyncUser.js +10 -5
  113. package/lib/WAUSync/index.js +4 -19
  114. package/lib/index.js +13 -36
  115. package/package.json +85 -51
  116. package/WAProto/fix-import.js +0 -29
  117. package/lib/Defaults/baileys-version.json +0 -3
  118. package/lib/Defaults/index.d.ts +0 -53
  119. package/lib/Defaults/phonenumber-mcc.json +0 -223
  120. package/lib/Signal/Group/ciphertext-message.d.ts +0 -9
  121. package/lib/Signal/Group/group-session-builder.d.ts +0 -14
  122. package/lib/Signal/Group/group_cipher.d.ts +0 -17
  123. package/lib/Signal/Group/index.d.ts +0 -11
  124. package/lib/Signal/Group/keyhelper.d.ts +0 -10
  125. package/lib/Signal/Group/queue-job.d.ts +0 -1
  126. package/lib/Signal/Group/queue-job.js +0 -57
  127. package/lib/Signal/Group/sender-chain-key.d.ts +0 -13
  128. package/lib/Signal/Group/sender-key-distribution-message.d.ts +0 -16
  129. package/lib/Signal/Group/sender-key-message.d.ts +0 -18
  130. package/lib/Signal/Group/sender-key-name.d.ts +0 -17
  131. package/lib/Signal/Group/sender-key-record.d.ts +0 -30
  132. package/lib/Signal/Group/sender-key-state.d.ts +0 -38
  133. package/lib/Signal/Group/sender-message-key.d.ts +0 -11
  134. package/lib/Signal/libsignal.d.ts +0 -3
  135. package/lib/Socket/Client/abstract-socket-client.d.ts +0 -17
  136. package/lib/Socket/Client/abstract-socket-client.js +0 -13
  137. package/lib/Socket/Client/index.d.ts +0 -3
  138. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -13
  139. package/lib/Socket/Client/mobile-socket-client.js +0 -65
  140. package/lib/Socket/Client/web-socket-client.d.ts +0 -12
  141. package/lib/Socket/Client/web-socket-client.js +0 -62
  142. package/lib/Socket/business.d.ts +0 -171
  143. package/lib/Socket/chats.d.ts +0 -267
  144. package/lib/Socket/communities.d.ts +0 -180
  145. package/lib/Socket/groups.d.ts +0 -115
  146. package/lib/Socket/index.d.ts +0 -173
  147. package/lib/Socket/luxu.d.ts +0 -266
  148. package/lib/Socket/messages-recv.d.ts +0 -161
  149. package/lib/Socket/messages-send.d.ts +0 -183
  150. package/lib/Socket/newsletter.d.ts +0 -134
  151. package/lib/Socket/registration.d.ts +0 -267
  152. package/lib/Socket/registration.js +0 -166
  153. package/lib/Socket/socket.d.ts +0 -44
  154. package/lib/Socket/usync.d.ts +0 -36
  155. package/lib/Socket/usync.js +0 -70
  156. package/lib/Store/index.d.ts +0 -3
  157. package/lib/Store/make-cache-manager-store.d.ts +0 -13
  158. package/lib/Store/make-in-memory-store.d.ts +0 -118
  159. package/lib/Store/make-ordered-dictionary.d.ts +0 -13
  160. package/lib/Store/object-repository.d.ts +0 -10
  161. package/lib/Types/Auth.d.ts +0 -110
  162. package/lib/Types/Call.d.ts +0 -13
  163. package/lib/Types/Chat.d.ts +0 -102
  164. package/lib/Types/Contact.d.ts +0 -19
  165. package/lib/Types/Events.d.ts +0 -157
  166. package/lib/Types/GroupMetadata.d.ts +0 -55
  167. package/lib/Types/Label.d.ts +0 -35
  168. package/lib/Types/LabelAssociation.d.ts +0 -29
  169. package/lib/Types/Message.d.ts +0 -273
  170. package/lib/Types/Newsletter.d.ts +0 -103
  171. package/lib/Types/Newsletter.js +0 -38
  172. package/lib/Types/Product.d.ts +0 -78
  173. package/lib/Types/Signal.d.ts +0 -57
  174. package/lib/Types/Socket.d.ts +0 -111
  175. package/lib/Types/State.d.ts +0 -27
  176. package/lib/Types/USync.d.ts +0 -25
  177. package/lib/Types/index.d.ts +0 -57
  178. package/lib/Utils/auth-utils.d.ts +0 -18
  179. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  180. package/lib/Utils/baileys-event-stream.js +0 -63
  181. package/lib/Utils/business.d.ts +0 -22
  182. package/lib/Utils/chat-utils.d.ts +0 -71
  183. package/lib/Utils/crypto.d.ts +0 -41
  184. package/lib/Utils/decode-wa-message.d.ts +0 -19
  185. package/lib/Utils/event-buffer.d.ts +0 -35
  186. package/lib/Utils/generics.d.ts +0 -92
  187. package/lib/Utils/history.d.ts +0 -15
  188. package/lib/Utils/index.d.ts +0 -17
  189. package/lib/Utils/link-preview.d.ts +0 -21
  190. package/lib/Utils/logger.d.ts +0 -4
  191. package/lib/Utils/lt-hash.d.ts +0 -12
  192. package/lib/Utils/make-mutex.d.ts +0 -7
  193. package/lib/Utils/messages-media.d.ts +0 -116
  194. package/lib/Utils/messages.d.ts +0 -77
  195. package/lib/Utils/noise-handler.d.ts +0 -21
  196. package/lib/Utils/process-message.d.ts +0 -41
  197. package/lib/Utils/signal.d.ts +0 -32
  198. package/lib/Utils/use-multi-file-auth-state.d.ts +0 -13
  199. package/lib/Utils/validate-connection.d.ts +0 -11
  200. package/lib/WABinary/constants.d.ts +0 -30
  201. package/lib/WABinary/decode.d.ts +0 -7
  202. package/lib/WABinary/encode.d.ts +0 -3
  203. package/lib/WABinary/generic-utils.d.ts +0 -17
  204. package/lib/WABinary/index.d.ts +0 -5
  205. package/lib/WABinary/jid-utils.d.ts +0 -31
  206. package/lib/WABinary/types.d.ts +0 -18
  207. package/lib/WAM/BinaryInfo.d.ts +0 -17
  208. package/lib/WAM/constants.d.ts +0 -38
  209. package/lib/WAM/encode.d.ts +0 -3
  210. package/lib/WAM/index.d.ts +0 -3
  211. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +0 -9
  212. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +0 -22
  213. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +0 -12
  214. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +0 -12
  215. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +0 -25
  216. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +0 -8
  217. package/lib/WAUSync/Protocols/index.d.ts +0 -4
  218. package/lib/WAUSync/USyncQuery.d.ts +0 -28
  219. package/lib/WAUSync/USyncUser.d.ts +0 -12
  220. package/lib/index.d.ts +0 -12
@@ -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,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,27 +1,32 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ObjectRepository = void 0;
4
- class ObjectRepository {
1
+ export class ObjectRepository {
5
2
  constructor(entities = {}) {
6
3
  this.entityMap = new Map(Object.entries(entities));
7
4
  }
5
+
8
6
  findById(id) {
9
7
  return this.entityMap.get(id);
10
8
  }
9
+
11
10
  findAll() {
12
11
  return Array.from(this.entityMap.values());
13
12
  }
13
+
14
14
  upsertById(id, entity) {
15
- return this.entityMap.set(id, { ...entity });
15
+ this.entityMap.set(id, { ...entity });
16
+ return this;
16
17
  }
18
+
17
19
  deleteById(id) {
18
20
  return this.entityMap.delete(id);
19
21
  }
22
+
20
23
  count() {
21
24
  return this.entityMap.size;
22
25
  }
26
+
23
27
  toJSON() {
24
28
  return this.findAll();
25
29
  }
26
30
  }
27
- exports.ObjectRepository = ObjectRepository;
31
+
32
+ export default ObjectRepository;
package/lib/Types/Auth.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=Auth.js.map
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Bussines.js.map
package/lib/Types/Call.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=Call.js.map