@pontalabs/baileys 1.0.6 → 1.0.7

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 (185) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +839 -267
  3. package/WAProto/GenerateStatics.sh +4 -3
  4. package/WAProto/WAProto.proto +511 -1215
  5. package/WAProto/index.d.ts +55 -14017
  6. package/WAProto/index.js +29 -97689
  7. package/lib/Defaults/index.d.ts +74 -72
  8. package/lib/Defaults/index.js +108 -94
  9. package/lib/Signal/Group/ciphertext-message.d.ts +7 -8
  10. package/lib/Signal/Group/ciphertext-message.js +16 -9
  11. package/lib/Signal/Group/group-session-builder.d.ts +13 -11
  12. package/lib/Signal/Group/group-session-builder.js +61 -19
  13. package/lib/Signal/Group/group_cipher.d.ts +16 -14
  14. package/lib/Signal/Group/group_cipher.js +70 -41
  15. package/lib/Signal/Group/index.d.ts +11 -12
  16. package/lib/Signal/Group/index.js +61 -12
  17. package/lib/Signal/Group/keyhelper.d.ts +14 -9
  18. package/lib/Signal/Group/keyhelper.js +58 -10
  19. package/lib/Signal/Group/sender-chain-key.d.ts +13 -13
  20. package/lib/Signal/Group/sender-chain-key.js +34 -13
  21. package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -16
  22. package/lib/Signal/Group/sender-key-distribution-message.js +36 -28
  23. package/lib/Signal/Group/sender-key-message.d.ts +18 -18
  24. package/lib/Signal/Group/sender-key-message.js +45 -38
  25. package/lib/Signal/Group/sender-key-name.d.ts +15 -14
  26. package/lib/Signal/Group/sender-key-name.js +31 -20
  27. package/lib/Signal/Group/sender-key-record.d.ts +25 -24
  28. package/lib/Signal/Group/sender-key-record.js +35 -18
  29. package/lib/Signal/Group/sender-key-state.d.ts +34 -29
  30. package/lib/Signal/Group/sender-key-state.js +100 -37
  31. package/lib/Signal/Group/sender-message-key.d.ts +10 -11
  32. package/lib/Signal/Group/sender-message-key.js +22 -15
  33. package/lib/Signal/libsignal.d.ts +8 -5
  34. package/lib/Signal/libsignal.js +142 -288
  35. package/lib/Signal/lid-mapping.d.ts +28 -23
  36. package/lib/Signal/lid-mapping.js +184 -277
  37. package/lib/Socket/Client/index.d.ts +2 -3
  38. package/lib/Socket/Client/index.js +22 -3
  39. package/lib/Socket/Client/types.d.ts +15 -15
  40. package/lib/Socket/Client/types.js +15 -8
  41. package/lib/Socket/Client/websocket.d.ts +12 -12
  42. package/lib/Socket/Client/websocket.js +37 -29
  43. package/lib/Socket/business.d.ts +178 -208
  44. package/lib/Socket/business.js +127 -91
  45. package/lib/Socket/chats.d.ts +93 -120
  46. package/lib/Socket/chats.js +652 -727
  47. package/lib/Socket/community.js +10 -2
  48. package/lib/Socket/groups.d.ts +111 -143
  49. package/lib/Socket/groups.js +186 -165
  50. package/lib/Socket/index.d.ts +183 -252
  51. package/lib/Socket/index.js +18 -38
  52. package/lib/Socket/messages-recv.d.ts +167 -196
  53. package/lib/Socket/messages-recv.js +1567 -1443
  54. package/lib/Socket/messages-send.d.ts +158 -192
  55. package/lib/Socket/messages-send.js +1208 -1102
  56. package/lib/Socket/newsletter.d.ts +138 -163
  57. package/lib/Socket/newsletter.js +249 -153
  58. package/lib/Socket/socket.d.ts +36 -50
  59. package/lib/Socket/socket.js +820 -749
  60. package/lib/Store/index.d.ts +4 -4
  61. package/lib/Store/index.js +24 -4
  62. package/lib/Store/make-in-memory-store.d.ts +104 -44
  63. package/lib/Store/make-in-memory-store.js +213 -199
  64. package/lib/Store/make-ordered-dictionary.d.ts +12 -13
  65. package/lib/Store/make-ordered-dictionary.js +45 -38
  66. package/lib/Store/object-repository.d.ts +10 -11
  67. package/lib/Store/object-repository.js +16 -9
  68. package/lib/Types/Auth.d.ts +97 -93
  69. package/lib/Types/Auth.js +3 -2
  70. package/lib/Types/Bussines.js +3 -2
  71. package/lib/Types/Call.d.ts +13 -14
  72. package/lib/Types/Call.js +3 -2
  73. package/lib/Types/Chat.d.ts +97 -78
  74. package/lib/Types/Chat.js +9 -8
  75. package/lib/Types/Contact.d.ts +9 -12
  76. package/lib/Types/Contact.js +3 -2
  77. package/lib/Types/Events.d.ts +176 -206
  78. package/lib/Types/Events.js +3 -2
  79. package/lib/Types/GroupMetadata.d.ts +48 -53
  80. package/lib/Types/GroupMetadata.js +3 -2
  81. package/lib/Types/Label.d.ts +14 -13
  82. package/lib/Types/Label.js +30 -24
  83. package/lib/Types/LabelAssociation.d.ts +20 -15
  84. package/lib/Types/LabelAssociation.js +12 -6
  85. package/lib/Types/Message.d.ts +412 -248
  86. package/lib/Types/Message.js +19 -17
  87. package/lib/Types/Product.d.ts +71 -58
  88. package/lib/Types/Product.js +3 -2
  89. package/lib/Types/Signal.d.ts +82 -71
  90. package/lib/Types/Signal.js +3 -2
  91. package/lib/Types/Socket.d.ts +81 -76
  92. package/lib/Types/Socket.js +3 -3
  93. package/lib/Types/State.d.ts +19 -75
  94. package/lib/Types/State.js +14 -56
  95. package/lib/Types/USync.d.ts +8 -8
  96. package/lib/Types/USync.js +3 -2
  97. package/lib/Types/index.d.ts +62 -47
  98. package/lib/Types/index.js +50 -26
  99. package/lib/Utils/auth-utils.d.ts +10 -13
  100. package/lib/Utils/auth-utils.js +472 -213
  101. package/lib/Utils/business.d.ts +20 -14
  102. package/lib/Utils/business.js +134 -110
  103. package/lib/Utils/chat-utils.d.ts +70 -88
  104. package/lib/Utils/chat-utils.js +403 -466
  105. package/lib/Utils/crypto.d.ts +46 -27
  106. package/lib/Utils/crypto.js +188 -117
  107. package/lib/Utils/decode-wa-message.d.ts +45 -58
  108. package/lib/Utils/decode-wa-message.js +311 -212
  109. package/lib/Utils/event-buffer.d.ts +17 -14
  110. package/lib/Utils/event-buffer.js +296 -321
  111. package/lib/Utils/generics.d.ts +92 -66
  112. package/lib/Utils/generics.js +436 -270
  113. package/lib/Utils/history.d.ts +23 -24
  114. package/lib/Utils/history.js +76 -106
  115. package/lib/Utils/index.d.ts +21 -24
  116. package/lib/Utils/index.js +41 -24
  117. package/lib/Utils/link-preview.d.ts +14 -12
  118. package/lib/Utils/link-preview.js +75 -40
  119. package/lib/Utils/logger.d.ts +11 -10
  120. package/lib/Utils/logger.js +7 -3
  121. package/lib/Utils/lt-hash.d.ts +14 -8
  122. package/lib/Utils/lt-hash.js +53 -3
  123. package/lib/Utils/make-mutex.d.ts +7 -7
  124. package/lib/Utils/make-mutex.js +44 -28
  125. package/lib/Utils/message-retry-manager.d.ts +88 -115
  126. package/lib/Utils/message-retry-manager.js +160 -265
  127. package/lib/Utils/messages-media.d.ts +107 -105
  128. package/lib/Utils/messages-media.js +619 -548
  129. package/lib/Utils/messages.d.ts +66 -52
  130. package/lib/Utils/messages.js +1558 -1730
  131. package/lib/Utils/noise-handler.d.ts +18 -18
  132. package/lib/Utils/noise-handler.js +130 -176
  133. package/lib/Utils/process-message.d.ts +32 -43
  134. package/lib/Utils/process-message.js +282 -484
  135. package/lib/Utils/rich-message-utils.js +724 -1220
  136. package/lib/Utils/signal.d.ts +32 -37
  137. package/lib/Utils/signal.js +105 -140
  138. package/lib/Utils/use-multi-file-auth-state.d.ts +5 -5
  139. package/lib/Utils/use-multi-file-auth-state.js +120 -70
  140. package/lib/Utils/use-single-file-auth-state.d.ts +13 -11
  141. package/lib/Utils/use-single-file-auth-state.js +66 -92
  142. package/lib/Utils/validate-connection.d.ts +13 -11
  143. package/lib/Utils/validate-connection.js +113 -128
  144. package/lib/WABinary/constants.d.ts +27 -25
  145. package/lib/WABinary/constants.js +1292 -1451
  146. package/lib/WABinary/decode.d.ts +9 -7
  147. package/lib/WABinary/decode.js +189 -163
  148. package/lib/WABinary/encode.d.ts +3 -3
  149. package/lib/WABinary/encode.js +155 -110
  150. package/lib/WABinary/generic-utils.d.ts +27 -14
  151. package/lib/WABinary/generic-utils.js +105 -177
  152. package/lib/WABinary/index.d.ts +5 -6
  153. package/lib/WABinary/index.js +25 -6
  154. package/lib/WABinary/jid-utils.d.ts +54 -41
  155. package/lib/WABinary/jid-utils.js +152 -83
  156. package/lib/WABinary/types.d.ts +13 -10
  157. package/lib/WABinary/types.js +3 -2
  158. package/lib/WAM/BinaryInfo.d.ts +15 -8
  159. package/lib/WAM/BinaryInfo.js +14 -7
  160. package/lib/WAM/constants.d.ts +37 -30
  161. package/lib/WAM/constants.js +11983 -19465
  162. package/lib/WAM/encode.d.ts +3 -3
  163. package/lib/WAM/encode.js +109 -95
  164. package/lib/WAM/index.d.ts +3 -4
  165. package/lib/WAM/index.js +23 -4
  166. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -9
  167. package/lib/WAUSync/Protocols/USyncContactProtocol.js +21 -37
  168. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -19
  169. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +26 -18
  170. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -11
  171. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +20 -12
  172. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -11
  173. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +24 -16
  174. package/lib/WAUSync/Protocols/index.d.ts +6 -6
  175. package/lib/WAUSync/Protocols/index.js +26 -6
  176. package/lib/WAUSync/USyncQuery.d.ts +28 -27
  177. package/lib/WAUSync/USyncQuery.js +62 -68
  178. package/lib/WAUSync/USyncUser.d.ts +10 -15
  179. package/lib/WAUSync/USyncUser.js +19 -20
  180. package/lib/WAUSync/index.d.ts +3 -4
  181. package/lib/WAUSync/index.js +23 -4
  182. package/lib/index.d.ts +12 -11
  183. package/lib/index.js +39 -12
  184. package/package.json +42 -86
  185. package/engine-requirements.js +0 -10
