@itsliaaa/baileys 0.1.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 +22 -0
- package/README.md +1078 -0
- package/WAProto/index.js +100441 -0
- package/engine-requirements.js +10 -0
- package/lib/Defaults/index.js +144 -0
- package/lib/Signal/Group/ciphertext-message.js +11 -0
- package/lib/Signal/Group/group-session-builder.js +29 -0
- package/lib/Signal/Group/group_cipher.js +81 -0
- package/lib/Signal/Group/index.js +11 -0
- package/lib/Signal/Group/keyhelper.js +17 -0
- package/lib/Signal/Group/sender-chain-key.js +25 -0
- package/lib/Signal/Group/sender-key-distribution-message.js +62 -0
- package/lib/Signal/Group/sender-key-message.js +65 -0
- package/lib/Signal/Group/sender-key-name.js +47 -0
- package/lib/Signal/Group/sender-key-record.js +40 -0
- package/lib/Signal/Group/sender-key-state.js +83 -0
- package/lib/Signal/Group/sender-message-key.js +25 -0
- package/lib/Signal/libsignal.js +402 -0
- package/lib/Signal/lid-mapping.js +270 -0
- package/lib/Socket/Client/index.js +2 -0
- package/lib/Socket/Client/types.js +10 -0
- package/lib/Socket/Client/websocket.js +53 -0
- package/lib/Socket/business.js +378 -0
- package/lib/Socket/chats.js +1048 -0
- package/lib/Socket/communities.js +430 -0
- package/lib/Socket/groups.js +328 -0
- package/lib/Socket/index.js +11 -0
- package/lib/Socket/messages-recv.js +1442 -0
- package/lib/Socket/messages-send.js +1153 -0
- package/lib/Socket/mex.js +41 -0
- package/lib/Socket/newsletter.js +227 -0
- package/lib/Socket/socket.js +936 -0
- package/lib/Store/index.js +3 -0
- package/lib/Store/make-in-memory-store.js +421 -0
- package/lib/Store/make-ordered-dictionary.js +78 -0
- package/lib/Store/object-repository.js +23 -0
- package/lib/Types/Auth.js +1 -0
- package/lib/Types/Bussines.js +1 -0
- package/lib/Types/Call.js +1 -0
- package/lib/Types/Chat.js +7 -0
- package/lib/Types/Contact.js +1 -0
- package/lib/Types/Events.js +1 -0
- package/lib/Types/GroupMetadata.js +1 -0
- package/lib/Types/Label.js +24 -0
- package/lib/Types/LabelAssociation.js +6 -0
- package/lib/Types/Message.js +17 -0
- package/lib/Types/Newsletter.js +33 -0
- package/lib/Types/Product.js +1 -0
- package/lib/Types/Signal.js +1 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.js +12 -0
- package/lib/Types/USync.js +1 -0
- package/lib/Types/index.js +25 -0
- package/lib/Utils/auth-utils.js +289 -0
- package/lib/Utils/browser-utils.js +28 -0
- package/lib/Utils/business.js +230 -0
- package/lib/Utils/chat-utils.js +811 -0
- package/lib/Utils/crypto.js +117 -0
- package/lib/Utils/decode-wa-message.js +282 -0
- package/lib/Utils/event-buffer.js +573 -0
- package/lib/Utils/generics.js +385 -0
- package/lib/Utils/history.js +130 -0
- package/lib/Utils/identity-change-handler.js +48 -0
- package/lib/Utils/index.js +19 -0
- package/lib/Utils/link-preview.js +84 -0
- package/lib/Utils/logger.js +2 -0
- package/lib/Utils/lt-hash.js +7 -0
- package/lib/Utils/make-mutex.js +32 -0
- package/lib/Utils/message-retry-manager.js +224 -0
- package/lib/Utils/messages-media.js +789 -0
- package/lib/Utils/messages.js +1832 -0
- package/lib/Utils/noise-handler.js +200 -0
- package/lib/Utils/pre-key-manager.js +105 -0
- package/lib/Utils/process-message.js +527 -0
- package/lib/Utils/reporting-utils.js +257 -0
- package/lib/Utils/signal.js +158 -0
- package/lib/Utils/sync-action-utils.js +47 -0
- package/lib/Utils/tc-token-utils.js +17 -0
- package/lib/Utils/use-multi-file-auth-state.js +120 -0
- package/lib/Utils/validate-connection.js +206 -0
- package/lib/WABinary/constants.js +1300 -0
- package/lib/WABinary/decode.js +261 -0
- package/lib/WABinary/encode.js +219 -0
- package/lib/WABinary/generic-utils.js +197 -0
- package/lib/WABinary/index.js +5 -0
- package/lib/WABinary/jid-utils.js +95 -0
- package/lib/WABinary/types.js +1 -0
- package/lib/WAM/BinaryInfo.js +9 -0
- package/lib/WAM/constants.js +22852 -0
- package/lib/WAM/encode.js +149 -0
- package/lib/WAM/index.js +3 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +28 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +53 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +26 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +37 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +28 -0
- package/lib/WAUSync/Protocols/index.js +4 -0
- package/lib/WAUSync/USyncQuery.js +93 -0
- package/lib/WAUSync/USyncUser.js +22 -0
- package/lib/WAUSync/index.js +3 -0
- package/lib/index.js +11 -0
- package/package.json +72 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from './Auth.js';
|
|
2
|
+
export * from './GroupMetadata.js';
|
|
3
|
+
export * from './Chat.js';
|
|
4
|
+
export * from './Contact.js';
|
|
5
|
+
export * from './State.js';
|
|
6
|
+
export * from './Message.js';
|
|
7
|
+
export * from './Socket.js';
|
|
8
|
+
export * from './Events.js';
|
|
9
|
+
export * from './Product.js';
|
|
10
|
+
export * from './Call.js';
|
|
11
|
+
export * from './Signal.js';
|
|
12
|
+
export * from './Newsletter.js';
|
|
13
|
+
export var DisconnectReason;
|
|
14
|
+
(function (DisconnectReason) {
|
|
15
|
+
DisconnectReason[DisconnectReason["connectionClosed"] = 428] = "connectionClosed";
|
|
16
|
+
DisconnectReason[DisconnectReason["connectionLost"] = 408] = "connectionLost";
|
|
17
|
+
DisconnectReason[DisconnectReason["connectionReplaced"] = 440] = "connectionReplaced";
|
|
18
|
+
DisconnectReason[DisconnectReason["timedOut"] = 408] = "timedOut";
|
|
19
|
+
DisconnectReason[DisconnectReason["loggedOut"] = 401] = "loggedOut";
|
|
20
|
+
DisconnectReason[DisconnectReason["badSession"] = 500] = "badSession";
|
|
21
|
+
DisconnectReason[DisconnectReason["restartRequired"] = 515] = "restartRequired";
|
|
22
|
+
DisconnectReason[DisconnectReason["multideviceMismatch"] = 411] = "multideviceMismatch";
|
|
23
|
+
DisconnectReason[DisconnectReason["forbidden"] = 403] = "forbidden";
|
|
24
|
+
DisconnectReason[DisconnectReason["unavailableService"] = 503] = "unavailableService";
|
|
25
|
+
})(DisconnectReason || (DisconnectReason = {}));
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import NodeCache from '@cacheable/node-cache';
|
|
2
|
+
import { AsyncLocalStorage } from 'async_hooks';
|
|
3
|
+
import { Mutex } from 'async-mutex';
|
|
4
|
+
import { randomBytes } from 'crypto';
|
|
5
|
+
import PQueue from 'p-queue';
|
|
6
|
+
import { DEFAULT_CACHE_TTLS } from '../Defaults/index.js';
|
|
7
|
+
import { Curve, signedKeyPair } from './crypto.js';
|
|
8
|
+
import { delay, generateRegistrationId } from './generics.js';
|
|
9
|
+
import { PreKeyManager } from './pre-key-manager.js';
|
|
10
|
+
/**
|
|
11
|
+
* Adds caching capability to a SignalKeyStore
|
|
12
|
+
* @param store the store to add caching to
|
|
13
|
+
* @param logger to log trace events
|
|
14
|
+
* @param _cache cache store to use
|
|
15
|
+
*/
|
|
16
|
+
export function makeCacheableSignalKeyStore(store, logger, _cache) {
|
|
17
|
+
const cache = _cache ||
|
|
18
|
+
new NodeCache({
|
|
19
|
+
stdTTL: DEFAULT_CACHE_TTLS.SIGNAL_STORE, // 5 minutes
|
|
20
|
+
useClones: false,
|
|
21
|
+
deleteOnExpire: true
|
|
22
|
+
});
|
|
23
|
+
// Mutex for protecting cache operations
|
|
24
|
+
const cacheMutex = new Mutex();
|
|
25
|
+
function getUniqueId(type, id) {
|
|
26
|
+
return `${type}.${id}`;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
async get(type, ids) {
|
|
30
|
+
return cacheMutex.runExclusive(async () => {
|
|
31
|
+
const data = {};
|
|
32
|
+
const idsToFetch = [];
|
|
33
|
+
for (const id of ids) {
|
|
34
|
+
const item = (await cache.get(getUniqueId(type, id)));
|
|
35
|
+
if (typeof item !== 'undefined') {
|
|
36
|
+
data[id] = item;
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
idsToFetch.push(id);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
if (idsToFetch.length) {
|
|
43
|
+
logger?.trace({ items: idsToFetch.length }, 'loading from store');
|
|
44
|
+
const fetched = await store.get(type, idsToFetch);
|
|
45
|
+
for (const id of idsToFetch) {
|
|
46
|
+
const item = fetched[id];
|
|
47
|
+
if (item) {
|
|
48
|
+
data[id] = item;
|
|
49
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
|
|
50
|
+
await cache.set(getUniqueId(type, id), item);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
return data;
|
|
55
|
+
});
|
|
56
|
+
},
|
|
57
|
+
async set(data) {
|
|
58
|
+
return cacheMutex.runExclusive(async () => {
|
|
59
|
+
let keys = 0;
|
|
60
|
+
for (const type in data) {
|
|
61
|
+
for (const id in data[type]) {
|
|
62
|
+
await cache.set(getUniqueId(type, id), data[type][id]);
|
|
63
|
+
keys += 1;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
logger?.trace({ keys }, 'updated cache');
|
|
67
|
+
await store.set(data);
|
|
68
|
+
});
|
|
69
|
+
},
|
|
70
|
+
async clear() {
|
|
71
|
+
await cache.flushAll();
|
|
72
|
+
await store.clear?.();
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Adds DB-like transaction capability to the SignalKeyStore
|
|
78
|
+
* Uses AsyncLocalStorage for automatic context management
|
|
79
|
+
* @param state the key store to apply this capability to
|
|
80
|
+
* @param logger logger to log events
|
|
81
|
+
* @returns SignalKeyStore with transaction capability
|
|
82
|
+
*/
|
|
83
|
+
export const addTransactionCapability = (state, logger, { maxCommitRetries, delayBetweenTriesMs }) => {
|
|
84
|
+
const txStorage = new AsyncLocalStorage();
|
|
85
|
+
// Queues for concurrency control (keyed by signal data type - bounded set)
|
|
86
|
+
const keyQueues = new Map();
|
|
87
|
+
// Transaction mutexes with reference counting for cleanup
|
|
88
|
+
const txMutexes = new Map();
|
|
89
|
+
const txMutexRefCounts = new Map();
|
|
90
|
+
// Pre-key manager for specialized operations
|
|
91
|
+
const preKeyManager = new PreKeyManager(state, logger);
|
|
92
|
+
/**
|
|
93
|
+
* Get or create a queue for a specific key type
|
|
94
|
+
*/
|
|
95
|
+
function getQueue(key) {
|
|
96
|
+
if (!keyQueues.has(key)) {
|
|
97
|
+
keyQueues.set(key, new PQueue({ concurrency: 1 }));
|
|
98
|
+
}
|
|
99
|
+
return keyQueues.get(key);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Get or create a transaction mutex
|
|
103
|
+
*/
|
|
104
|
+
function getTxMutex(key) {
|
|
105
|
+
if (!txMutexes.has(key)) {
|
|
106
|
+
txMutexes.set(key, new Mutex());
|
|
107
|
+
txMutexRefCounts.set(key, 0);
|
|
108
|
+
}
|
|
109
|
+
return txMutexes.get(key);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Acquire a reference to a transaction mutex
|
|
113
|
+
*/
|
|
114
|
+
function acquireTxMutexRef(key) {
|
|
115
|
+
const count = txMutexRefCounts.get(key) ?? 0;
|
|
116
|
+
txMutexRefCounts.set(key, count + 1);
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Release a reference to a transaction mutex and cleanup if no longer needed
|
|
120
|
+
*/
|
|
121
|
+
function releaseTxMutexRef(key) {
|
|
122
|
+
const count = (txMutexRefCounts.get(key) ?? 1) - 1;
|
|
123
|
+
txMutexRefCounts.set(key, count);
|
|
124
|
+
// Cleanup if no more references and mutex is not locked
|
|
125
|
+
if (count <= 0) {
|
|
126
|
+
const mutex = txMutexes.get(key);
|
|
127
|
+
if (mutex && !mutex.isLocked()) {
|
|
128
|
+
txMutexes.delete(key);
|
|
129
|
+
txMutexRefCounts.delete(key);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Check if currently in a transaction
|
|
135
|
+
*/
|
|
136
|
+
function isInTransaction() {
|
|
137
|
+
return !!txStorage.getStore();
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Commit transaction with retries
|
|
141
|
+
*/
|
|
142
|
+
async function commitWithRetry(mutations) {
|
|
143
|
+
if (Object.keys(mutations).length === 0) {
|
|
144
|
+
logger.trace('no mutations in transaction');
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
logger.trace('committing transaction');
|
|
148
|
+
for (let attempt = 0; attempt < maxCommitRetries; attempt++) {
|
|
149
|
+
try {
|
|
150
|
+
await state.set(mutations);
|
|
151
|
+
logger.trace({ mutationCount: Object.keys(mutations).length }, 'committed transaction');
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
catch (error) {
|
|
155
|
+
const retriesLeft = maxCommitRetries - attempt - 1;
|
|
156
|
+
logger.warn(`failed to commit mutations, retries left=${retriesLeft}`);
|
|
157
|
+
if (retriesLeft === 0) {
|
|
158
|
+
throw error;
|
|
159
|
+
}
|
|
160
|
+
await delay(delayBetweenTriesMs);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return {
|
|
165
|
+
get: async (type, ids) => {
|
|
166
|
+
const ctx = txStorage.getStore();
|
|
167
|
+
if (!ctx) {
|
|
168
|
+
// No transaction - direct read without exclusive lock for concurrency
|
|
169
|
+
return state.get(type, ids);
|
|
170
|
+
}
|
|
171
|
+
// In transaction - check cache first
|
|
172
|
+
const cached = ctx.cache[type] || {};
|
|
173
|
+
const missing = ids.filter(id => !(id in cached));
|
|
174
|
+
if (missing.length > 0) {
|
|
175
|
+
ctx.dbQueries++;
|
|
176
|
+
logger.trace({ type, count: missing.length }, 'fetching missing keys in transaction');
|
|
177
|
+
const fetched = await getTxMutex(type).runExclusive(() => state.get(type, missing));
|
|
178
|
+
// Update cache
|
|
179
|
+
ctx.cache[type] = ctx.cache[type] || {};
|
|
180
|
+
Object.assign(ctx.cache[type], fetched);
|
|
181
|
+
}
|
|
182
|
+
// Return requested ids from cache
|
|
183
|
+
const result = {};
|
|
184
|
+
for (const id of ids) {
|
|
185
|
+
const value = ctx.cache[type]?.[id];
|
|
186
|
+
if (value !== undefined && value !== null) {
|
|
187
|
+
result[id] = value;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
return result;
|
|
191
|
+
},
|
|
192
|
+
set: async (data) => {
|
|
193
|
+
const ctx = txStorage.getStore();
|
|
194
|
+
if (!ctx) {
|
|
195
|
+
// No transaction - direct write with queue protection
|
|
196
|
+
const types = Object.keys(data);
|
|
197
|
+
// Process pre-keys with validation
|
|
198
|
+
for (const type_ of types) {
|
|
199
|
+
const type = type_;
|
|
200
|
+
if (type === 'pre-key') {
|
|
201
|
+
await preKeyManager.validateDeletions(data, type);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
// Write all data in parallel
|
|
205
|
+
await Promise.all(types.map(type => getQueue(type).add(async () => {
|
|
206
|
+
const typeData = { [type]: data[type] };
|
|
207
|
+
await state.set(typeData);
|
|
208
|
+
})));
|
|
209
|
+
return;
|
|
210
|
+
}
|
|
211
|
+
// In transaction - update cache and mutations
|
|
212
|
+
logger.trace({ types: Object.keys(data) }, 'caching in transaction');
|
|
213
|
+
for (const key_ in data) {
|
|
214
|
+
const key = key_;
|
|
215
|
+
// Ensure structures exist
|
|
216
|
+
ctx.cache[key] = ctx.cache[key] || {};
|
|
217
|
+
ctx.mutations[key] = ctx.mutations[key] || {};
|
|
218
|
+
// Special handling for pre-keys
|
|
219
|
+
if (key === 'pre-key') {
|
|
220
|
+
await preKeyManager.processOperations(data, key, ctx.cache, ctx.mutations, true);
|
|
221
|
+
}
|
|
222
|
+
else {
|
|
223
|
+
// Normal key types
|
|
224
|
+
Object.assign(ctx.cache[key], data[key]);
|
|
225
|
+
Object.assign(ctx.mutations[key], data[key]);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
isInTransaction,
|
|
230
|
+
transaction: async (work, key) => {
|
|
231
|
+
const existing = txStorage.getStore();
|
|
232
|
+
// Nested transaction - reuse existing context
|
|
233
|
+
if (existing) {
|
|
234
|
+
logger.trace('reusing existing transaction context');
|
|
235
|
+
return work();
|
|
236
|
+
}
|
|
237
|
+
// New transaction - acquire mutex and create context
|
|
238
|
+
const mutex = getTxMutex(key);
|
|
239
|
+
acquireTxMutexRef(key);
|
|
240
|
+
try {
|
|
241
|
+
return await mutex.runExclusive(async () => {
|
|
242
|
+
const ctx = {
|
|
243
|
+
cache: {},
|
|
244
|
+
mutations: {},
|
|
245
|
+
dbQueries: 0
|
|
246
|
+
};
|
|
247
|
+
logger.trace('entering transaction');
|
|
248
|
+
try {
|
|
249
|
+
const result = await txStorage.run(ctx, work);
|
|
250
|
+
// Commit mutations
|
|
251
|
+
await commitWithRetry(ctx.mutations);
|
|
252
|
+
logger.trace({ dbQueries: ctx.dbQueries }, 'transaction completed');
|
|
253
|
+
return result;
|
|
254
|
+
}
|
|
255
|
+
catch (error) {
|
|
256
|
+
logger.error({ error }, 'transaction failed, rolling back');
|
|
257
|
+
throw error;
|
|
258
|
+
}
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
finally {
|
|
262
|
+
releaseTxMutexRef(key);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
export const initAuthCreds = () => {
|
|
268
|
+
const identityKey = Curve.generateKeyPair();
|
|
269
|
+
return {
|
|
270
|
+
noiseKey: Curve.generateKeyPair(),
|
|
271
|
+
pairingEphemeralKeyPair: Curve.generateKeyPair(),
|
|
272
|
+
signedIdentityKey: identityKey,
|
|
273
|
+
signedPreKey: signedKeyPair(identityKey, 1),
|
|
274
|
+
registrationId: generateRegistrationId(),
|
|
275
|
+
advSecretKey: randomBytes(32).toString('base64'),
|
|
276
|
+
processedHistoryMessages: [],
|
|
277
|
+
nextPreKeyId: 1,
|
|
278
|
+
firstUnuploadedPreKeyId: 1,
|
|
279
|
+
accountSyncCounter: 0,
|
|
280
|
+
accountSettings: {
|
|
281
|
+
unarchiveChats: false
|
|
282
|
+
},
|
|
283
|
+
registered: false,
|
|
284
|
+
pairingCode: undefined,
|
|
285
|
+
lastPropHash: undefined,
|
|
286
|
+
routingInfo: undefined,
|
|
287
|
+
additionalData: undefined
|
|
288
|
+
};
|
|
289
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { platform, release } from 'node:os';
|
|
2
|
+
import { proto } from '../../WAProto/index.js';
|
|
3
|
+
const PLATFORM_MAP = {
|
|
4
|
+
aix: 'AIX',
|
|
5
|
+
darwin: 'Mac OS',
|
|
6
|
+
win32: 'Windows',
|
|
7
|
+
android: 'Android',
|
|
8
|
+
freebsd: 'FreeBSD',
|
|
9
|
+
openbsd: 'OpenBSD',
|
|
10
|
+
sunos: 'Solaris',
|
|
11
|
+
linux: undefined,
|
|
12
|
+
haiku: undefined,
|
|
13
|
+
cygwin: undefined,
|
|
14
|
+
netbsd: undefined
|
|
15
|
+
};
|
|
16
|
+
export const Browsers = {
|
|
17
|
+
ubuntu: browser => ['Ubuntu', browser, '22.04.4'],
|
|
18
|
+
macOS: browser => ['Mac OS', browser, '14.4.1'],
|
|
19
|
+
baileys: browser => ['Baileys', browser, '6.5.0'],
|
|
20
|
+
windows: browser => ['Windows', browser, '10.0.22631'],
|
|
21
|
+
android: browser => [browser, 'Android', ''],
|
|
22
|
+
/** The appropriate browser based on your OS & release */
|
|
23
|
+
appropriate: browser => [PLATFORM_MAP[platform()] || 'Ubuntu', browser, release()]
|
|
24
|
+
};
|
|
25
|
+
export const getPlatformId = (browser) => {
|
|
26
|
+
const platformType = proto.DeviceProps.PlatformType[browser.toUpperCase()];
|
|
27
|
+
return platformType ? platformType.toString() : '1'; //chrome
|
|
28
|
+
};
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import { Boom } from '@hapi/boom';
|
|
2
|
+
import { createHash } from 'crypto';
|
|
3
|
+
import { createWriteStream, promises as fs } from 'fs';
|
|
4
|
+
import { tmpdir } from 'os';
|
|
5
|
+
import { join } from 'path';
|
|
6
|
+
import { getBinaryNodeChild, getBinaryNodeChildren, getBinaryNodeChildString } from '../WABinary/index.js';
|
|
7
|
+
import { generateMessageIDV2 } from './generics.js';
|
|
8
|
+
import { getStream, getUrlFromDirectPath } from './messages-media.js';
|
|
9
|
+
export const parseCatalogNode = (node) => {
|
|
10
|
+
const catalogNode = getBinaryNodeChild(node, 'product_catalog');
|
|
11
|
+
const products = getBinaryNodeChildren(catalogNode, 'product').map(parseProductNode);
|
|
12
|
+
const paging = getBinaryNodeChild(catalogNode, 'paging');
|
|
13
|
+
return {
|
|
14
|
+
products,
|
|
15
|
+
nextPageCursor: paging ? getBinaryNodeChildString(paging, 'after') : undefined
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export const parseCollectionsNode = (node) => {
|
|
19
|
+
const collectionsNode = getBinaryNodeChild(node, 'collections');
|
|
20
|
+
const collections = getBinaryNodeChildren(collectionsNode, 'collection').map(collectionNode => {
|
|
21
|
+
const id = getBinaryNodeChildString(collectionNode, 'id');
|
|
22
|
+
const name = getBinaryNodeChildString(collectionNode, 'name');
|
|
23
|
+
const products = getBinaryNodeChildren(collectionNode, 'product').map(parseProductNode);
|
|
24
|
+
return {
|
|
25
|
+
id,
|
|
26
|
+
name,
|
|
27
|
+
products,
|
|
28
|
+
status: parseStatusInfo(collectionNode)
|
|
29
|
+
};
|
|
30
|
+
});
|
|
31
|
+
return {
|
|
32
|
+
collections
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export const parseOrderDetailsNode = (node) => {
|
|
36
|
+
const orderNode = getBinaryNodeChild(node, 'order');
|
|
37
|
+
const products = getBinaryNodeChildren(orderNode, 'product').map(productNode => {
|
|
38
|
+
const imageNode = getBinaryNodeChild(productNode, 'image');
|
|
39
|
+
return {
|
|
40
|
+
id: getBinaryNodeChildString(productNode, 'id'),
|
|
41
|
+
name: getBinaryNodeChildString(productNode, 'name'),
|
|
42
|
+
imageUrl: getBinaryNodeChildString(imageNode, 'url'),
|
|
43
|
+
price: +getBinaryNodeChildString(productNode, 'price'),
|
|
44
|
+
currency: getBinaryNodeChildString(productNode, 'currency'),
|
|
45
|
+
quantity: +getBinaryNodeChildString(productNode, 'quantity')
|
|
46
|
+
};
|
|
47
|
+
});
|
|
48
|
+
const priceNode = getBinaryNodeChild(orderNode, 'price');
|
|
49
|
+
const orderDetails = {
|
|
50
|
+
price: {
|
|
51
|
+
total: +getBinaryNodeChildString(priceNode, 'total'),
|
|
52
|
+
currency: getBinaryNodeChildString(priceNode, 'currency')
|
|
53
|
+
},
|
|
54
|
+
products
|
|
55
|
+
};
|
|
56
|
+
return orderDetails;
|
|
57
|
+
};
|
|
58
|
+
export const toProductNode = (productId, product) => {
|
|
59
|
+
const attrs = {};
|
|
60
|
+
const content = [];
|
|
61
|
+
if (typeof productId !== 'undefined') {
|
|
62
|
+
content.push({
|
|
63
|
+
tag: 'id',
|
|
64
|
+
attrs: {},
|
|
65
|
+
content: Buffer.from(productId)
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
if (typeof product.name !== 'undefined') {
|
|
69
|
+
content.push({
|
|
70
|
+
tag: 'name',
|
|
71
|
+
attrs: {},
|
|
72
|
+
content: Buffer.from(product.name)
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
if (typeof product.description !== 'undefined') {
|
|
76
|
+
content.push({
|
|
77
|
+
tag: 'description',
|
|
78
|
+
attrs: {},
|
|
79
|
+
content: Buffer.from(product.description)
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
if (typeof product.retailerId !== 'undefined') {
|
|
83
|
+
content.push({
|
|
84
|
+
tag: 'retailer_id',
|
|
85
|
+
attrs: {},
|
|
86
|
+
content: Buffer.from(product.retailerId)
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
if (product.images.length) {
|
|
90
|
+
content.push({
|
|
91
|
+
tag: 'media',
|
|
92
|
+
attrs: {},
|
|
93
|
+
content: product.images.map(img => {
|
|
94
|
+
if (!('url' in img)) {
|
|
95
|
+
throw new Boom('Expected img for product to already be uploaded', { statusCode: 400 });
|
|
96
|
+
}
|
|
97
|
+
return {
|
|
98
|
+
tag: 'image',
|
|
99
|
+
attrs: {},
|
|
100
|
+
content: [
|
|
101
|
+
{
|
|
102
|
+
tag: 'url',
|
|
103
|
+
attrs: {},
|
|
104
|
+
content: Buffer.from(img.url.toString())
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
};
|
|
108
|
+
})
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
if (typeof product.price !== 'undefined') {
|
|
112
|
+
content.push({
|
|
113
|
+
tag: 'price',
|
|
114
|
+
attrs: {},
|
|
115
|
+
content: Buffer.from(product.price.toString())
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
if (typeof product.currency !== 'undefined') {
|
|
119
|
+
content.push({
|
|
120
|
+
tag: 'currency',
|
|
121
|
+
attrs: {},
|
|
122
|
+
content: Buffer.from(product.currency)
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
if ('originCountryCode' in product) {
|
|
126
|
+
if (typeof product.originCountryCode === 'undefined') {
|
|
127
|
+
attrs['compliance_category'] = 'COUNTRY_ORIGIN_EXEMPT';
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
content.push({
|
|
131
|
+
tag: 'compliance_info',
|
|
132
|
+
attrs: {},
|
|
133
|
+
content: [
|
|
134
|
+
{
|
|
135
|
+
tag: 'country_code_origin',
|
|
136
|
+
attrs: {},
|
|
137
|
+
content: Buffer.from(product.originCountryCode)
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
if (typeof product.isHidden !== 'undefined') {
|
|
144
|
+
attrs['is_hidden'] = product.isHidden.toString();
|
|
145
|
+
}
|
|
146
|
+
const node = {
|
|
147
|
+
tag: 'product',
|
|
148
|
+
attrs,
|
|
149
|
+
content
|
|
150
|
+
};
|
|
151
|
+
return node;
|
|
152
|
+
};
|
|
153
|
+
export const parseProductNode = (productNode) => {
|
|
154
|
+
const isHidden = productNode.attrs.is_hidden === 'true';
|
|
155
|
+
const id = getBinaryNodeChildString(productNode, 'id');
|
|
156
|
+
const mediaNode = getBinaryNodeChild(productNode, 'media');
|
|
157
|
+
const statusInfoNode = getBinaryNodeChild(productNode, 'status_info');
|
|
158
|
+
const product = {
|
|
159
|
+
id,
|
|
160
|
+
imageUrls: parseImageUrls(mediaNode),
|
|
161
|
+
reviewStatus: {
|
|
162
|
+
whatsapp: getBinaryNodeChildString(statusInfoNode, 'status')
|
|
163
|
+
},
|
|
164
|
+
availability: 'in stock',
|
|
165
|
+
name: getBinaryNodeChildString(productNode, 'name'),
|
|
166
|
+
retailerId: getBinaryNodeChildString(productNode, 'retailer_id'),
|
|
167
|
+
url: getBinaryNodeChildString(productNode, 'url'),
|
|
168
|
+
description: getBinaryNodeChildString(productNode, 'description'),
|
|
169
|
+
price: +getBinaryNodeChildString(productNode, 'price'),
|
|
170
|
+
currency: getBinaryNodeChildString(productNode, 'currency'),
|
|
171
|
+
isHidden
|
|
172
|
+
};
|
|
173
|
+
return product;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* Uploads images not already uploaded to WA's servers
|
|
177
|
+
*/
|
|
178
|
+
export async function uploadingNecessaryImagesOfProduct(product, waUploadToServer, timeoutMs = 30000) {
|
|
179
|
+
product = {
|
|
180
|
+
...product,
|
|
181
|
+
images: product.images
|
|
182
|
+
? await uploadingNecessaryImages(product.images, waUploadToServer, timeoutMs)
|
|
183
|
+
: product.images
|
|
184
|
+
};
|
|
185
|
+
return product;
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* Uploads images not already uploaded to WA's servers
|
|
189
|
+
*/
|
|
190
|
+
export const uploadingNecessaryImages = async (images, waUploadToServer, timeoutMs = 30000) => {
|
|
191
|
+
const results = await Promise.all(images.map(async (img) => {
|
|
192
|
+
if ('url' in img) {
|
|
193
|
+
const url = img.url.toString();
|
|
194
|
+
if (url.includes('.whatsapp.net')) {
|
|
195
|
+
return { url };
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
const { stream } = await getStream(img);
|
|
199
|
+
const hasher = createHash('sha256');
|
|
200
|
+
const filePath = join(tmpdir(), 'img' + generateMessageIDV2());
|
|
201
|
+
const encFileWriteStream = createWriteStream(filePath);
|
|
202
|
+
for await (const block of stream) {
|
|
203
|
+
hasher.update(block);
|
|
204
|
+
encFileWriteStream.write(block);
|
|
205
|
+
}
|
|
206
|
+
const sha = hasher.digest('base64');
|
|
207
|
+
const { directPath } = await waUploadToServer(filePath, {
|
|
208
|
+
mediaType: 'product-catalog-image',
|
|
209
|
+
fileEncSha256B64: sha,
|
|
210
|
+
timeoutMs
|
|
211
|
+
});
|
|
212
|
+
await fs.unlink(filePath).catch(err => console.log('Error deleting temp file ', err));
|
|
213
|
+
return { url: getUrlFromDirectPath(directPath) };
|
|
214
|
+
}));
|
|
215
|
+
return results;
|
|
216
|
+
};
|
|
217
|
+
const parseImageUrls = (mediaNode) => {
|
|
218
|
+
const imgNode = getBinaryNodeChild(mediaNode, 'image');
|
|
219
|
+
return {
|
|
220
|
+
requested: getBinaryNodeChildString(imgNode, 'request_image_url'),
|
|
221
|
+
original: getBinaryNodeChildString(imgNode, 'original_image_url')
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
const parseStatusInfo = (mediaNode) => {
|
|
225
|
+
const node = getBinaryNodeChild(mediaNode, 'status_info');
|
|
226
|
+
return {
|
|
227
|
+
status: getBinaryNodeChildString(node, 'status'),
|
|
228
|
+
canAppeal: getBinaryNodeChildString(node, 'can_appeal') === 'true'
|
|
229
|
+
};
|
|
230
|
+
};
|