@wenzyx1/bails 1.0.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 (218) hide show
  1. package/README.md +231 -0
  2. package/WAProto/fix-imports.js +85 -0
  3. package/WAProto/index.d.ts +79257 -0
  4. package/WAProto/index.js +242946 -0
  5. package/engine-requirements.js +10 -0
  6. package/lib/Defaults/baileys-version.json +3 -0
  7. package/lib/Defaults/index.d.ts +53 -0
  8. package/lib/Defaults/index.js +147 -0
  9. package/lib/Defaults/phonenumber-mcc.json +223 -0
  10. package/lib/Signal/Group/ciphertext-message.d.ts +9 -0
  11. package/lib/Signal/Group/ciphertext-message.js +15 -0
  12. package/lib/Signal/Group/group-session-builder.d.ts +14 -0
  13. package/lib/Signal/Group/group-session-builder.js +64 -0
  14. package/lib/Signal/Group/group_cipher.d.ts +17 -0
  15. package/lib/Signal/Group/group_cipher.js +93 -0
  16. package/lib/Signal/Group/index.d.ts +11 -0
  17. package/lib/Signal/Group/index.js +57 -0
  18. package/lib/Signal/Group/keyhelper.d.ts +10 -0
  19. package/lib/Signal/Group/keyhelper.js +55 -0
  20. package/lib/Signal/Group/queue-job.d.ts +1 -0
  21. package/lib/Signal/Group/queue-job.js +53 -0
  22. package/lib/Signal/Group/sender-chain-key.d.ts +13 -0
  23. package/lib/Signal/Group/sender-chain-key.js +34 -0
  24. package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -0
  25. package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
  26. package/lib/Signal/Group/sender-key-message.d.ts +18 -0
  27. package/lib/Signal/Group/sender-key-message.js +69 -0
  28. package/lib/Signal/Group/sender-key-name.d.ts +17 -0
  29. package/lib/Signal/Group/sender-key-name.js +51 -0
  30. package/lib/Signal/Group/sender-key-record.d.ts +30 -0
  31. package/lib/Signal/Group/sender-key-record.js +53 -0
  32. package/lib/Signal/Group/sender-key-state.d.ts +38 -0
  33. package/lib/Signal/Group/sender-key-state.js +99 -0
  34. package/lib/Signal/Group/sender-message-key.d.ts +11 -0
  35. package/lib/Signal/Group/sender-message-key.js +29 -0
  36. package/lib/Signal/libsignal.d.ts +3 -0
  37. package/lib/Signal/libsignal.js +454 -0
  38. package/lib/Signal/lid-mapping.js +280 -0
  39. package/lib/Socket/Client/abstract-socket-client.d.ts +17 -0
  40. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  41. package/lib/Socket/Client/index.d.ts +3 -0
  42. package/lib/Socket/Client/index.js +19 -0
  43. package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
  44. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  45. package/lib/Socket/Client/web-socket-client.d.ts +12 -0
  46. package/lib/Socket/Client/web-socket-client.js +62 -0
  47. package/lib/Socket/business.d.ts +171 -0
  48. package/lib/Socket/business.js +342 -0
  49. package/lib/Socket/chats.d.ts +267 -0
  50. package/lib/Socket/chats.js +978 -0
  51. package/lib/Socket/communities.mjs +428 -0
  52. package/lib/Socket/dugong.d.ts +254 -0
  53. package/lib/Socket/dugong.js +558 -0
  54. package/lib/Socket/groups.d.ts +115 -0
  55. package/lib/Socket/groups.js +380 -0
  56. package/lib/Socket/index.d.ts +173 -0
  57. package/lib/Socket/index.js +32 -0
  58. package/lib/Socket/luxu.js +545 -0
  59. package/lib/Socket/messages-recv.d.ts +161 -0
  60. package/lib/Socket/messages-recv.js +1124 -0
  61. package/lib/Socket/messages-send.d.ts +149 -0
  62. package/lib/Socket/messages-send.js +1476 -0
  63. package/lib/Socket/mex.mjs +50 -0
  64. package/lib/Socket/newsletter.d.ts +134 -0
  65. package/lib/Socket/newsletter.js +351 -0
  66. package/lib/Socket/registration.d.ts +267 -0
  67. package/lib/Socket/registration.js +166 -0
  68. package/lib/Socket/socket.d.ts +43 -0
  69. package/lib/Socket/socket.js +904 -0
  70. package/lib/Socket/username.mjs +132 -0
  71. package/lib/Socket/usync.d.ts +36 -0
  72. package/lib/Socket/usync.js +70 -0
  73. package/lib/Store/index.d.ts +3 -0
  74. package/lib/Store/index.js +10 -0
  75. package/lib/Store/keyed-db.d.ts +30 -0
  76. package/lib/Store/keyed-db.js +233 -0
  77. package/lib/Store/make-cache-manager-store.d.ts +13 -0
  78. package/lib/Store/make-cache-manager-store.js +83 -0
  79. package/lib/Store/make-in-memory-store.d.ts +118 -0
  80. package/lib/Store/make-in-memory-store.js +427 -0
  81. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  82. package/lib/Store/make-ordered-dictionary.js +81 -0
  83. package/lib/Store/object-repository.d.ts +10 -0
  84. package/lib/Store/object-repository.js +27 -0
  85. package/lib/Types/Auth.d.ts +110 -0
  86. package/lib/Types/Auth.js +2 -0
  87. package/lib/Types/Call.d.ts +13 -0
  88. package/lib/Types/Call.js +2 -0
  89. package/lib/Types/Chat.d.ts +102 -0
  90. package/lib/Types/Chat.js +4 -0
  91. package/lib/Types/Contact.d.ts +19 -0
  92. package/lib/Types/Contact.js +2 -0
  93. package/lib/Types/Events.d.ts +157 -0
  94. package/lib/Types/Events.js +2 -0
  95. package/lib/Types/GroupMetadata.d.ts +55 -0
  96. package/lib/Types/GroupMetadata.js +2 -0
  97. package/lib/Types/Label.d.ts +35 -0
  98. package/lib/Types/Label.js +27 -0
  99. package/lib/Types/LabelAssociation.d.ts +29 -0
  100. package/lib/Types/LabelAssociation.js +9 -0
  101. package/lib/Types/Message.d.ts +273 -0
  102. package/lib/Types/Message.js +9 -0
  103. package/lib/Types/Mex.js +39 -0
  104. package/lib/Types/Newsletter.d.ts +103 -0
  105. package/lib/Types/Newsletter.js +38 -0
  106. package/lib/Types/Product.d.ts +78 -0
  107. package/lib/Types/Product.js +2 -0
  108. package/lib/Types/Signal.d.ts +57 -0
  109. package/lib/Types/Signal.js +2 -0
  110. package/lib/Types/Socket.d.ts +111 -0
  111. package/lib/Types/Socket.js +2 -0
  112. package/lib/Types/State.d.ts +27 -0
  113. package/lib/Types/State.js +2 -0
  114. package/lib/Types/USync.d.ts +25 -0
  115. package/lib/Types/USync.js +2 -0
  116. package/lib/Types/index.d.ts +57 -0
  117. package/lib/Types/index.js +43 -0
  118. package/lib/Utils/Mex.js +39 -0
  119. package/lib/Utils/auth-utils.d.ts +18 -0
  120. package/lib/Utils/auth-utils.js +206 -0
  121. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  122. package/lib/Utils/baileys-event-stream.js +57 -0
  123. package/lib/Utils/browser-presets.js +64 -0
  124. package/lib/Utils/business.d.ts +22 -0
  125. package/lib/Utils/business.js +234 -0
  126. package/lib/Utils/chat-utils.d.ts +71 -0
  127. package/lib/Utils/chat-utils.js +726 -0
  128. package/lib/Utils/companion-reg-client-utils.js +40 -0
  129. package/lib/Utils/crypto.d.ts +41 -0
  130. package/lib/Utils/crypto.js +151 -0
  131. package/lib/Utils/decode-wa-message.d.ts +19 -0
  132. package/lib/Utils/decode-wa-message.js +198 -0
  133. package/lib/Utils/event-buffer.d.ts +35 -0
  134. package/lib/Utils/event-buffer.js +514 -0
  135. package/lib/Utils/extended-messages.js +231 -0
  136. package/lib/Utils/generics.d.ts +92 -0
  137. package/lib/Utils/generics.js +425 -0
  138. package/lib/Utils/history.d.ts +15 -0
  139. package/lib/Utils/history.js +96 -0
  140. package/lib/Utils/identity-change-handler.js +52 -0
  141. package/lib/Utils/index.d.ts +17 -0
  142. package/lib/Utils/index.js +40 -0
  143. package/lib/Utils/link-preview.d.ts +21 -0
  144. package/lib/Utils/link-preview.js +93 -0
  145. package/lib/Utils/logger.d.ts +4 -0
  146. package/lib/Utils/logger.js +7 -0
  147. package/lib/Utils/lt-hash.d.ts +12 -0
  148. package/lib/Utils/lt-hash.js +51 -0
  149. package/lib/Utils/make-mutex.d.ts +7 -0
  150. package/lib/Utils/make-mutex.js +43 -0
  151. package/lib/Utils/message-composer.js +293 -0
  152. package/lib/Utils/message-retry-manager.js +226 -0
  153. package/lib/Utils/messages-media.d.ts +116 -0
  154. package/lib/Utils/messages-media.js +815 -0
  155. package/lib/Utils/messages.d.ts +77 -0
  156. package/lib/Utils/messages.js +888 -0
  157. package/lib/Utils/noise-handler.d.ts +21 -0
  158. package/lib/Utils/noise-handler.js +155 -0
  159. package/lib/Utils/offline-node-processor.js +46 -0
  160. package/lib/Utils/pre-key-manager.js +95 -0
  161. package/lib/Utils/process-message.d.ts +41 -0
  162. package/lib/Utils/process-message.js +321 -0
  163. package/lib/Utils/reporting-utils.js +272 -0
  164. package/lib/Utils/signal.d.ts +32 -0
  165. package/lib/Utils/signal.js +160 -0
  166. package/lib/Utils/stanza-ack.js +38 -0
  167. package/lib/Utils/sync-action-utils.js +50 -0
  168. package/lib/Utils/tc-token-utils.js +169 -0
  169. package/lib/Utils/use-multi-file-auth-state.d.ts +13 -0
  170. package/lib/Utils/use-multi-file-auth-state.js +119 -0
  171. package/lib/Utils/validate-connection.d.ts +11 -0
  172. package/lib/Utils/validate-connection.js +229 -0
  173. package/lib/WABinary/constants.d.ts +30 -0
  174. package/lib/WABinary/constants.js +40 -0
  175. package/lib/WABinary/decode.d.ts +7 -0
  176. package/lib/WABinary/decode.js +252 -0
  177. package/lib/WABinary/encode.d.ts +3 -0
  178. package/lib/WABinary/encode.js +265 -0
  179. package/lib/WABinary/generic-utils.d.ts +17 -0
  180. package/lib/WABinary/generic-utils.js +204 -0
  181. package/lib/WABinary/index.d.ts +5 -0
  182. package/lib/WABinary/index.js +21 -0
  183. package/lib/WABinary/jid-utils.d.ts +31 -0
  184. package/lib/WABinary/jid-utils.js +132 -0
  185. package/lib/WABinary/types.d.ts +18 -0
  186. package/lib/WABinary/types.js +2 -0
  187. package/lib/WAM/BinaryInfo.d.ts +17 -0
  188. package/lib/WAM/BinaryInfo.js +13 -0
  189. package/lib/WAM/constants.d.ts +38 -0
  190. package/lib/WAM/constants.js +15350 -0
  191. package/lib/WAM/encode.d.ts +3 -0
  192. package/lib/WAM/encode.js +155 -0
  193. package/lib/WAM/index.d.ts +3 -0
  194. package/lib/WAM/index.js +19 -0
  195. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  196. package/lib/WAUSync/Protocols/USyncContactProtocol.js +55 -0
  197. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  198. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  199. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  200. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  201. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  202. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  203. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +27 -0
  204. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +25 -0
  205. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  206. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +8 -0
  207. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
  208. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  209. package/lib/WAUSync/Protocols/index.js +21 -0
  210. package/lib/WAUSync/USyncQuery.d.ts +28 -0
  211. package/lib/WAUSync/USyncQuery.js +93 -0
  212. package/lib/WAUSync/USyncUser.d.ts +12 -0
  213. package/lib/WAUSync/USyncUser.js +34 -0
  214. package/lib/WAUSync/index.d.ts +3 -0
  215. package/lib/WAUSync/index.js +19 -0
  216. package/lib/index.d.ts +12 -0
  217. package/lib/index.js +52 -0
  218. package/package.json +112 -0