@@ -1,265 +1,160 @@
1
- import { LRUCache } from 'lru-cache';
2
- /** Number of sent messages to cache in memory for handling retry receipts */
3
- const RECENT_MESSAGES_SIZE = 512;
4
- const MESSAGE_KEY_SEPARATOR = '\u0000';
5
- /** Timeout for session recreation - 1 hour */
6
- const RECREATE_SESSION_TIMEOUT = 60 * 60 * 1000; // 1 hour in milliseconds
7
- const PHONE_REQUEST_DELAY = 3000;
8
- // Retry reason codes matching WhatsApp Web's Signal error codes.
9
- export 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
- /** MAC verification failed - most common cause of decryption failures */
16
- RetryReason[RetryReason["SignalErrorInvalidMessage"] = 4] = "SignalErrorInvalidMessage";
17
- RetryReason[RetryReason["SignalErrorInvalidSignature"] = 5] = "SignalErrorInvalidSignature";
18
- RetryReason[RetryReason["SignalErrorFutureMessage"] = 6] = "SignalErrorFutureMessage";
19
- /** Explicit MAC failure - session is definitely out of sync */
20
- RetryReason[RetryReason["SignalErrorBadMac"] = 7] = "SignalErrorBadMac";
21
- RetryReason[RetryReason["SignalErrorInvalidSession"] = 8] = "SignalErrorInvalidSession";
22
- RetryReason[RetryReason["SignalErrorInvalidMsgKey"] = 9] = "SignalErrorInvalidMsgKey";
23
- RetryReason[RetryReason["BadBroadcastEphemeralSetting"] = 10] = "BadBroadcastEphemeralSetting";
24
- RetryReason[RetryReason["UnknownCompanionNoPrekey"] = 11] = "UnknownCompanionNoPrekey";
25
- RetryReason[RetryReason["AdvFailure"] = 12] = "AdvFailure";
26
- RetryReason[RetryReason["StatusRevokeDelay"] = 13] = "StatusRevokeDelay";
27
- })(RetryReason || (RetryReason = {}));
28
- /** Error codes that indicate a MAC failure and require immediate session recreation */
29
- const MAC_ERROR_CODES = new Set([RetryReason.SignalErrorInvalidMessage, RetryReason.SignalErrorBadMac]);
30
- export class MessageRetryManager {
31
- constructor(logger, maxMsgRetryCount) {
32
- this.logger = logger;
33
- this.recentMessagesMap = new LRUCache({
34
- max: RECENT_MESSAGES_SIZE,
35
- ttl: 5 * 60 * 1000,
36
- ttlAutopurge: true,
37
- dispose: (_value, key) => {
38
- const separatorIndex = key.lastIndexOf(MESSAGE_KEY_SEPARATOR);
39
- if (separatorIndex > -1) {
40
- const messageId = key.slice(separatorIndex + MESSAGE_KEY_SEPARATOR.length);
41
- this.messageKeyIndex.delete(messageId);
42
- }
43
- }
44
- });
45
- this.messageKeyIndex = new Map();
46
- this.sessionRecreateHistory = new LRUCache({
47
- ttl: RECREATE_SESSION_TIMEOUT * 2,
48
- ttlAutopurge: true
49
- });
50
- this.retryCounters = new LRUCache({
51
- ttl: 15 * 60 * 1000,
52
- ttlAutopurge: true,
53
- updateAgeOnGet: true
54
- }); // 15 minutes TTL
55
- this.baseKeys = new LRUCache({
56
- max: 1024,
57
- ttl: 15 * 60 * 1000,
58
- ttlAutopurge: true
59
- });
60
- this.pendingPhoneRequests = {};
61
- this.maxMsgRetryCount = 5;
62
- this.statistics = {
63
- totalRetries: 0,
64
- successfulRetries: 0,
65
- failedRetries: 0,
66
- mediaRetries: 0,
67
- sessionRecreations: 0,
68
- phoneRequests: 0
69
- };
70
- this.maxMsgRetryCount = maxMsgRetryCount;
71
- }
72
- /**
73
- * Add a recent message to the cache for retry handling
74
- */
75
- addRecentMessage(to, id, message) {
76
- const key = { to, id };
77
- const keyStr = this.keyToString(key);
78
- // Add new message
79
- this.recentMessagesMap.set(keyStr, {
80
- message,
81
- timestamp: Date.now()
82
- });
83
- this.messageKeyIndex.set(id, keyStr);
84
- this.logger.debug(`Added message to retry cache: ${to}/${id}`);
85
- }
86
- /**
87
- * Get a recent message from the cache
88
- */
89
- getRecentMessage(to, id) {
90
- const key = { to, id };
91
- const keyStr = this.keyToString(key);
92
- return this.recentMessagesMap.get(keyStr);
93
- }
94
- /**
95
- * Check if a session should be recreated based on retry count, history, and error code.
96
- * MAC errors (codes 4 and 7) trigger immediate session recreation regardless of timeout.
97
- */
98
- shouldRecreateSession(jid, hasSession, errorCode) {
99
- // If we don't have a session, always recreate
100
- if (!hasSession) {
101
- this.sessionRecreateHistory.set(jid, Date.now());
102
- this.statistics.sessionRecreations++;
103
- return {
104
- reason: "we don't have a Signal session with them",
105
- recreate: true
106
- };
107
- }
108
- // IMMEDIATE recreation for MAC errors - session is definitely out of sync
109
- if (errorCode !== undefined && MAC_ERROR_CODES.has(errorCode)) {
110
- this.sessionRecreateHistory.set(jid, Date.now());
111
- this.statistics.sessionRecreations++;
112
- this.logger.warn({ jid, errorCode: RetryReason[errorCode] }, 'MAC error detected, forcing immediate session recreation');
113
- return {
114
- reason: `MAC error (code ${errorCode}: ${RetryReason[errorCode]}), immediate session recreation`,
115
- recreate: true
116
- };
117
- }
118
- const now = Date.now();
119
- const prevTime = this.sessionRecreateHistory.get(jid);
120
- // If no previous recreation or it's been more than an hour
121
- if (!prevTime || now - prevTime > RECREATE_SESSION_TIMEOUT) {
122
- this.sessionRecreateHistory.set(jid, now);
123
- this.statistics.sessionRecreations++;
124
- return {
125
- reason: 'retry count > 1 and over an hour since last recreation',
126
- recreate: true
127
- };
128
- }
129
- return { reason: '', recreate: false };
130
- }
131
- /**
132
- * Parse error code from retry receipt's retry node.
133
- * Returns undefined if no error code is present.
134
- */
135
- parseRetryErrorCode(errorAttr) {
136
- if (errorAttr === undefined || errorAttr === '') {
137
- return undefined;
138
- }
139
- const code = parseInt(errorAttr, 10);
140
- if (Number.isNaN(code)) {
141
- return undefined;
142
- }
143
- // Validate it's a known RetryReason
144
- if (code >= RetryReason.UnknownError && code <= RetryReason.StatusRevokeDelay) {
145
- return code;
146
- }
147
- return RetryReason.UnknownError;
148
- }
149
- /**
150
- * Check if an error code indicates a MAC failure
151
- */
152
- isMacError(errorCode) {
153
- return errorCode !== undefined && MAC_ERROR_CODES.has(errorCode);
154
- }
155
- /**
156
- * Increment retry counter for a message
157
- */
158
- incrementRetryCount(messageId) {
159
- this.retryCounters.set(messageId, (this.retryCounters.get(messageId) || 0) + 1);
160
- this.statistics.totalRetries++;
161
- return this.retryCounters.get(messageId);
162
- }
163
- /**
164
- * Get retry count for a message
165
- */
166
- getRetryCount(messageId) {
167
- return this.retryCounters.get(messageId) || 0;
168
- }
169
- /**
170
- * Check if message has exceeded maximum retry attempts
171
- */
172
- hasExceededMaxRetries(messageId) {
173
- return this.getRetryCount(messageId) >= this.maxMsgRetryCount;
174
- }
175
- /**
176
- * Mark retry as successful
177
- */
178
- markRetrySuccess(messageId) {
179
- this.statistics.successfulRetries++;
180
- // Clean up retry counter for successful message
181
- this.retryCounters.delete(messageId);
182
- this.cancelPendingPhoneRequest(messageId);
183
- this.removeRecentMessage(messageId);
184
- }
185
- /**
186
- * Mark retry as failed
187
- */
188
- markRetryFailed(messageId) {
189
- this.statistics.failedRetries++;
190
- this.retryCounters.delete(messageId);
191
- this.cancelPendingPhoneRequest(messageId);
192
- this.removeRecentMessage(messageId);
193
- }
194
- /**
195
- * Schedule a phone request with delay
196
- */
197
- schedulePhoneRequest(messageId, callback, delay = PHONE_REQUEST_DELAY) {
198
- // Cancel any existing request for this message
199
- this.cancelPendingPhoneRequest(messageId);
200
- this.pendingPhoneRequests[messageId] = setTimeout(() => {
201
- delete this.pendingPhoneRequests[messageId];
202
- this.statistics.phoneRequests++;
203
- callback();
204
- }, delay);
205
- this.logger.debug(`Scheduled phone request for message ${messageId} with ${delay}ms delay`);
206
- }
207
- /**
208
- * Cancel pending phone request
209
- */
210
- cancelPendingPhoneRequest(messageId) {
211
- const timeout = this.pendingPhoneRequests[messageId];
212
- if (timeout) {
213
- clearTimeout(timeout);
214
- delete this.pendingPhoneRequests[messageId];
215
- this.logger.debug(`Cancelled pending phone request for message ${messageId}`);
216
- }
217
- }
218
- clear() {
219
- this.recentMessagesMap.clear();
220
- this.messageKeyIndex.clear();
221
- this.sessionRecreateHistory.clear();
222
- this.retryCounters.clear();
223
- this.baseKeys.clear();
224
- for (const messageId of Object.keys(this.pendingPhoneRequests)) {
225
- this.cancelPendingPhoneRequest(messageId);
226
- }
227
- this.statistics = {
228
- totalRetries: 0,
229
- successfulRetries: 0,
230
- failedRetries: 0,
231
- mediaRetries: 0,
232
- sessionRecreations: 0,
233
- phoneRequests: 0
234
- };
235
- }
236
- saveBaseKey(addr, msgId, baseKey) {
237
- this.baseKeys.set(`${addr}:${msgId}`, baseKey);
238
- }
239
- hasSameBaseKey(addr, msgId, baseKey) {
240
- const stored = this.baseKeys.get(`${addr}:${msgId}`);
241
- if (!stored || stored.length !== baseKey.length) {
242
- return false;
243
- }
244
- for (let i = 0; i < stored.length; i++) {
245
- if (stored[i] !== baseKey[i])
246
- return false;
247
- }
248
- return true;
249
- }
250
- deleteBaseKey(addr, msgId) {
251
- this.baseKeys.delete(`${addr}:${msgId}`);
252
- }
253
- keyToString(key) {
254
- return `${key.to}${MESSAGE_KEY_SEPARATOR}${key.id}`;
255
- }
256
- removeRecentMessage(messageId) {
257
- const keyStr = this.messageKeyIndex.get(messageId);
258
- if (!keyStr) {
259
- return;
260
- }
261
- this.recentMessagesMap.delete(keyStr);
262
- this.messageKeyIndex.delete(messageId);
263
- }
264
- }
265
- //# sourceMappingURL=message-retry-manager.js.map
1
+ "use strict"
2
+
3
+ Object.defineProperty(exports, "__esModule", { value: true })
4
+
5
+ const LRUCache_1 = require("lru-cache")
6
+
7
+ /** Number of sent messages to cache in memory for handling retry receipts */
8
+ const RECENT_MESSAGES_SIZE = 512
9
+
10
+ /** Timeout for session recreation - 1 hour */
11
+ const RECREATE_SESSION_TIMEOUT = 60 * 60 * 1000 // 1 hour in milliseconds
12
+
13
+ const PHONE_REQUEST_DELAY = 3000
14
+
15
+ class MessageRetryManager {
16
+ constructor(logger, maxMsgRetryCount) {
17
+ this.logger = logger
18
+ this.recentMessagesMap = new LRUCache_1.LRUCache({
19
+ max: RECENT_MESSAGES_SIZE
20
+ })
21
+ this.sessionRecreateHistory = new LRUCache_1.LRUCache({
22
+ ttl: RECREATE_SESSION_TIMEOUT * 2,
23
+ ttlAutopurge: true
24
+ })
25
+ this.retryCounters = new LRUCache_1.LRUCache({
26
+ ttl: 15 * 60 * 1000,
27
+ ttlAutopurge: true,
28
+ updateAgeOnGet: true
29
+ }) // 15 minutes TTL
30
+ this.pendingPhoneRequests = {}
31
+ this.maxMsgRetryCount = 5
32
+ this.statistics = {
33
+ totalRetries: 0,
34
+ successfulRetries: 0,
35
+ failedRetries: 0,
36
+ mediaRetries: 0,
37
+ sessionRecreations: 0,
38
+ phoneRequests: 0
39
+ }
40
+ this.maxMsgRetryCount = maxMsgRetryCount
41
+ }
42
+ /**
43
+ * Add a recent message to the cache for retry handling
44
+ */
45
+ addRecentMessage(to, id, message) {
46
+ const key = { to, id }
47
+ const keyStr = this.keyToString(key)
48
+ // Add new message
49
+ this.recentMessagesMap.set(keyStr, {
50
+ message,
51
+ timestamp: Date.now()
52
+ })
53
+ this.logger.debug(`Added message to retry cache: ${to}/${id}`)
54
+ }
55
+ /**
56
+ * Get a recent message from the cache
57
+ */
58
+ getRecentMessage(to, id) {
59
+ const key = { to, id }
60
+ const keyStr = this.keyToString(key)
61
+ return this.recentMessagesMap.get(keyStr)
62
+ }
63
+ /**
64
+ * Check if a session should be recreated based on retry count and history
65
+ */
66
+ shouldRecreateSession(jid, retryCount, hasSession) {
67
+ // If we don't have a session, always recreate
68
+ if (!hasSession) {
69
+ this.sessionRecreateHistory.set(jid, Date.now())
70
+ this.statistics.sessionRecreations++
71
+ return {
72
+ reason: "we don't have a Signal session with them",
73
+ recreate: true
74
+ }
75
+ }
76
+ // Only consider recreation if retry count > 1
77
+ if (retryCount < 2) {
78
+ return { reason: '', recreate: false }
79
+ }
80
+ const now = Date.now()
81
+ const prevTime = this.sessionRecreateHistory.get(jid)
82
+ // If no previous recreation or it's been more than an hour
83
+ if (!prevTime || now - prevTime > RECREATE_SESSION_TIMEOUT) {
84
+ this.sessionRecreateHistory.set(jid, now)
85
+ this.statistics.sessionRecreations++
86
+ return {
87
+ reason: 'retry count > 1 and over an hour since last recreation',
88
+ recreate: true
89
+ }
90
+ }
91
+ return { reason: '', recreate: false }
92
+ }
93
+ /**
94
+ * Increment retry counter for a message
95
+ */
96
+ incrementRetryCount(messageId) {
97
+ this.retryCounters.set(messageId, (this.retryCounters.get(messageId) || 0) + 1)
98
+ this.statistics.totalRetries++
99
+ return this.retryCounters.get(messageId)
100
+ }
101
+ /**
102
+ * Get retry count for a message
103
+ */
104
+ getRetryCount(messageId) {
105
+ return this.retryCounters.get(messageId) || 0
106
+ }
107
+ /**
108
+ * Check if message has exceeded maximum retry attempts
109
+ */
110
+ hasExceededMaxRetries(messageId) {
111
+ return this.getRetryCount(messageId) >= this.maxMsgRetryCount
112
+ }
113
+ /**
114
+ * Mark retry as successful
115
+ */
116
+ markRetrySuccess(messageId) {
117
+ this.statistics.successfulRetries++
118
+ // Clean up retry counter for successful message
119
+ this.retryCounters.delete(messageId)
120
+ this.cancelPendingPhoneRequest(messageId)
121
+ }
122
+ /**
123
+ * Mark retry as failed
124
+ */
125
+ markRetryFailed(messageId) {
126
+ this.statistics.failedRetries++
127
+ this.retryCounters.delete(messageId)
128
+ }
129
+ /**
130
+ * Schedule a phone request with delay
131
+ */
132
+ schedulePhoneRequest(messageId, callback, delay = PHONE_REQUEST_DELAY) {
133
+ // Cancel any existing request for this message
134
+ this.cancelPendingPhoneRequest(messageId)
135
+ this.pendingPhoneRequests[messageId] = setTimeout(() => {
136
+ delete this.pendingPhoneRequests[messageId]
137
+ this.statistics.phoneRequests++
138
+ callback()
139
+ }, delay)
140
+ this.logger.debug(`Scheduled phone request for message ${messageId} with ${delay}ms delay`)
141
+ }
142
+ /**
143
+ * Cancel pending phone request
144
+ */
145
+ cancelPendingPhoneRequest(messageId) {
146
+ const timeout = this.pendingPhoneRequests[messageId]
147
+ if (timeout) {
148
+ clearTimeout(timeout)
149
+ delete this.pendingPhoneRequests[messageId]
150
+ this.logger.debug(`Cancelled pending phone request for message ${messageId}`)
151
+ }
152
+ }
153
+ keyToString(key) {
154
+ return `${key.to}:${key.id}`
155
+ }
156
+ }
157
+
158
+ module.exports = {
159
+ MessageRetryManager
160
+ }