@alannxd/baileys 6.0.5 → 6.0.6
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.
- package/WAProto/fix-import.js +29 -0
- package/WAProto/index.js +160 -201
- package/engine-requirements.js +1 -1
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +15 -37
- package/lib/Defaults/index.js +136 -119
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/Group/ciphertext-message.d.ts +0 -1
- package/lib/Signal/Group/ciphertext-message.js +5 -2
- package/lib/Signal/Group/group-session-builder.d.ts +3 -4
- package/lib/Signal/Group/group-session-builder.js +41 -7
- package/lib/Signal/Group/group_cipher.d.ts +4 -4
- package/lib/Signal/Group/group_cipher.js +51 -37
- package/lib/Signal/Group/index.d.ts +11 -12
- package/lib/Signal/Group/index.js +57 -12
- package/lib/Signal/Group/keyhelper.d.ts +1 -2
- package/lib/Signal/Group/keyhelper.js +44 -7
- package/lib/Signal/Group/queue-job.d.ts +1 -0
- package/lib/Signal/Group/queue-job.js +57 -0
- package/lib/Signal/Group/sender-chain-key.d.ts +2 -3
- package/lib/Signal/Group/sender-chain-key.js +15 -7
- package/lib/Signal/Group/sender-key-distribution-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-distribution-message.js +11 -8
- package/lib/Signal/Group/sender-key-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-message.js +12 -9
- package/lib/Signal/Group/sender-key-name.d.ts +0 -1
- package/lib/Signal/Group/sender-key-name.js +5 -2
- package/lib/Signal/Group/sender-key-record.d.ts +2 -3
- package/lib/Signal/Group/sender-key-record.js +21 -9
- package/lib/Signal/Group/sender-key-state.d.ts +6 -7
- package/lib/Signal/Group/sender-key-state.js +42 -27
- package/lib/Signal/Group/sender-message-key.d.ts +0 -1
- package/lib/Signal/Group/sender-message-key.js +7 -4
- package/lib/Signal/libsignal.d.ts +3 -5
- package/lib/Signal/libsignal.js +90 -347
- package/lib/Socket/Client/{types.d.ts → abstract-socket-client.d.ts} +5 -4
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -3
- package/lib/Socket/Client/index.js +19 -3
- package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/{websocket.d.ts → web-socket-client.d.ts} +2 -3
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +108 -154
- package/lib/Socket/business.js +43 -162
- package/lib/Socket/chats.d.ts +239 -96
- package/lib/Socket/chats.js +427 -627
- package/lib/Socket/communities.d.ts +146 -239
- package/lib/Socket/communities.js +80 -90
- package/lib/Socket/groups.d.ts +57 -104
- package/lib/Socket/groups.js +161 -154
- package/lib/Socket/index.d.ts +115 -202
- package/lib/Socket/index.js +10 -11
- package/lib/Socket/luxu.d.ts +266 -22
- package/lib/Socket/luxu.js +465 -422
- package/lib/Socket/messages-recv.d.ts +84 -136
- package/lib/Socket/messages-recv.js +615 -1421
- package/lib/Socket/messages-send.d.ts +126 -142
- package/lib/Socket/messages-send.js +671 -878
- package/lib/Socket/newsletter.d.ts +85 -121
- package/lib/Socket/newsletter.js +272 -147
- package/lib/Socket/registration.d.ts +267 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +19 -34
- package/lib/Socket/socket.js +313 -544
- package/lib/Socket/usync.d.ts +36 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -10
- package/lib/Store/index.js +10 -10
- package/lib/Store/make-cache-manager-store.d.ts +11 -17
- package/lib/Store/make-cache-manager-store.js +41 -43
- package/lib/Store/make-in-memory-store.d.ts +118 -39
- package/lib/Store/make-in-memory-store.js +341 -112
- package/lib/Store/make-ordered-dictionary.d.ts +10 -11
- package/lib/Store/make-ordered-dictionary.js +20 -14
- package/lib/Store/object-repository.d.ts +9 -10
- package/lib/Store/object-repository.js +6 -11
- package/lib/Types/Auth.d.ts +12 -19
- package/lib/Types/Auth.js +2 -2
- package/lib/Types/Call.d.ts +1 -3
- package/lib/Types/Call.js +2 -2
- package/lib/Types/Chat.d.ts +13 -35
- package/lib/Types/Chat.js +4 -8
- package/lib/Types/Contact.d.ts +1 -8
- package/lib/Types/Contact.js +2 -2
- package/lib/Types/Events.d.ts +17 -116
- package/lib/Types/Events.js +2 -2
- package/lib/Types/GroupMetadata.d.ts +5 -21
- package/lib/Types/GroupMetadata.js +2 -2
- package/lib/Types/Label.d.ts +0 -12
- package/lib/Types/Label.js +5 -3
- package/lib/Types/LabelAssociation.d.ts +0 -1
- package/lib/Types/LabelAssociation.js +5 -3
- package/lib/Types/Message.d.ts +58 -105
- package/lib/Types/Message.js +9 -11
- package/lib/Types/Newsletter.d.ts +103 -0
- package/lib/Types/Newsletter.js +38 -0
- package/lib/Types/Product.d.ts +1 -2
- package/lib/Types/Product.js +2 -2
- package/lib/Types/Signal.d.ts +2 -32
- package/lib/Types/Signal.js +2 -2
- package/lib/Types/Socket.d.ts +25 -50
- package/lib/Types/Socket.js +2 -3
- package/lib/Types/State.d.ts +2 -72
- package/lib/Types/State.js +2 -56
- package/lib/Types/USync.d.ts +2 -3
- package/lib/Types/USync.js +2 -2
- package/lib/Types/index.d.ts +14 -22
- package/lib/Types/index.js +31 -15
- package/lib/Utils/auth-utils.d.ts +6 -12
- package/lib/Utils/auth-utils.js +143 -239
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +2 -3
- package/lib/Utils/business.js +69 -66
- package/lib/Utils/chat-utils.d.ts +23 -52
- package/lib/Utils/chat-utils.js +253 -396
- package/lib/Utils/crypto.d.ts +22 -18
- package/lib/Utils/crypto.js +90 -57
- package/lib/Utils/decode-wa-message.d.ts +8 -55
- package/lib/Utils/decode-wa-message.js +84 -203
- package/lib/Utils/event-buffer.d.ts +8 -9
- package/lib/Utils/event-buffer.js +77 -185
- package/lib/Utils/generics.d.ts +29 -28
- package/lib/Utils/generics.js +210 -180
- package/lib/Utils/history.d.ts +9 -18
- package/lib/Utils/history.js +55 -93
- package/lib/Utils/index.d.ts +17 -22
- package/lib/Utils/index.js +33 -22
- package/lib/Utils/link-preview.d.ts +5 -5
- package/lib/Utils/link-preview.js +24 -16
- package/lib/Utils/logger.d.ts +3 -11
- package/lib/Utils/logger.js +7 -3
- package/lib/Utils/lt-hash.d.ts +12 -8
- package/lib/Utils/lt-hash.js +46 -3
- package/lib/Utils/make-mutex.d.ts +2 -4
- package/lib/Utils/make-mutex.js +34 -24
- package/lib/Utils/messages-media.d.ts +44 -61
- package/lib/Utils/messages-media.js +482 -451
- package/lib/Utils/messages.d.ts +18 -32
- package/lib/Utils/messages.js +369 -458
- package/lib/Utils/noise-handler.d.ts +14 -13
- package/lib/Utils/noise-handler.js +99 -145
- package/lib/Utils/process-message.d.ts +12 -31
- package/lib/Utils/process-message.js +150 -459
- package/lib/Utils/signal.d.ts +5 -20
- package/lib/Utils/signal.js +72 -120
- package/lib/Utils/use-multi-file-auth-state.d.ts +2 -2
- package/lib/Utils/use-multi-file-auth-state.js +27 -29
- package/lib/Utils/validate-connection.d.ts +7 -7
- package/lib/Utils/validate-connection.js +99 -73
- package/lib/WABinary/constants.d.ts +27 -25
- package/lib/WABinary/constants.js +20 -1281
- package/lib/WABinary/decode.d.ts +5 -5
- package/lib/WABinary/decode.js +42 -52
- package/lib/WABinary/encode.d.ts +3 -3
- package/lib/WABinary/encode.js +155 -110
- package/lib/WABinary/generic-utils.d.ts +7 -8
- package/lib/WABinary/generic-utils.js +49 -48
- package/lib/WABinary/index.d.ts +5 -6
- package/lib/WABinary/index.js +21 -6
- package/lib/WABinary/jid-utils.d.ts +8 -25
- package/lib/WABinary/jid-utils.js +40 -74
- package/lib/WABinary/types.d.ts +1 -2
- package/lib/WABinary/types.js +2 -2
- package/lib/WAM/BinaryInfo.d.ts +11 -3
- package/lib/WAM/BinaryInfo.js +5 -2
- package/lib/WAM/constants.d.ts +3 -5
- package/lib/WAM/constants.js +11958 -19461
- package/lib/WAM/encode.d.ts +3 -3
- package/lib/WAM/encode.js +22 -17
- package/lib/WAM/index.d.ts +3 -4
- package/lib/WAM/index.js +19 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +13 -33
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +14 -11
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +12 -9
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +13 -9
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +22 -20
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +3 -5
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +8 -13
- package/lib/WAUSync/Protocols/index.d.ts +4 -6
- package/lib/WAUSync/Protocols/index.js +20 -6
- package/lib/WAUSync/USyncQuery.d.ts +4 -6
- package/lib/WAUSync/USyncQuery.js +35 -44
- package/lib/WAUSync/USyncUser.d.ts +5 -10
- package/lib/WAUSync/USyncUser.js +5 -10
- package/lib/WAUSync/index.js +19 -4
- package/lib/index.d.ts +9 -10
- package/lib/index.js +34 -12
- package/package.json +50 -83
- package/WAProto/GenerateStatics.sh +0 -3
- package/WAProto/WAProto.proto +0 -5479
- package/WAProto/fix-imports.js +0 -85
- package/WAProto/index.d.ts +0 -14017
- package/lib/Signal/lid-mapping.d.ts +0 -23
- package/lib/Signal/lid-mapping.js +0 -277
- package/lib/Socket/Client/types.js +0 -11
- package/lib/Socket/Client/websocket.js +0 -54
- package/lib/Socket/mex.d.ts +0 -3
- package/lib/Socket/mex.js +0 -42
- package/lib/Store/keyed-db.d.ts +0 -22
- package/lib/Store/keyed-db.js +0 -108
- package/lib/Types/Bussines.d.ts +0 -25
- package/lib/Types/Bussines.js +0 -2
- package/lib/Types/Mex.d.ts +0 -141
- package/lib/Types/Mex.js +0 -37
- package/lib/Utils/browser-utils.d.ts +0 -4
- package/lib/Utils/browser-utils.js +0 -28
- package/lib/Utils/companion-reg-client-utils.d.ts +0 -17
- package/lib/Utils/companion-reg-client-utils.js +0 -35
- package/lib/Utils/identity-change-handler.d.ts +0 -44
- package/lib/Utils/identity-change-handler.js +0 -50
- package/lib/Utils/message-retry-manager.d.ts +0 -115
- package/lib/Utils/message-retry-manager.js +0 -265
- package/lib/Utils/offline-node-processor.d.ts +0 -17
- package/lib/Utils/offline-node-processor.js +0 -40
- package/lib/Utils/pre-key-manager.d.ts +0 -28
- package/lib/Utils/pre-key-manager.js +0 -106
- package/lib/Utils/reporting-utils.d.ts +0 -11
- package/lib/Utils/reporting-utils.js +0 -258
- package/lib/Utils/stanza-ack.d.ts +0 -11
- package/lib/Utils/stanza-ack.js +0 -38
- package/lib/Utils/sync-action-utils.d.ts +0 -19
- package/lib/Utils/sync-action-utils.js +0 -49
- package/lib/Utils/tc-token-utils.d.ts +0 -37
- package/lib/Utils/tc-token-utils.js +0 -163
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +0 -10
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +0 -25
- package/lib/WAUSync/index.d.ts +0 -4
|
@@ -1,265 +0,0 @@
|
|
|
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,17 +0,0 @@
|
|
|
1
|
-
import type { BinaryNode } from '../WABinary/index.js';
|
|
2
|
-
export type MessageType = 'message' | 'call' | 'receipt' | 'notification';
|
|
3
|
-
export type OfflineNodeProcessorDeps = {
|
|
4
|
-
isWsOpen: () => boolean;
|
|
5
|
-
onUnexpectedError: (error: Error, msg: string) => void;
|
|
6
|
-
yieldToEventLoop: () => Promise<void>;
|
|
7
|
-
};
|
|
8
|
-
/**
|
|
9
|
-
* Creates a processor for offline stanza nodes that:
|
|
10
|
-
* - Queues nodes for sequential processing
|
|
11
|
-
* - Yields to the event loop periodically to avoid blocking
|
|
12
|
-
* - Catches handler errors to prevent the processing loop from crashing
|
|
13
|
-
*/
|
|
14
|
-
export declare function makeOfflineNodeProcessor(nodeProcessorMap: Map<MessageType, (node: BinaryNode) => Promise<void>>, deps: OfflineNodeProcessorDeps, batchSize?: number): {
|
|
15
|
-
enqueue: (type: MessageType, node: BinaryNode) => void;
|
|
16
|
-
};
|
|
17
|
-
//# sourceMappingURL=offline-node-processor.d.ts.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Creates a processor for offline stanza nodes that:
|
|
3
|
-
* - Queues nodes for sequential processing
|
|
4
|
-
* - Yields to the event loop periodically to avoid blocking
|
|
5
|
-
* - Catches handler errors to prevent the processing loop from crashing
|
|
6
|
-
*/
|
|
7
|
-
export function makeOfflineNodeProcessor(nodeProcessorMap, deps, batchSize = 10) {
|
|
8
|
-
const nodes = [];
|
|
9
|
-
let isProcessing = false;
|
|
10
|
-
const enqueue = (type, node) => {
|
|
11
|
-
nodes.push({ type, node });
|
|
12
|
-
if (isProcessing) {
|
|
13
|
-
return;
|
|
14
|
-
}
|
|
15
|
-
isProcessing = true;
|
|
16
|
-
const promise = async () => {
|
|
17
|
-
let processedInBatch = 0;
|
|
18
|
-
while (nodes.length && deps.isWsOpen()) {
|
|
19
|
-
const { type, node } = nodes.shift();
|
|
20
|
-
const nodeProcessor = nodeProcessorMap.get(type);
|
|
21
|
-
if (!nodeProcessor) {
|
|
22
|
-
deps.onUnexpectedError(new Error(`unknown offline node type: ${type}`), 'processing offline node');
|
|
23
|
-
continue;
|
|
24
|
-
}
|
|
25
|
-
await nodeProcessor(node).catch(err => deps.onUnexpectedError(err, `processing offline ${type}`));
|
|
26
|
-
processedInBatch++;
|
|
27
|
-
// Yield to event loop after processing a batch
|
|
28
|
-
// This prevents blocking the event loop for too long when there are many offline nodes
|
|
29
|
-
if (processedInBatch >= batchSize) {
|
|
30
|
-
processedInBatch = 0;
|
|
31
|
-
await deps.yieldToEventLoop();
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
isProcessing = false;
|
|
35
|
-
};
|
|
36
|
-
promise().catch(error => deps.onUnexpectedError(error, 'processing offline nodes'));
|
|
37
|
-
};
|
|
38
|
-
return { enqueue };
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=offline-node-processor.js.map
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { SignalDataSet, SignalDataTypeMap, SignalKeyStore } from '../Types/index.js';
|
|
2
|
-
import type { ILogger } from './logger.js';
|
|
3
|
-
/**
|
|
4
|
-
* Manages pre-key operations with proper concurrency control
|
|
5
|
-
*/
|
|
6
|
-
export declare class PreKeyManager {
|
|
7
|
-
private readonly store;
|
|
8
|
-
private readonly logger;
|
|
9
|
-
private readonly queues;
|
|
10
|
-
constructor(store: SignalKeyStore, logger: ILogger);
|
|
11
|
-
/**
|
|
12
|
-
* Get or create a queue for a specific key type
|
|
13
|
-
*/
|
|
14
|
-
private getQueue;
|
|
15
|
-
/**
|
|
16
|
-
* Process pre-key operations (updates and deletions)
|
|
17
|
-
*/
|
|
18
|
-
processOperations(data: SignalDataSet, keyType: keyof SignalDataTypeMap, transactionCache: SignalDataSet, mutations: SignalDataSet, isInTransaction: boolean): Promise<void>;
|
|
19
|
-
/**
|
|
20
|
-
* Process deletions with validation
|
|
21
|
-
*/
|
|
22
|
-
private processDeletions;
|
|
23
|
-
/**
|
|
24
|
-
* Validate and process pre-key deletions outside transactions
|
|
25
|
-
*/
|
|
26
|
-
validateDeletions(data: SignalDataSet, keyType: keyof SignalDataTypeMap): Promise<void>;
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=pre-key-manager.d.ts.map
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
import PQueue from 'p-queue';
|
|
2
|
-
/**
|
|
3
|
-
* Manages pre-key operations with proper concurrency control
|
|
4
|
-
*/
|
|
5
|
-
export class PreKeyManager {
|
|
6
|
-
constructor(store, logger) {
|
|
7
|
-
this.store = store;
|
|
8
|
-
this.logger = logger;
|
|
9
|
-
this.queues = new Map();
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Get or create a queue for a specific key type
|
|
13
|
-
*/
|
|
14
|
-
getQueue(keyType) {
|
|
15
|
-
if (!this.queues.has(keyType)) {
|
|
16
|
-
this.queues.set(keyType, new PQueue({ concurrency: 1 }));
|
|
17
|
-
}
|
|
18
|
-
return this.queues.get(keyType);
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Process pre-key operations (updates and deletions)
|
|
22
|
-
*/
|
|
23
|
-
async processOperations(data, keyType, transactionCache, mutations, isInTransaction) {
|
|
24
|
-
const keyData = data[keyType];
|
|
25
|
-
if (!keyData)
|
|
26
|
-
return;
|
|
27
|
-
return this.getQueue(keyType).add(async () => {
|
|
28
|
-
// Ensure structures exist
|
|
29
|
-
transactionCache[keyType] = transactionCache[keyType] || {};
|
|
30
|
-
mutations[keyType] = mutations[keyType] || {};
|
|
31
|
-
// Separate deletions from updates
|
|
32
|
-
const deletions = [];
|
|
33
|
-
const updates = {};
|
|
34
|
-
for (const keyId in keyData) {
|
|
35
|
-
if (keyData[keyId] === null) {
|
|
36
|
-
deletions.push(keyId);
|
|
37
|
-
}
|
|
38
|
-
else {
|
|
39
|
-
updates[keyId] = keyData[keyId];
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
// Process updates (no validation needed)
|
|
43
|
-
if (Object.keys(updates).length > 0) {
|
|
44
|
-
Object.assign(transactionCache[keyType], updates);
|
|
45
|
-
Object.assign(mutations[keyType], updates);
|
|
46
|
-
}
|
|
47
|
-
// Process deletions with validation
|
|
48
|
-
if (deletions.length > 0) {
|
|
49
|
-
await this.processDeletions(keyType, deletions, transactionCache, mutations, isInTransaction);
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* Process deletions with validation
|
|
55
|
-
*/
|
|
56
|
-
async processDeletions(keyType, ids, transactionCache, mutations, isInTransaction) {
|
|
57
|
-
if (isInTransaction) {
|
|
58
|
-
// In transaction, only allow deletion if key exists in cache
|
|
59
|
-
for (const keyId of ids) {
|
|
60
|
-
if (transactionCache[keyType]?.[keyId]) {
|
|
61
|
-
transactionCache[keyType][keyId] = null;
|
|
62
|
-
mutations[keyType][keyId] = null;
|
|
63
|
-
}
|
|
64
|
-
else {
|
|
65
|
-
this.logger.warn(`Skipping deletion of non-existent ${keyType} in transaction: ${keyId}`);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
else {
|
|
70
|
-
// Outside transaction, validate against store
|
|
71
|
-
const existingKeys = await this.store.get(keyType, ids);
|
|
72
|
-
for (const keyId of ids) {
|
|
73
|
-
if (existingKeys[keyId]) {
|
|
74
|
-
transactionCache[keyType][keyId] = null;
|
|
75
|
-
mutations[keyType][keyId] = null;
|
|
76
|
-
}
|
|
77
|
-
else {
|
|
78
|
-
this.logger.warn(`Skipping deletion of non-existent ${keyType}: ${keyId}`);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* Validate and process pre-key deletions outside transactions
|
|
85
|
-
*/
|
|
86
|
-
async validateDeletions(data, keyType) {
|
|
87
|
-
const keyData = data[keyType];
|
|
88
|
-
if (!keyData)
|
|
89
|
-
return;
|
|
90
|
-
return this.getQueue(keyType).add(async () => {
|
|
91
|
-
// Find all deletion requests
|
|
92
|
-
const deletionIds = Object.keys(keyData).filter(id => keyData[id] === null);
|
|
93
|
-
if (deletionIds.length === 0)
|
|
94
|
-
return;
|
|
95
|
-
// Validate deletions
|
|
96
|
-
const existingKeys = await this.store.get(keyType, deletionIds);
|
|
97
|
-
for (const keyId of deletionIds) {
|
|
98
|
-
if (!existingKeys[keyId]) {
|
|
99
|
-
this.logger.warn(`Skipping deletion of non-existent ${keyType}: ${keyId}`);
|
|
100
|
-
delete data[keyType][keyId];
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
//# sourceMappingURL=pre-key-manager.js.map
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { proto } from '../../WAProto/index.js';
|
|
2
|
-
import type { WAMessageContent, WAMessageKey } from '../Types/index.js';
|
|
3
|
-
import type { BinaryNode } from '../WABinary/index.js';
|
|
4
|
-
export type ReportingField = {
|
|
5
|
-
f: number;
|
|
6
|
-
m?: boolean;
|
|
7
|
-
s?: ReportingField[];
|
|
8
|
-
};
|
|
9
|
-
export declare const shouldIncludeReportingToken: (message: proto.IMessage) => boolean;
|
|
10
|
-
export declare const getMessageReportingToken: (msgProtobuf: Buffer, message: WAMessageContent, key: WAMessageKey) => Promise<BinaryNode | null>;
|
|
11
|
-
//# sourceMappingURL=reporting-utils.d.ts.map
|