@@ -0,0 +1,226 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RetryReason = void 0;
4
+ const lru_cache_1 = require("lru-cache");
5
+ const RECENT_MESSAGES_SIZE = 512;
6
+ const MESSAGE_KEY_SEPARATOR = '\u0000';
7
+ const RECREATE_SESSION_TIMEOUT = 60 * 60 * 1000; // 1 hour
8
+ const PHONE_REQUEST_DELAY = 3000;
9
+ var RetryReason;
10
+ (function (RetryReason) {
11
+ RetryReason[RetryReason["UnknownError"] = 0] = "UnknownError";
12
+ RetryReason[RetryReason["SignalErrorNoSession"] = 1] = "SignalErrorNoSession";
13
+ RetryReason[RetryReason["SignalErrorInvalidKey"] = 2] = "SignalErrorInvalidKey";
14
+ RetryReason[RetryReason["SignalErrorInvalidKeyId"] = 3] = "SignalErrorInvalidKeyId";
15
+ RetryReason[RetryReason["SignalErrorInvalidMessage"] = 4] = "SignalErrorInvalidMessage";
16
+ RetryReason[RetryReason["SignalErrorInvalidSignature"] = 5] = "SignalErrorInvalidSignature";
17
+ RetryReason[RetryReason["SignalErrorFutureMessage"] = 6] = "SignalErrorFutureMessage";
18
+ RetryReason[RetryReason["SignalErrorBadMac"] = 7] = "SignalErrorBadMac";
19
+ RetryReason[RetryReason["SignalErrorInvalidSession"] = 8] = "SignalErrorInvalidSession";
20
+ RetryReason[RetryReason["SignalErrorInvalidMsgKey"] = 9] = "SignalErrorInvalidMsgKey";
21
+ RetryReason[RetryReason["BadBroadcastEphemeralSetting"] = 10] = "BadBroadcastEphemeralSetting";
22
+ RetryReason[RetryReason["UnknownCompanionNoPrekey"] = 11] = "UnknownCompanionNoPrekey";
23
+ RetryReason[RetryReason["AdvFailure"] = 12] = "AdvFailure";
24
+ RetryReason[RetryReason["StatusRevokeDelay"] = 13] = "StatusRevokeDelay";
25
+ })(RetryReason || (exports.RetryReason = RetryReason = {}));
26
+ const MAC_ERROR_CODES = new Set([RetryReason.SignalErrorInvalidMessage, RetryReason.SignalErrorBadMac]);
27
+ /**
28
+ * Ported from xata-bail. Available as a utility class for callers who want
29
+ * more sophisticated retry/session-recreation bookkeeping than edgar-bail's
30
+ * existing inline retry logic in messages-recv.js/messages-send.js.
31
+ *
32
+ * NOT automatically wired into the existing retry code paths (which have
33
+ * their own working logic already) to avoid risking the message send/receive
34
+ * hot path without the ability to test against a live connection here.
35
+ */
36
+ class MessageRetryManager {
37
+ constructor(logger, maxMsgRetryCount) {
38
+ this.logger = logger;
39
+ this.recentMessagesMap = new lru_cache_1.LRUCache({
40
+ max: RECENT_MESSAGES_SIZE,
41
+ ttl: 5 * 60 * 1000,
42
+ ttlAutopurge: true,
43
+ dispose: (_value, key) => {
44
+ const separatorIndex = key.lastIndexOf(MESSAGE_KEY_SEPARATOR);
45
+ if (separatorIndex > -1) {
46
+ const messageId = key.slice(separatorIndex + MESSAGE_KEY_SEPARATOR.length);
47
+ this.messageKeyIndex.delete(messageId);
48
+ }
49
+ }
50
+ });
51
+ this.messageKeyIndex = new Map();
52
+ this.sessionRecreateHistory = new lru_cache_1.LRUCache({
53
+ ttl: RECREATE_SESSION_TIMEOUT * 2,
54
+ ttlAutopurge: true
55
+ });
56
+ this.retryCounters = new lru_cache_1.LRUCache({
57
+ ttl: 15 * 60 * 1000,
58
+ ttlAutopurge: true,
59
+ updateAgeOnGet: true
60
+ });
61
+ this.baseKeys = new lru_cache_1.LRUCache({
62
+ max: 1024,
63
+ ttl: 15 * 60 * 1000,
64
+ ttlAutopurge: true
65
+ });
66
+ this.pendingPhoneRequests = {};
67
+ this.maxMsgRetryCount = 5;
68
+ this.statistics = {
69
+ totalRetries: 0,
70
+ successfulRetries: 0,
71
+ failedRetries: 0,
72
+ mediaRetries: 0,
73
+ sessionRecreations: 0,
74
+ phoneRequests: 0
75
+ };
76
+ this.maxMsgRetryCount = maxMsgRetryCount;
77
+ }
78
+ addRecentMessage(to, id, message) {
79
+ const key = { to, id };
80
+ const keyStr = this.keyToString(key);
81
+ this.recentMessagesMap.set(keyStr, {
82
+ message,
83
+ timestamp: Date.now()
84
+ });
85
+ this.messageKeyIndex.set(id, keyStr);
86
+ this.logger.debug(`Added message to retry cache: ${to}/${id}`);
87
+ }
88
+ getRecentMessage(to, id) {
89
+ const key = { to, id };
90
+ const keyStr = this.keyToString(key);
91
+ return this.recentMessagesMap.get(keyStr);
92
+ }
93
+ shouldRecreateSession(jid, hasSession, errorCode) {
94
+ if (!hasSession) {
95
+ this.sessionRecreateHistory.set(jid, Date.now());
96
+ this.statistics.sessionRecreations++;
97
+ return {
98
+ reason: "we don't have a Signal session with them",
99
+ recreate: true
100
+ };
101
+ }
102
+ if (errorCode !== undefined && MAC_ERROR_CODES.has(errorCode)) {
103
+ this.sessionRecreateHistory.set(jid, Date.now());
104
+ this.statistics.sessionRecreations++;
105
+ this.logger.warn({ jid, errorCode: RetryReason[errorCode] }, 'MAC error detected, forcing immediate session recreation');
106
+ return {
107
+ reason: `MAC error (code ${errorCode}: ${RetryReason[errorCode]}), immediate session recreation`,
108
+ recreate: true
109
+ };
110
+ }
111
+ const now = Date.now();
112
+ const prevTime = this.sessionRecreateHistory.get(jid);
113
+ if (!prevTime || now - prevTime > RECREATE_SESSION_TIMEOUT) {
114
+ this.sessionRecreateHistory.set(jid, now);
115
+ this.statistics.sessionRecreations++;
116
+ return {
117
+ reason: 'retry count > 1 and over an hour since last recreation',
118
+ recreate: true
119
+ };
120
+ }
121
+ return { reason: '', recreate: false };
122
+ }
123
+ parseRetryErrorCode(errorAttr) {
124
+ if (errorAttr === undefined || errorAttr === '') {
125
+ return undefined;
126
+ }
127
+ const code = parseInt(errorAttr, 10);
128
+ if (Number.isNaN(code)) {
129
+ return undefined;
130
+ }
131
+ if (code >= RetryReason.UnknownError && code <= RetryReason.StatusRevokeDelay) {
132
+ return code;
133
+ }
134
+ return RetryReason.UnknownError;
135
+ }
136
+ isMacError(errorCode) {
137
+ return errorCode !== undefined && MAC_ERROR_CODES.has(errorCode);
138
+ }
139
+ incrementRetryCount(messageId) {
140
+ this.retryCounters.set(messageId, (this.retryCounters.get(messageId) || 0) + 1);
141
+ this.statistics.totalRetries++;
142
+ return this.retryCounters.get(messageId);
143
+ }
144
+ getRetryCount(messageId) {
145
+ return this.retryCounters.get(messageId) || 0;
146
+ }
147
+ hasExceededMaxRetries(messageId) {
148
+ return this.getRetryCount(messageId) >= this.maxMsgRetryCount;
149
+ }
150
+ markRetrySuccess(messageId) {
151
+ this.statistics.successfulRetries++;
152
+ this.retryCounters.delete(messageId);
153
+ this.cancelPendingPhoneRequest(messageId);
154
+ this.removeRecentMessage(messageId);
155
+ }
156
+ markRetryFailed(messageId) {
157
+ this.statistics.failedRetries++;
158
+ this.retryCounters.delete(messageId);
159
+ this.cancelPendingPhoneRequest(messageId);
160
+ this.removeRecentMessage(messageId);
161
+ }
162
+ schedulePhoneRequest(messageId, callback, delay = PHONE_REQUEST_DELAY) {
163
+ this.cancelPendingPhoneRequest(messageId);
164
+ this.pendingPhoneRequests[messageId] = setTimeout(() => {
165
+ delete this.pendingPhoneRequests[messageId];
166
+ this.statistics.phoneRequests++;
167
+ callback();
168
+ }, delay);
169
+ this.logger.debug(`Scheduled phone request for message ${messageId} with ${delay}ms delay`);
170
+ }
171
+ cancelPendingPhoneRequest(messageId) {
172
+ const timeout = this.pendingPhoneRequests[messageId];
173
+ if (timeout) {
174
+ clearTimeout(timeout);
175
+ delete this.pendingPhoneRequests[messageId];
176
+ this.logger.debug(`Cancelled pending phone request for message ${messageId}`);
177
+ }
178
+ }
179
+ clear() {
180
+ this.recentMessagesMap.clear();
181
+ this.messageKeyIndex.clear();
182
+ this.sessionRecreateHistory.clear();
183
+ this.retryCounters.clear();
184
+ this.baseKeys.clear();
185
+ for (const messageId of Object.keys(this.pendingPhoneRequests)) {
186
+ this.cancelPendingPhoneRequest(messageId);
187
+ }
188
+ this.statistics = {
189
+ totalRetries: 0,
190
+ successfulRetries: 0,
191
+ failedRetries: 0,
192
+ mediaRetries: 0,
193
+ sessionRecreations: 0,
194
+ phoneRequests: 0
195
+ };
196
+ }
197
+ saveBaseKey(addr, msgId, baseKey) {
198
+ this.baseKeys.set(`${addr}:${msgId}`, baseKey);
199
+ }
200
+ hasSameBaseKey(addr, msgId, baseKey) {
201
+ const stored = this.baseKeys.get(`${addr}:${msgId}`);
202
+ if (!stored || stored.length !== baseKey.length) {
203
+ return false;
204
+ }
205
+ for (let i = 0; i < stored.length; i++) {
206
+ if (stored[i] !== baseKey[i])
207
+ return false;
208
+ }
209
+ return true;
210
+ }
211
+ deleteBaseKey(addr, msgId) {
212
+ this.baseKeys.delete(`${addr}:${msgId}`);
213
+ }
214
+ keyToString(key) {
215
+ return `${key.to}${MESSAGE_KEY_SEPARATOR}${key.id}`;
216
+ }
217
+ removeRecentMessage(messageId) {
218
+ const keyStr = this.messageKeyIndex.get(messageId);
219
+ if (!keyStr) {
220
+ return;
221
+ }
222
+ this.recentMessagesMap.delete(keyStr);
223
+ this.messageKeyIndex.delete(messageId);
224
+ }
225
+ }
226
+ exports.MessageRetryManager = MessageRetryManager;
@@ -0,0 +1,116 @@
1
+ /// <reference types="node" />
2
+ /// <reference types="node" />
3
+ /// <reference types="node" />
4
+ import { Boom } from '@hapi/boom';
5
+ import { AxiosRequestConfig } from 'axios';
6
+ import type { Logger } from 'pino';
7
+ import { Readable, Transform } from 'stream';
8
+ import { URL } from 'url';
9
+ import { proto } from '../../WAProto';
10
+ import { DownloadableMessage, MediaConnInfo, MediaDecryptionKeyInfo, MediaType, SocketConfig, WAMediaUpload, WAMediaUploadFunction, WAMessageContent } from '../Types';
11
+ import { BinaryNode } from '../WABinary';
12
+ export declare const hkdfInfoKey: (type: MediaType) => string;
13
+ /** generates all the keys required to encrypt/decrypt & sign a media message */
14
+ export declare function getMediaKeys(buffer: Uint8Array | string | null | undefined, mediaType: MediaType): MediaDecryptionKeyInfo;
15
+ export declare const extractImageThumb: (bufferOrFilePath: Readable | Buffer | string, width?: number) => Promise<{
16
+ buffer: Buffer;
17
+ original: {
18
+ width: number | undefined;
19
+ height: number | undefined;
20
+ };
21
+ }>;
22
+ export declare const encodeBase64EncodedStringForUpload: (b64: string) => string;
23
+ export declare const generateProfilePicture: (mediaUpload: WAMediaUpload) => Promise<{
24
+ img: Buffer;
25
+ }>;
26
+ /** gets the SHA256 of the given media message */
27
+ export declare const mediaMessageSHA256B64: (message: WAMessageContent) => string | null | undefined;
28
+ export declare function getAudioDuration(buffer: Buffer | string | Readable): Promise<number | undefined>;
29
+ /**
30
+ referenced from and modifying https://github.com/wppconnect-team/wa-js/blob/main/src/chat/functions/prepareAudioWaveform.ts
31
+ */
32
+ export declare function getAudioWaveform(buffer: Buffer | string | Readable, logger?: Logger): Promise<Uint8Array | undefined>;
33
+ export declare const toReadable: (buffer: Buffer) => Readable;
34
+ export declare const toBuffer: (stream: Readable) => Promise<Buffer>;
35
+ export declare const getStream: (item: WAMediaUpload, opts?: AxiosRequestConfig) => Promise<{
36
+ readonly stream: Readable;
37
+ readonly type: "buffer";
38
+ } | {
39
+ readonly stream: Readable;
40
+ readonly type: "readable";
41
+ } | {
42
+ readonly stream: Readable;
43
+ readonly type: "remote";
44
+ } | {
45
+ readonly stream: import("fs").ReadStream;
46
+ readonly type: "file";
47
+ }>;
48
+ /** generates a thumbnail for a given media, if required */
49
+ export declare function generateThumbnail(file: string, mediaType: 'video' | 'image', options: {
50
+ logger?: Logger;
51
+ }): Promise<{
52
+ thumbnail: string | undefined;
53
+ originalImageDimensions: {
54
+ width: number;
55
+ height: number;
56
+ } | undefined;
57
+ }>;
58
+ export declare const getHttpStream: (url: string | URL, options?: AxiosRequestConfig & {
59
+ isStream?: true;
60
+ }) => Promise<Readable>;
61
+ type EncryptedStreamOptions = {
62
+ saveOriginalFileIfRequired?: boolean;
63
+ logger?: Logger;
64
+ opts?: AxiosRequestConfig;
65
+ };
66
+ export declare const prepareStream: (media: WAMediaUpload, mediaType: MediaType, { logger, saveOriginalFileIfRequired, opts }?: EncryptedStreamOptions) => Promise<{
67
+ mediaKey: undefined;
68
+ encWriteStream: Buffer;
69
+ fileLength: number;
70
+ fileSha256: Buffer;
71
+ fileEncSha256: undefined;
72
+ bodyPath: string | undefined;
73
+ didSaveToTmpPath: boolean;
74
+ }>;
75
+ export declare const encryptedStream: (media: WAMediaUpload, mediaType: MediaType, { logger, saveOriginalFileIfRequired, opts }?: EncryptedStreamOptions) => Promise<{
76
+ mediaKey: Buffer;
77
+ encWriteStream: Readable;
78
+ bodyPath: string | undefined;
79
+ mac: Buffer;
80
+ fileEncSha256: Buffer;
81
+ fileSha256: Buffer;
82
+ fileLength: number;
83
+ didSaveToTmpPath: boolean;
84
+ }>;
85
+ export type MediaDownloadOptions = {
86
+ startByte?: number;
87
+ endByte?: number;
88
+ options?: AxiosRequestConfig<any>;
89
+ };
90
+ export declare const getUrlFromDirectPath: (directPath: string) => string;
91
+ export declare const downloadContentFromMessage: ({ mediaKey, directPath, url }: DownloadableMessage, type: MediaType, opts?: MediaDownloadOptions) => Promise<Transform>;
92
+ /**
93
+ * Decrypts and downloads an AES256-CBC encrypted file given the keys.
94
+ * Assumes the SHA256 of the plaintext is appended to the end of the ciphertext
95
+ * */
96
+ export declare const downloadEncryptedContent: (downloadUrl: string, { cipherKey, iv }: MediaDecryptionKeyInfo, { startByte, endByte, options }?: MediaDownloadOptions) => Promise<Transform>;
97
+ export declare function extensionForMediaMessage(message: WAMessageContent): string;
98
+ export declare const getWAUploadToServer: ({ customUploadHosts, fetchAgent, logger, options }: SocketConfig, refreshMediaConn: (force: boolean) => Promise<MediaConnInfo>) => WAMediaUploadFunction;
99
+ /**
100
+ * Generate a binary node that will request the phone to re-upload the media & return the newly uploaded URL
101
+ */
102
+ export declare const encryptMediaRetryRequest: (key: proto.IMessageKey, mediaKey: Buffer | Uint8Array, meId: string) => BinaryNode;
103
+ export declare const decodeMediaRetryNode: (node: BinaryNode) => {
104
+ key: proto.IMessageKey;
105
+ media?: {
106
+ ciphertext: Uint8Array;
107
+ iv: Uint8Array;
108
+ } | undefined;
109
+ error?: Boom<any> | undefined;
110
+ };
111
+ export declare const decryptMediaRetryData: ({ ciphertext, iv }: {
112
+ ciphertext: Uint8Array;
113
+ iv: Uint8Array;
114
+ }, mediaKey: Uint8Array, msgId: string) => proto.MediaRetryNotification;
115
+ export declare const getStatusCodeForMediaRetry: (code: number) => any;
116
+ export {};