@genuxofficial/baileys 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.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/WAProto/GenerateStatics.sh +4 -0
- package/WAProto/WAProto.proto +3344 -0
- package/WAProto/index.d.ts +37016 -0
- package/WAProto/index.js +101044 -0
- package/WASignalGroup/GroupProtocol.js +1697 -0
- package/WASignalGroup/ciphertext_message.js +16 -0
- package/WASignalGroup/group_cipher.js +120 -0
- package/WASignalGroup/group_session_builder.js +46 -0
- package/WASignalGroup/index.js +5 -0
- package/WASignalGroup/keyhelper.js +21 -0
- package/WASignalGroup/protobufs.js +3 -0
- package/WASignalGroup/queue_job.js +69 -0
- package/WASignalGroup/sender_chain_key.js +50 -0
- package/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/WASignalGroup/sender_key_message.js +92 -0
- package/WASignalGroup/sender_key_name.js +70 -0
- package/WASignalGroup/sender_key_record.js +56 -0
- package/WASignalGroup/sender_key_state.js +129 -0
- package/WASignalGroup/sender_message_key.js +39 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +53 -0
- package/lib/Defaults/index.js +106 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +152 -0
- package/lib/Socket/Client/index.d.ts +2 -0
- package/lib/Socket/Client/index.js +18 -0
- package/lib/Socket/Client/types.d.ts +17 -0
- package/lib/Socket/Client/types.js +13 -0
- package/lib/Socket/Client/websocket.d.ts +12 -0
- package/lib/Socket/Client/websocket.js +62 -0
- package/lib/Socket/business.d.ts +149 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +85 -0
- package/lib/Socket/chats.js +850 -0
- package/lib/Socket/groups.d.ts +124 -0
- package/lib/Socket/groups.js +314 -0
- package/lib/Socket/index.d.ts +149 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +136 -0
- package/lib/Socket/messages-recv.js +912 -0
- package/lib/Socket/messages-send.d.ts +130 -0
- package/lib/Socket/messages-send.js +673 -0
- package/lib/Socket/socket.d.ts +45 -0
- package/lib/Socket/socket.js +622 -0
- package/lib/Socket/usync.d.ts +38 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -0
- package/lib/Store/index.js +10 -0
- package/lib/Store/make-cache-manager-store.d.ts +14 -0
- package/lib/Store/make-cache-manager-store.js +83 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +420 -0
- package/lib/Store/make-ordered-dictionary.d.ts +13 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.d.ts +105 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.d.ts +13 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.d.ts +108 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +19 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +172 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +56 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +46 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.d.ts +29 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.d.ts +271 -0
- package/lib/Types/Message.js +9 -0
- package/lib/Types/Product.d.ts +78 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.d.ts +57 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.d.ts +118 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.d.ts +27 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.d.ts +25 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.d.ts +63 -0
- package/lib/Types/index.js +41 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +200 -0
- 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 +22 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chat-utils.d.ts +72 -0
- package/lib/Utils/chat-utils.js +745 -0
- package/lib/Utils/crypto.d.ts +42 -0
- package/lib/Utils/crypto.js +181 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +205 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +520 -0
- package/lib/Utils/generics.d.ts +94 -0
- package/lib/Utils/generics.js +433 -0
- package/lib/Utils/history.d.ts +19 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.d.ts +17 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.d.ts +21 -0
- package/lib/Utils/link-preview.js +116 -0
- package/lib/Utils/logger.d.ts +11 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.d.ts +7 -0
- package/lib/Utils/make-mutex.js +44 -0
- package/lib/Utils/messages-media.d.ts +108 -0
- package/lib/Utils/messages-media.js +667 -0
- package/lib/Utils/messages.d.ts +78 -0
- package/lib/Utils/messages.js +760 -0
- package/lib/Utils/noise-handler.d.ts +21 -0
- package/lib/Utils/noise-handler.js +150 -0
- package/lib/Utils/process-message.d.ts +42 -0
- package/lib/Utils/process-message.js +373 -0
- package/lib/Utils/signal.d.ts +33 -0
- package/lib/Utils/signal.js +153 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-multi-file-auth-state.js +94 -0
- package/lib/Utils/validate-connection.d.ts +10 -0
- package/lib/Utils/validate-connection.js +175 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +40 -0
- package/lib/WABinary/decode.d.ts +8 -0
- package/lib/WABinary/decode.js +254 -0
- package/lib/WABinary/encode.d.ts +4 -0
- package/lib/WABinary/encode.js +234 -0
- package/lib/WABinary/generic-utils.d.ts +16 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.d.ts +31 -0
- package/lib/WABinary/jid-utils.js +62 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +18 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +39 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +4 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +26 -0
- package/lib/WAUSync/USyncQuery.js +79 -0
- package/lib/WAUSync/USyncUser.d.ts +10 -0
- package/lib/WAUSync/USyncUser.js +22 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.d.ts +12 -0
- package/lib/index.js +31 -0
- package/package.json +104 -0
@@ -0,0 +1,745 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.processSyncAction = exports.chatModificationToAppPatch = exports.decodePatches = exports.decodeSyncdSnapshot = exports.downloadExternalPatch = exports.downloadExternalBlob = exports.extractSyncdPatches = exports.decodeSyncdPatch = exports.decodeSyncdMutations = exports.encodeSyncdPatch = exports.newLTHashState = void 0;
|
4
|
+
const boom_1 = require("@hapi/boom");
|
5
|
+
const WAProto_1 = require("../../WAProto");
|
6
|
+
const LabelAssociation_1 = require("../Types/LabelAssociation");
|
7
|
+
const WABinary_1 = require("../WABinary");
|
8
|
+
const crypto_1 = require("./crypto");
|
9
|
+
const generics_1 = require("./generics");
|
10
|
+
const lt_hash_1 = require("./lt-hash");
|
11
|
+
const messages_media_1 = require("./messages-media");
|
12
|
+
const mutationKeys = async (keydata) => {
|
13
|
+
const expanded = await (0, crypto_1.hkdf)(keydata, 160, { info: 'WhatsApp Mutation Keys' });
|
14
|
+
return {
|
15
|
+
indexKey: expanded.slice(0, 32),
|
16
|
+
valueEncryptionKey: expanded.slice(32, 64),
|
17
|
+
valueMacKey: expanded.slice(64, 96),
|
18
|
+
snapshotMacKey: expanded.slice(96, 128),
|
19
|
+
patchMacKey: expanded.slice(128, 160)
|
20
|
+
};
|
21
|
+
};
|
22
|
+
const generateMac = (operation, data, keyId, key) => {
|
23
|
+
const getKeyData = () => {
|
24
|
+
let r;
|
25
|
+
switch (operation) {
|
26
|
+
case WAProto_1.proto.SyncdMutation.SyncdOperation.SET:
|
27
|
+
r = 0x01;
|
28
|
+
break;
|
29
|
+
case WAProto_1.proto.SyncdMutation.SyncdOperation.REMOVE:
|
30
|
+
r = 0x02;
|
31
|
+
break;
|
32
|
+
}
|
33
|
+
const buff = Buffer.from([r]);
|
34
|
+
return Buffer.concat([buff, Buffer.from(keyId, 'base64')]);
|
35
|
+
};
|
36
|
+
const keyData = getKeyData();
|
37
|
+
const last = Buffer.alloc(8); // 8 bytes
|
38
|
+
last.set([keyData.length], last.length - 1);
|
39
|
+
const total = Buffer.concat([keyData, data, last]);
|
40
|
+
const hmac = (0, crypto_1.hmacSign)(total, key, 'sha512');
|
41
|
+
return hmac.slice(0, 32);
|
42
|
+
};
|
43
|
+
const to64BitNetworkOrder = (e) => {
|
44
|
+
const buff = Buffer.alloc(8);
|
45
|
+
buff.writeUint32BE(e, 4);
|
46
|
+
return buff;
|
47
|
+
};
|
48
|
+
const makeLtHashGenerator = ({ indexValueMap, hash }) => {
|
49
|
+
indexValueMap = { ...indexValueMap };
|
50
|
+
const addBuffs = [];
|
51
|
+
const subBuffs = [];
|
52
|
+
return {
|
53
|
+
mix: ({ indexMac, valueMac, operation }) => {
|
54
|
+
const indexMacBase64 = Buffer.from(indexMac).toString('base64');
|
55
|
+
const prevOp = indexValueMap[indexMacBase64];
|
56
|
+
if (operation === WAProto_1.proto.SyncdMutation.SyncdOperation.REMOVE) {
|
57
|
+
if (!prevOp) {
|
58
|
+
throw new boom_1.Boom('tried remove, but no previous op', { data: { indexMac, valueMac } });
|
59
|
+
}
|
60
|
+
// remove from index value mac, since this mutation is erased
|
61
|
+
delete indexValueMap[indexMacBase64];
|
62
|
+
}
|
63
|
+
else {
|
64
|
+
addBuffs.push(new Uint8Array(valueMac).buffer);
|
65
|
+
// add this index into the history map
|
66
|
+
indexValueMap[indexMacBase64] = { valueMac };
|
67
|
+
}
|
68
|
+
if (prevOp) {
|
69
|
+
subBuffs.push(new Uint8Array(prevOp.valueMac).buffer);
|
70
|
+
}
|
71
|
+
},
|
72
|
+
finish: async () => {
|
73
|
+
const hashArrayBuffer = new Uint8Array(hash).buffer;
|
74
|
+
const result = await lt_hash_1.LT_HASH_ANTI_TAMPERING.subtractThenAdd(hashArrayBuffer, addBuffs, subBuffs);
|
75
|
+
const buffer = Buffer.from(result);
|
76
|
+
return {
|
77
|
+
hash: buffer,
|
78
|
+
indexValueMap
|
79
|
+
};
|
80
|
+
}
|
81
|
+
};
|
82
|
+
};
|
83
|
+
const generateSnapshotMac = (lthash, version, name, key) => {
|
84
|
+
const total = Buffer.concat([
|
85
|
+
lthash,
|
86
|
+
to64BitNetworkOrder(version),
|
87
|
+
Buffer.from(name, 'utf-8')
|
88
|
+
]);
|
89
|
+
return (0, crypto_1.hmacSign)(total, key, 'sha256');
|
90
|
+
};
|
91
|
+
const generatePatchMac = (snapshotMac, valueMacs, version, type, key) => {
|
92
|
+
const total = Buffer.concat([
|
93
|
+
snapshotMac,
|
94
|
+
...valueMacs,
|
95
|
+
to64BitNetworkOrder(version),
|
96
|
+
Buffer.from(type, 'utf-8')
|
97
|
+
]);
|
98
|
+
return (0, crypto_1.hmacSign)(total, key);
|
99
|
+
};
|
100
|
+
const newLTHashState = () => ({ version: 0, hash: Buffer.alloc(128), indexValueMap: {} });
|
101
|
+
exports.newLTHashState = newLTHashState;
|
102
|
+
const encodeSyncdPatch = async ({ type, index, syncAction, apiVersion, operation }, myAppStateKeyId, state, getAppStateSyncKey) => {
|
103
|
+
const key = !!myAppStateKeyId ? await getAppStateSyncKey(myAppStateKeyId) : undefined;
|
104
|
+
if (!key) {
|
105
|
+
throw new boom_1.Boom(`myAppStateKey ("${myAppStateKeyId}") not present`, { statusCode: 404 });
|
106
|
+
}
|
107
|
+
const encKeyId = Buffer.from(myAppStateKeyId, 'base64');
|
108
|
+
state = { ...state, indexValueMap: { ...state.indexValueMap } };
|
109
|
+
const indexBuffer = Buffer.from(JSON.stringify(index));
|
110
|
+
const dataProto = WAProto_1.proto.SyncActionData.fromObject({
|
111
|
+
index: indexBuffer,
|
112
|
+
value: syncAction,
|
113
|
+
padding: new Uint8Array(0),
|
114
|
+
version: apiVersion
|
115
|
+
});
|
116
|
+
const encoded = WAProto_1.proto.SyncActionData.encode(dataProto).finish();
|
117
|
+
const keyValue = await mutationKeys(key.keyData);
|
118
|
+
const encValue = (0, crypto_1.aesEncrypt)(encoded, keyValue.valueEncryptionKey);
|
119
|
+
const valueMac = generateMac(operation, encValue, encKeyId, keyValue.valueMacKey);
|
120
|
+
const indexMac = (0, crypto_1.hmacSign)(indexBuffer, keyValue.indexKey);
|
121
|
+
// update LT hash
|
122
|
+
const generator = makeLtHashGenerator(state);
|
123
|
+
generator.mix({ indexMac, valueMac, operation });
|
124
|
+
Object.assign(state, await generator.finish());
|
125
|
+
state.version += 1;
|
126
|
+
const snapshotMac = generateSnapshotMac(state.hash, state.version, type, keyValue.snapshotMacKey);
|
127
|
+
const patch = {
|
128
|
+
patchMac: generatePatchMac(snapshotMac, [valueMac], state.version, type, keyValue.patchMacKey),
|
129
|
+
snapshotMac: snapshotMac,
|
130
|
+
keyId: { id: encKeyId },
|
131
|
+
mutations: [
|
132
|
+
{
|
133
|
+
operation: operation,
|
134
|
+
record: {
|
135
|
+
index: {
|
136
|
+
blob: indexMac
|
137
|
+
},
|
138
|
+
value: {
|
139
|
+
blob: Buffer.concat([encValue, valueMac])
|
140
|
+
},
|
141
|
+
keyId: { id: encKeyId }
|
142
|
+
}
|
143
|
+
}
|
144
|
+
]
|
145
|
+
};
|
146
|
+
const base64Index = indexMac.toString('base64');
|
147
|
+
state.indexValueMap[base64Index] = { valueMac };
|
148
|
+
return { patch, state };
|
149
|
+
};
|
150
|
+
exports.encodeSyncdPatch = encodeSyncdPatch;
|
151
|
+
const decodeSyncdMutations = async (msgMutations, initialState, getAppStateSyncKey, onMutation, validateMacs) => {
|
152
|
+
const ltGenerator = makeLtHashGenerator(initialState);
|
153
|
+
// indexKey used to HMAC sign record.index.blob
|
154
|
+
// valueEncryptionKey used to AES-256-CBC encrypt record.value.blob[0:-32]
|
155
|
+
// the remaining record.value.blob[0:-32] is the mac, it the HMAC sign of key.keyId + decoded proto data + length of bytes in keyId
|
156
|
+
for (const msgMutation of msgMutations) {
|
157
|
+
// if it's a syncdmutation, get the operation property
|
158
|
+
// otherwise, if it's only a record -- it'll be a SET mutation
|
159
|
+
const operation = 'operation' in msgMutation ? msgMutation.operation : WAProto_1.proto.SyncdMutation.SyncdOperation.SET;
|
160
|
+
const record = ('record' in msgMutation && !!msgMutation.record) ? msgMutation.record : msgMutation;
|
161
|
+
const key = await getKey(record.keyId.id);
|
162
|
+
const content = Buffer.from(record.value.blob);
|
163
|
+
const encContent = content.slice(0, -32);
|
164
|
+
const ogValueMac = content.slice(-32);
|
165
|
+
if (validateMacs) {
|
166
|
+
const contentHmac = generateMac(operation, encContent, record.keyId.id, key.valueMacKey);
|
167
|
+
if (Buffer.compare(contentHmac, ogValueMac) !== 0) {
|
168
|
+
throw new boom_1.Boom('HMAC content verification failed');
|
169
|
+
}
|
170
|
+
}
|
171
|
+
const result = (0, crypto_1.aesDecrypt)(encContent, key.valueEncryptionKey);
|
172
|
+
const syncAction = WAProto_1.proto.SyncActionData.decode(result);
|
173
|
+
if (validateMacs) {
|
174
|
+
const hmac = (0, crypto_1.hmacSign)(syncAction.index, key.indexKey);
|
175
|
+
if (Buffer.compare(hmac, record.index.blob) !== 0) {
|
176
|
+
throw new boom_1.Boom('HMAC index verification failed');
|
177
|
+
}
|
178
|
+
}
|
179
|
+
const indexStr = Buffer.from(syncAction.index).toString();
|
180
|
+
onMutation({ syncAction, index: JSON.parse(indexStr) });
|
181
|
+
ltGenerator.mix({
|
182
|
+
indexMac: record.index.blob,
|
183
|
+
valueMac: ogValueMac,
|
184
|
+
operation: operation
|
185
|
+
});
|
186
|
+
}
|
187
|
+
return await ltGenerator.finish();
|
188
|
+
async function getKey(keyId) {
|
189
|
+
const base64Key = Buffer.from(keyId).toString('base64');
|
190
|
+
const keyEnc = await getAppStateSyncKey(base64Key);
|
191
|
+
if (!keyEnc) {
|
192
|
+
throw new boom_1.Boom(`failed to find key "${base64Key}" to decode mutation`, { statusCode: 404, data: { msgMutations } });
|
193
|
+
}
|
194
|
+
return mutationKeys(keyEnc.keyData);
|
195
|
+
}
|
196
|
+
};
|
197
|
+
exports.decodeSyncdMutations = decodeSyncdMutations;
|
198
|
+
const decodeSyncdPatch = async (msg, name, initialState, getAppStateSyncKey, onMutation, validateMacs) => {
|
199
|
+
if (validateMacs) {
|
200
|
+
const base64Key = Buffer.from(msg.keyId.id).toString('base64');
|
201
|
+
const mainKeyObj = await getAppStateSyncKey(base64Key);
|
202
|
+
if (!mainKeyObj) {
|
203
|
+
throw new boom_1.Boom(`failed to find key "${base64Key}" to decode patch`, { statusCode: 404, data: { msg } });
|
204
|
+
}
|
205
|
+
const mainKey = await mutationKeys(mainKeyObj.keyData);
|
206
|
+
const mutationmacs = msg.mutations.map(mutation => mutation.record.value.blob.slice(-32));
|
207
|
+
const patchMac = generatePatchMac(msg.snapshotMac, mutationmacs, (0, generics_1.toNumber)(msg.version.version), name, mainKey.patchMacKey);
|
208
|
+
if (Buffer.compare(patchMac, msg.patchMac) !== 0) {
|
209
|
+
throw new boom_1.Boom('Invalid patch mac');
|
210
|
+
}
|
211
|
+
}
|
212
|
+
const result = await (0, exports.decodeSyncdMutations)(msg.mutations, initialState, getAppStateSyncKey, onMutation, validateMacs);
|
213
|
+
return result;
|
214
|
+
};
|
215
|
+
exports.decodeSyncdPatch = decodeSyncdPatch;
|
216
|
+
const extractSyncdPatches = async (result, options) => {
|
217
|
+
const syncNode = (0, WABinary_1.getBinaryNodeChild)(result, 'sync');
|
218
|
+
const collectionNodes = (0, WABinary_1.getBinaryNodeChildren)(syncNode, 'collection');
|
219
|
+
const final = {};
|
220
|
+
await Promise.all(collectionNodes.map(async (collectionNode) => {
|
221
|
+
const patchesNode = (0, WABinary_1.getBinaryNodeChild)(collectionNode, 'patches');
|
222
|
+
const patches = (0, WABinary_1.getBinaryNodeChildren)(patchesNode || collectionNode, 'patch');
|
223
|
+
const snapshotNode = (0, WABinary_1.getBinaryNodeChild)(collectionNode, 'snapshot');
|
224
|
+
const syncds = [];
|
225
|
+
const name = collectionNode.attrs.name;
|
226
|
+
const hasMorePatches = collectionNode.attrs.has_more_patches === 'true';
|
227
|
+
let snapshot = undefined;
|
228
|
+
if (snapshotNode && !!snapshotNode.content) {
|
229
|
+
if (!Buffer.isBuffer(snapshotNode)) {
|
230
|
+
snapshotNode.content = Buffer.from(Object.values(snapshotNode.content));
|
231
|
+
}
|
232
|
+
const blobRef = WAProto_1.proto.ExternalBlobReference.decode(snapshotNode.content);
|
233
|
+
const data = await (0, exports.downloadExternalBlob)(blobRef, options);
|
234
|
+
snapshot = WAProto_1.proto.SyncdSnapshot.decode(data);
|
235
|
+
}
|
236
|
+
for (let { content } of patches) {
|
237
|
+
if (content) {
|
238
|
+
if (!Buffer.isBuffer(content)) {
|
239
|
+
content = Buffer.from(Object.values(content));
|
240
|
+
}
|
241
|
+
const syncd = WAProto_1.proto.SyncdPatch.decode(content);
|
242
|
+
if (!syncd.version) {
|
243
|
+
syncd.version = { version: +collectionNode.attrs.version + 1 };
|
244
|
+
}
|
245
|
+
syncds.push(syncd);
|
246
|
+
}
|
247
|
+
}
|
248
|
+
final[name] = { patches: syncds, hasMorePatches, snapshot };
|
249
|
+
}));
|
250
|
+
return final;
|
251
|
+
};
|
252
|
+
exports.extractSyncdPatches = extractSyncdPatches;
|
253
|
+
const downloadExternalBlob = async (blob, options) => {
|
254
|
+
const stream = await (0, messages_media_1.downloadContentFromMessage)(blob, 'md-app-state', { options });
|
255
|
+
const bufferArray = [];
|
256
|
+
for await (const chunk of stream) {
|
257
|
+
bufferArray.push(chunk);
|
258
|
+
}
|
259
|
+
return Buffer.concat(bufferArray);
|
260
|
+
};
|
261
|
+
exports.downloadExternalBlob = downloadExternalBlob;
|
262
|
+
const downloadExternalPatch = async (blob, options) => {
|
263
|
+
const buffer = await (0, exports.downloadExternalBlob)(blob, options);
|
264
|
+
const syncData = WAProto_1.proto.SyncdMutations.decode(buffer);
|
265
|
+
return syncData;
|
266
|
+
};
|
267
|
+
exports.downloadExternalPatch = downloadExternalPatch;
|
268
|
+
const decodeSyncdSnapshot = async (name, snapshot, getAppStateSyncKey, minimumVersionNumber, validateMacs = true) => {
|
269
|
+
const newState = (0, exports.newLTHashState)();
|
270
|
+
newState.version = (0, generics_1.toNumber)(snapshot.version.version);
|
271
|
+
const mutationMap = {};
|
272
|
+
const areMutationsRequired = typeof minimumVersionNumber === 'undefined'
|
273
|
+
|| newState.version > minimumVersionNumber;
|
274
|
+
const { hash, indexValueMap } = await (0, exports.decodeSyncdMutations)(snapshot.records, newState, getAppStateSyncKey, areMutationsRequired
|
275
|
+
? (mutation) => {
|
276
|
+
var _a;
|
277
|
+
const index = (_a = mutation.syncAction.index) === null || _a === void 0 ? void 0 : _a.toString();
|
278
|
+
mutationMap[index] = mutation;
|
279
|
+
}
|
280
|
+
: () => { }, validateMacs);
|
281
|
+
newState.hash = hash;
|
282
|
+
newState.indexValueMap = indexValueMap;
|
283
|
+
if (validateMacs) {
|
284
|
+
const base64Key = Buffer.from(snapshot.keyId.id).toString('base64');
|
285
|
+
const keyEnc = await getAppStateSyncKey(base64Key);
|
286
|
+
if (!keyEnc) {
|
287
|
+
throw new boom_1.Boom(`failed to find key "${base64Key}" to decode mutation`);
|
288
|
+
}
|
289
|
+
const result = await mutationKeys(keyEnc.keyData);
|
290
|
+
const computedSnapshotMac = generateSnapshotMac(newState.hash, newState.version, name, result.snapshotMacKey);
|
291
|
+
if (Buffer.compare(snapshot.mac, computedSnapshotMac) !== 0) {
|
292
|
+
throw new boom_1.Boom(`failed to verify LTHash at ${newState.version} of ${name} from snapshot`);
|
293
|
+
}
|
294
|
+
}
|
295
|
+
return {
|
296
|
+
state: newState,
|
297
|
+
mutationMap
|
298
|
+
};
|
299
|
+
};
|
300
|
+
exports.decodeSyncdSnapshot = decodeSyncdSnapshot;
|
301
|
+
const decodePatches = async (name, syncds, initial, getAppStateSyncKey, options, minimumVersionNumber, logger, validateMacs = true) => {
|
302
|
+
var _a;
|
303
|
+
const newState = {
|
304
|
+
...initial,
|
305
|
+
indexValueMap: { ...initial.indexValueMap }
|
306
|
+
};
|
307
|
+
const mutationMap = {};
|
308
|
+
for (const syncd of syncds) {
|
309
|
+
const { version, keyId, snapshotMac } = syncd;
|
310
|
+
if (syncd.externalMutations) {
|
311
|
+
logger === null || logger === void 0 ? void 0 : logger.trace({ name, version }, 'downloading external patch');
|
312
|
+
const ref = await (0, exports.downloadExternalPatch)(syncd.externalMutations, options);
|
313
|
+
logger === null || logger === void 0 ? void 0 : logger.debug({ name, version, mutations: ref.mutations.length }, 'downloaded external patch');
|
314
|
+
(_a = syncd.mutations) === null || _a === void 0 ? void 0 : _a.push(...ref.mutations);
|
315
|
+
}
|
316
|
+
const patchVersion = (0, generics_1.toNumber)(version.version);
|
317
|
+
newState.version = patchVersion;
|
318
|
+
const shouldMutate = typeof minimumVersionNumber === 'undefined' || patchVersion > minimumVersionNumber;
|
319
|
+
const decodeResult = await (0, exports.decodeSyncdPatch)(syncd, name, newState, getAppStateSyncKey, shouldMutate
|
320
|
+
? mutation => {
|
321
|
+
var _a;
|
322
|
+
const index = (_a = mutation.syncAction.index) === null || _a === void 0 ? void 0 : _a.toString();
|
323
|
+
mutationMap[index] = mutation;
|
324
|
+
}
|
325
|
+
: (() => { }), true);
|
326
|
+
newState.hash = decodeResult.hash;
|
327
|
+
newState.indexValueMap = decodeResult.indexValueMap;
|
328
|
+
if (validateMacs) {
|
329
|
+
const base64Key = Buffer.from(keyId.id).toString('base64');
|
330
|
+
const keyEnc = await getAppStateSyncKey(base64Key);
|
331
|
+
if (!keyEnc) {
|
332
|
+
throw new boom_1.Boom(`failed to find key "${base64Key}" to decode mutation`);
|
333
|
+
}
|
334
|
+
const result = await mutationKeys(keyEnc.keyData);
|
335
|
+
const computedSnapshotMac = generateSnapshotMac(newState.hash, newState.version, name, result.snapshotMacKey);
|
336
|
+
if (Buffer.compare(snapshotMac, computedSnapshotMac) !== 0) {
|
337
|
+
throw new boom_1.Boom(`failed to verify LTHash at ${newState.version} of ${name}`);
|
338
|
+
}
|
339
|
+
}
|
340
|
+
// clear memory used up by the mutations
|
341
|
+
syncd.mutations = [];
|
342
|
+
}
|
343
|
+
return { state: newState, mutationMap };
|
344
|
+
};
|
345
|
+
exports.decodePatches = decodePatches;
|
346
|
+
const chatModificationToAppPatch = (mod, jid) => {
|
347
|
+
const OP = WAProto_1.proto.SyncdMutation.SyncdOperation;
|
348
|
+
const getMessageRange = (lastMessages) => {
|
349
|
+
let messageRange;
|
350
|
+
if (Array.isArray(lastMessages)) {
|
351
|
+
const lastMsg = lastMessages[lastMessages.length - 1];
|
352
|
+
messageRange = {
|
353
|
+
lastMessageTimestamp: lastMsg === null || lastMsg === void 0 ? void 0 : lastMsg.messageTimestamp,
|
354
|
+
messages: (lastMessages === null || lastMessages === void 0 ? void 0 : lastMessages.length) ? lastMessages.map(m => {
|
355
|
+
var _a, _b;
|
356
|
+
if (!((_a = m.key) === null || _a === void 0 ? void 0 : _a.id) || !((_b = m.key) === null || _b === void 0 ? void 0 : _b.remoteJid)) {
|
357
|
+
throw new boom_1.Boom('Incomplete key', { statusCode: 400, data: m });
|
358
|
+
}
|
359
|
+
if ((0, WABinary_1.isJidGroup)(m.key.remoteJid) && !m.key.fromMe && !m.key.participant) {
|
360
|
+
throw new boom_1.Boom('Expected not from me message to have participant', { statusCode: 400, data: m });
|
361
|
+
}
|
362
|
+
if (!m.messageTimestamp || !(0, generics_1.toNumber)(m.messageTimestamp)) {
|
363
|
+
throw new boom_1.Boom('Missing timestamp in last message list', { statusCode: 400, data: m });
|
364
|
+
}
|
365
|
+
if (m.key.participant) {
|
366
|
+
m.key.participant = (0, WABinary_1.jidNormalizedUser)(m.key.participant);
|
367
|
+
}
|
368
|
+
return m;
|
369
|
+
}) : undefined
|
370
|
+
};
|
371
|
+
}
|
372
|
+
else {
|
373
|
+
messageRange = lastMessages;
|
374
|
+
}
|
375
|
+
return messageRange;
|
376
|
+
};
|
377
|
+
let patch;
|
378
|
+
if ('mute' in mod) {
|
379
|
+
patch = {
|
380
|
+
syncAction: {
|
381
|
+
muteAction: {
|
382
|
+
muted: !!mod.mute,
|
383
|
+
muteEndTimestamp: mod.mute || undefined
|
384
|
+
}
|
385
|
+
},
|
386
|
+
index: ['mute', jid],
|
387
|
+
type: 'regular_high',
|
388
|
+
apiVersion: 2,
|
389
|
+
operation: OP.SET
|
390
|
+
};
|
391
|
+
}
|
392
|
+
else if ('archive' in mod) {
|
393
|
+
patch = {
|
394
|
+
syncAction: {
|
395
|
+
archiveChatAction: {
|
396
|
+
archived: !!mod.archive,
|
397
|
+
messageRange: getMessageRange(mod.lastMessages)
|
398
|
+
}
|
399
|
+
},
|
400
|
+
index: ['archive', jid],
|
401
|
+
type: 'regular_low',
|
402
|
+
apiVersion: 3,
|
403
|
+
operation: OP.SET
|
404
|
+
};
|
405
|
+
}
|
406
|
+
else if ('markRead' in mod) {
|
407
|
+
patch = {
|
408
|
+
syncAction: {
|
409
|
+
markChatAsReadAction: {
|
410
|
+
read: mod.markRead,
|
411
|
+
messageRange: getMessageRange(mod.lastMessages)
|
412
|
+
}
|
413
|
+
},
|
414
|
+
index: ['markChatAsRead', jid],
|
415
|
+
type: 'regular_low',
|
416
|
+
apiVersion: 3,
|
417
|
+
operation: OP.SET
|
418
|
+
};
|
419
|
+
}
|
420
|
+
else if ('deleteForMe' in mod) {
|
421
|
+
const { timestamp, key, deleteMedia } = mod.deleteForMe;
|
422
|
+
patch = {
|
423
|
+
syncAction: {
|
424
|
+
deleteMessageForMeAction: {
|
425
|
+
deleteMedia,
|
426
|
+
messageTimestamp: timestamp
|
427
|
+
}
|
428
|
+
},
|
429
|
+
index: ['deleteMessageForMe', jid, key.id, key.fromMe ? '1' : '0', '0'],
|
430
|
+
type: 'regular_high',
|
431
|
+
apiVersion: 3,
|
432
|
+
operation: OP.SET
|
433
|
+
};
|
434
|
+
}
|
435
|
+
else if ('clear' in mod) {
|
436
|
+
patch = {
|
437
|
+
syncAction: {
|
438
|
+
clearChatAction: {} // add message range later
|
439
|
+
},
|
440
|
+
index: ['clearChat', jid, '1' /*the option here is 0 when keep starred messages is enabled*/, '0'],
|
441
|
+
type: 'regular_high',
|
442
|
+
apiVersion: 6,
|
443
|
+
operation: OP.SET
|
444
|
+
};
|
445
|
+
}
|
446
|
+
else if ('pin' in mod) {
|
447
|
+
patch = {
|
448
|
+
syncAction: {
|
449
|
+
pinAction: {
|
450
|
+
pinned: !!mod.pin
|
451
|
+
}
|
452
|
+
},
|
453
|
+
index: ['pin_v1', jid],
|
454
|
+
type: 'regular_low',
|
455
|
+
apiVersion: 5,
|
456
|
+
operation: OP.SET
|
457
|
+
};
|
458
|
+
}
|
459
|
+
else if ('star' in mod) {
|
460
|
+
const key = mod.star.messages[0];
|
461
|
+
patch = {
|
462
|
+
syncAction: {
|
463
|
+
starAction: {
|
464
|
+
starred: !!mod.star.star
|
465
|
+
}
|
466
|
+
},
|
467
|
+
index: ['star', jid, key.id, key.fromMe ? '1' : '0', '0'],
|
468
|
+
type: 'regular_low',
|
469
|
+
apiVersion: 2,
|
470
|
+
operation: OP.SET
|
471
|
+
};
|
472
|
+
}
|
473
|
+
else if ('delete' in mod) {
|
474
|
+
patch = {
|
475
|
+
syncAction: {
|
476
|
+
deleteChatAction: {
|
477
|
+
messageRange: getMessageRange(mod.lastMessages),
|
478
|
+
}
|
479
|
+
},
|
480
|
+
index: ['deleteChat', jid, '1'],
|
481
|
+
type: 'regular_high',
|
482
|
+
apiVersion: 6,
|
483
|
+
operation: OP.SET
|
484
|
+
};
|
485
|
+
}
|
486
|
+
else if ('pushNameSetting' in mod) {
|
487
|
+
patch = {
|
488
|
+
syncAction: {
|
489
|
+
pushNameSetting: {
|
490
|
+
name: mod.pushNameSetting
|
491
|
+
}
|
492
|
+
},
|
493
|
+
index: ['setting_pushName'],
|
494
|
+
type: 'critical_block',
|
495
|
+
apiVersion: 1,
|
496
|
+
operation: OP.SET,
|
497
|
+
};
|
498
|
+
}
|
499
|
+
else if ('addLabel' in mod) {
|
500
|
+
patch = {
|
501
|
+
syncAction: {
|
502
|
+
labelEditAction: {
|
503
|
+
name: mod.addLabel.name,
|
504
|
+
color: mod.addLabel.color,
|
505
|
+
predefinedId: mod.addLabel.predefinedId,
|
506
|
+
deleted: mod.addLabel.deleted
|
507
|
+
}
|
508
|
+
},
|
509
|
+
index: ['label_edit', mod.addLabel.id],
|
510
|
+
type: 'regular',
|
511
|
+
apiVersion: 3,
|
512
|
+
operation: OP.SET,
|
513
|
+
};
|
514
|
+
}
|
515
|
+
else if ('addChatLabel' in mod) {
|
516
|
+
patch = {
|
517
|
+
syncAction: {
|
518
|
+
labelAssociationAction: {
|
519
|
+
labeled: true,
|
520
|
+
}
|
521
|
+
},
|
522
|
+
index: [LabelAssociation_1.LabelAssociationType.Chat, mod.addChatLabel.labelId, jid],
|
523
|
+
type: 'regular',
|
524
|
+
apiVersion: 3,
|
525
|
+
operation: OP.SET,
|
526
|
+
};
|
527
|
+
}
|
528
|
+
else if ('removeChatLabel' in mod) {
|
529
|
+
patch = {
|
530
|
+
syncAction: {
|
531
|
+
labelAssociationAction: {
|
532
|
+
labeled: false,
|
533
|
+
}
|
534
|
+
},
|
535
|
+
index: [LabelAssociation_1.LabelAssociationType.Chat, mod.removeChatLabel.labelId, jid],
|
536
|
+
type: 'regular',
|
537
|
+
apiVersion: 3,
|
538
|
+
operation: OP.SET,
|
539
|
+
};
|
540
|
+
}
|
541
|
+
else if ('addMessageLabel' in mod) {
|
542
|
+
patch = {
|
543
|
+
syncAction: {
|
544
|
+
labelAssociationAction: {
|
545
|
+
labeled: true,
|
546
|
+
}
|
547
|
+
},
|
548
|
+
index: [
|
549
|
+
LabelAssociation_1.LabelAssociationType.Message,
|
550
|
+
mod.addMessageLabel.labelId,
|
551
|
+
jid,
|
552
|
+
mod.addMessageLabel.messageId,
|
553
|
+
'0',
|
554
|
+
'0'
|
555
|
+
],
|
556
|
+
type: 'regular',
|
557
|
+
apiVersion: 3,
|
558
|
+
operation: OP.SET,
|
559
|
+
};
|
560
|
+
}
|
561
|
+
else if ('removeMessageLabel' in mod) {
|
562
|
+
patch = {
|
563
|
+
syncAction: {
|
564
|
+
labelAssociationAction: {
|
565
|
+
labeled: false,
|
566
|
+
}
|
567
|
+
},
|
568
|
+
index: [
|
569
|
+
LabelAssociation_1.LabelAssociationType.Message,
|
570
|
+
mod.removeMessageLabel.labelId,
|
571
|
+
jid,
|
572
|
+
mod.removeMessageLabel.messageId,
|
573
|
+
'0',
|
574
|
+
'0'
|
575
|
+
],
|
576
|
+
type: 'regular',
|
577
|
+
apiVersion: 3,
|
578
|
+
operation: OP.SET,
|
579
|
+
};
|
580
|
+
}
|
581
|
+
else {
|
582
|
+
throw new boom_1.Boom('not supported');
|
583
|
+
}
|
584
|
+
patch.syncAction.timestamp = Date.now();
|
585
|
+
return patch;
|
586
|
+
};
|
587
|
+
exports.chatModificationToAppPatch = chatModificationToAppPatch;
|
588
|
+
const processSyncAction = (syncAction, ev, me, initialSyncOpts, logger) => {
|
589
|
+
var _a, _b, _c, _d;
|
590
|
+
const isInitialSync = !!initialSyncOpts;
|
591
|
+
const accountSettings = initialSyncOpts === null || initialSyncOpts === void 0 ? void 0 : initialSyncOpts.accountSettings;
|
592
|
+
logger === null || logger === void 0 ? void 0 : logger.trace({ syncAction, initialSync: !!initialSyncOpts }, 'processing sync action');
|
593
|
+
const { syncAction: { value: action }, index: [type, id, msgId, fromMe] } = syncAction;
|
594
|
+
if (action === null || action === void 0 ? void 0 : action.muteAction) {
|
595
|
+
ev.emit('chats.update', [
|
596
|
+
{
|
597
|
+
id,
|
598
|
+
muteEndTime: ((_a = action.muteAction) === null || _a === void 0 ? void 0 : _a.muted)
|
599
|
+
? (0, generics_1.toNumber)(action.muteAction.muteEndTimestamp)
|
600
|
+
: null,
|
601
|
+
conditional: getChatUpdateConditional(id, undefined)
|
602
|
+
}
|
603
|
+
]);
|
604
|
+
}
|
605
|
+
else if ((action === null || action === void 0 ? void 0 : action.archiveChatAction) || type === 'archive' || type === 'unarchive') {
|
606
|
+
// okay so we've to do some annoying computation here
|
607
|
+
// when we're initially syncing the app state
|
608
|
+
// there are a few cases we need to handle
|
609
|
+
// 1. if the account unarchiveChats setting is true
|
610
|
+
// a. if the chat is archived, and no further messages have been received -- simple, keep archived
|
611
|
+
// b. if the chat was archived, and the user received messages from the other person afterwards
|
612
|
+
// then the chat should be marked unarchved --
|
613
|
+
// we compare the timestamp of latest message from the other person to determine this
|
614
|
+
// 2. if the account unarchiveChats setting is false -- then it doesn't matter,
|
615
|
+
// it'll always take an app state action to mark in unarchived -- which we'll get anyway
|
616
|
+
const archiveAction = action === null || action === void 0 ? void 0 : action.archiveChatAction;
|
617
|
+
const isArchived = archiveAction
|
618
|
+
? archiveAction.archived
|
619
|
+
: type === 'archive';
|
620
|
+
// // basically we don't need to fire an "archive" update if the chat is being marked unarchvied
|
621
|
+
// // this only applies for the initial sync
|
622
|
+
// if(isInitialSync && !isArchived) {
|
623
|
+
// isArchived = false
|
624
|
+
// }
|
625
|
+
const msgRange = !(accountSettings === null || accountSettings === void 0 ? void 0 : accountSettings.unarchiveChats) ? undefined : archiveAction === null || archiveAction === void 0 ? void 0 : archiveAction.messageRange;
|
626
|
+
// logger?.debug({ chat: id, syncAction }, 'message range archive')
|
627
|
+
ev.emit('chats.update', [{
|
628
|
+
id,
|
629
|
+
archived: isArchived,
|
630
|
+
conditional: getChatUpdateConditional(id, msgRange)
|
631
|
+
}]);
|
632
|
+
}
|
633
|
+
else if (action === null || action === void 0 ? void 0 : action.markChatAsReadAction) {
|
634
|
+
const markReadAction = action.markChatAsReadAction;
|
635
|
+
// basically we don't need to fire an "read" update if the chat is being marked as read
|
636
|
+
// because the chat is read by default
|
637
|
+
// this only applies for the initial sync
|
638
|
+
const isNullUpdate = isInitialSync && markReadAction.read;
|
639
|
+
ev.emit('chats.update', [{
|
640
|
+
id,
|
641
|
+
unreadCount: isNullUpdate ? null : !!(markReadAction === null || markReadAction === void 0 ? void 0 : markReadAction.read) ? 0 : -1,
|
642
|
+
conditional: getChatUpdateConditional(id, markReadAction === null || markReadAction === void 0 ? void 0 : markReadAction.messageRange)
|
643
|
+
}]);
|
644
|
+
}
|
645
|
+
else if ((action === null || action === void 0 ? void 0 : action.deleteMessageForMeAction) || type === 'deleteMessageForMe') {
|
646
|
+
ev.emit('messages.delete', {
|
647
|
+
keys: [
|
648
|
+
{
|
649
|
+
remoteJid: id,
|
650
|
+
id: msgId,
|
651
|
+
fromMe: fromMe === '1'
|
652
|
+
}
|
653
|
+
]
|
654
|
+
});
|
655
|
+
}
|
656
|
+
else if (action === null || action === void 0 ? void 0 : action.contactAction) {
|
657
|
+
ev.emit('contacts.upsert', [{ id, name: action.contactAction.fullName }]);
|
658
|
+
}
|
659
|
+
else if (action === null || action === void 0 ? void 0 : action.pushNameSetting) {
|
660
|
+
const name = (_b = action === null || action === void 0 ? void 0 : action.pushNameSetting) === null || _b === void 0 ? void 0 : _b.name;
|
661
|
+
if (name && (me === null || me === void 0 ? void 0 : me.name) !== name) {
|
662
|
+
ev.emit('creds.update', { me: { ...me, name } });
|
663
|
+
}
|
664
|
+
}
|
665
|
+
else if (action === null || action === void 0 ? void 0 : action.pinAction) {
|
666
|
+
ev.emit('chats.update', [{
|
667
|
+
id,
|
668
|
+
pinned: ((_c = action.pinAction) === null || _c === void 0 ? void 0 : _c.pinned) ? (0, generics_1.toNumber)(action.timestamp) : null,
|
669
|
+
conditional: getChatUpdateConditional(id, undefined)
|
670
|
+
}]);
|
671
|
+
}
|
672
|
+
else if (action === null || action === void 0 ? void 0 : action.unarchiveChatsSetting) {
|
673
|
+
const unarchiveChats = !!action.unarchiveChatsSetting.unarchiveChats;
|
674
|
+
ev.emit('creds.update', { accountSettings: { unarchiveChats } });
|
675
|
+
logger === null || logger === void 0 ? void 0 : logger.info(`archive setting updated => '${action.unarchiveChatsSetting.unarchiveChats}'`);
|
676
|
+
if (accountSettings) {
|
677
|
+
accountSettings.unarchiveChats = unarchiveChats;
|
678
|
+
}
|
679
|
+
}
|
680
|
+
else if ((action === null || action === void 0 ? void 0 : action.starAction) || type === 'star') {
|
681
|
+
let starred = (_d = action === null || action === void 0 ? void 0 : action.starAction) === null || _d === void 0 ? void 0 : _d.starred;
|
682
|
+
if (typeof starred !== 'boolean') {
|
683
|
+
starred = syncAction.index[syncAction.index.length - 1] === '1';
|
684
|
+
}
|
685
|
+
ev.emit('messages.update', [
|
686
|
+
{
|
687
|
+
key: { remoteJid: id, id: msgId, fromMe: fromMe === '1' },
|
688
|
+
update: { starred }
|
689
|
+
}
|
690
|
+
]);
|
691
|
+
}
|
692
|
+
else if ((action === null || action === void 0 ? void 0 : action.deleteChatAction) || type === 'deleteChat') {
|
693
|
+
if (!isInitialSync) {
|
694
|
+
ev.emit('chats.delete', [id]);
|
695
|
+
}
|
696
|
+
}
|
697
|
+
else if (action === null || action === void 0 ? void 0 : action.labelEditAction) {
|
698
|
+
const { name, color, deleted, predefinedId } = action.labelEditAction;
|
699
|
+
ev.emit('labels.edit', {
|
700
|
+
id,
|
701
|
+
name: name,
|
702
|
+
color: color,
|
703
|
+
deleted: deleted,
|
704
|
+
predefinedId: predefinedId ? String(predefinedId) : undefined
|
705
|
+
});
|
706
|
+
}
|
707
|
+
else if (action === null || action === void 0 ? void 0 : action.labelAssociationAction) {
|
708
|
+
ev.emit('labels.association', {
|
709
|
+
type: action.labelAssociationAction.labeled
|
710
|
+
? 'add'
|
711
|
+
: 'remove',
|
712
|
+
association: type === LabelAssociation_1.LabelAssociationType.Chat
|
713
|
+
? {
|
714
|
+
type: LabelAssociation_1.LabelAssociationType.Chat,
|
715
|
+
chatId: syncAction.index[2],
|
716
|
+
labelId: syncAction.index[1]
|
717
|
+
}
|
718
|
+
: {
|
719
|
+
type: LabelAssociation_1.LabelAssociationType.Message,
|
720
|
+
chatId: syncAction.index[2],
|
721
|
+
messageId: syncAction.index[3],
|
722
|
+
labelId: syncAction.index[1]
|
723
|
+
}
|
724
|
+
});
|
725
|
+
}
|
726
|
+
else {
|
727
|
+
logger === null || logger === void 0 ? void 0 : logger.debug({ syncAction, id }, 'unprocessable update');
|
728
|
+
}
|
729
|
+
function getChatUpdateConditional(id, msgRange) {
|
730
|
+
return isInitialSync
|
731
|
+
? (data) => {
|
732
|
+
const chat = data.historySets.chats[id] || data.chatUpserts[id];
|
733
|
+
if (chat) {
|
734
|
+
return msgRange ? isValidPatchBasedOnMessageRange(chat, msgRange) : true;
|
735
|
+
}
|
736
|
+
}
|
737
|
+
: undefined;
|
738
|
+
}
|
739
|
+
function isValidPatchBasedOnMessageRange(chat, msgRange) {
|
740
|
+
const lastMsgTimestamp = Number((msgRange === null || msgRange === void 0 ? void 0 : msgRange.lastMessageTimestamp) || (msgRange === null || msgRange === void 0 ? void 0 : msgRange.lastSystemMessageTimestamp) || 0);
|
741
|
+
const chatLastMsgTimestamp = Number((chat === null || chat === void 0 ? void 0 : chat.lastMessageRecvTimestamp) || 0);
|
742
|
+
return lastMsgTimestamp >= chatLastMsgTimestamp;
|
743
|
+
}
|
744
|
+
};
|
745
|
+
exports.processSyncAction = processSyncAction;
|