@skyzopedia/baileys-mod 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/LICENSE +21 -0
  2. package/WAProto/WAProto.proto +5311 -0
  3. package/WAProto/index.js +94091 -0
  4. package/lib/Defaults/index.js +123 -0
  5. package/lib/KeyDB/BinarySearch.js +20 -0
  6. package/lib/KeyDB/KeyedDB.js +167 -0
  7. package/lib/KeyDB/index.js +4 -0
  8. package/lib/Signal/Group/ciphertext-message.js +13 -0
  9. package/lib/Signal/Group/group-session-builder.js +32 -0
  10. package/lib/Signal/Group/group_cipher.js +84 -0
  11. package/lib/Signal/Group/index.js +13 -0
  12. package/lib/Signal/Group/keyhelper.js +20 -0
  13. package/lib/Signal/Group/sender-chain-key.js +28 -0
  14. package/lib/Signal/Group/sender-key-distribution-message.js +65 -0
  15. package/lib/Signal/Group/sender-key-message.js +68 -0
  16. package/lib/Signal/Group/sender-key-name.js +52 -0
  17. package/lib/Signal/Group/sender-key-record.js +43 -0
  18. package/lib/Signal/Group/sender-key-state.js +86 -0
  19. package/lib/Signal/Group/sender-message-key.js +28 -0
  20. package/lib/Signal/libsignal.js +324 -0
  21. package/lib/Signal/lid-mapping.js +155 -0
  22. package/lib/Socket/Client/index.js +4 -0
  23. package/lib/Socket/Client/types.js +13 -0
  24. package/lib/Socket/Client/websocket.js +52 -0
  25. package/lib/Socket/business.js +377 -0
  26. package/lib/Socket/chats.js +881 -0
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +312 -0
  29. package/lib/Socket/index.js +16 -0
  30. package/lib/Socket/messages-recv.js +1163 -0
  31. package/lib/Socket/messages-send.js +1082 -0
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +259 -0
  34. package/lib/Socket/socket.js +781 -0
  35. package/lib/Store/index.js +6 -0
  36. package/lib/Store/make-cache-manager-store.js +75 -0
  37. package/lib/Store/make-in-memory-store.js +290 -0
  38. package/lib/Store/make-ordered-dictionary.js +79 -0
  39. package/lib/Store/object-repository.js +25 -0
  40. package/lib/Types/Auth.js +3 -0
  41. package/lib/Types/Bussines.js +3 -0
  42. package/lib/Types/Call.js +3 -0
  43. package/lib/Types/Chat.js +9 -0
  44. package/lib/Types/Contact.js +3 -0
  45. package/lib/Types/Events.js +3 -0
  46. package/lib/Types/GroupMetadata.js +3 -0
  47. package/lib/Types/Label.js +25 -0
  48. package/lib/Types/LabelAssociation.js +7 -0
  49. package/lib/Types/Message.js +12 -0
  50. package/lib/Types/Newsletter.js +33 -0
  51. package/lib/Types/Newsletter.js.bak +33 -0
  52. package/lib/Types/Product.js +3 -0
  53. package/lib/Types/Signal.js +3 -0
  54. package/lib/Types/Socket.js +4 -0
  55. package/lib/Types/State.js +11 -0
  56. package/lib/Types/USync.js +3 -0
  57. package/lib/Types/index.js +28 -0
  58. package/lib/Utils/auth-utils.js +219 -0
  59. package/lib/Utils/baileys-event-stream.js +44 -0
  60. package/lib/Utils/browser-utils.js +17 -0
  61. package/lib/Utils/business.js +233 -0
  62. package/lib/Utils/chat-utils.js +752 -0
  63. package/lib/Utils/crypto.js +130 -0
  64. package/lib/Utils/decode-wa-message.js +267 -0
  65. package/lib/Utils/event-buffer.js +528 -0
  66. package/lib/Utils/generics.js +355 -0
  67. package/lib/Utils/history.js +87 -0
  68. package/lib/Utils/index.js +21 -0
  69. package/lib/Utils/link-preview.js +81 -0
  70. package/lib/Utils/logger.js +5 -0
  71. package/lib/Utils/lt-hash.js +45 -0
  72. package/lib/Utils/make-mutex.js +36 -0
  73. package/lib/Utils/message-retry-manager.js +113 -0
  74. package/lib/Utils/messages-media.js +601 -0
  75. package/lib/Utils/messages.js +776 -0
  76. package/lib/Utils/noise-handler.js +144 -0
  77. package/lib/Utils/pre-key-manager.js +85 -0
  78. package/lib/Utils/process-message.js +341 -0
  79. package/lib/Utils/signal.js +161 -0
  80. package/lib/Utils/use-multi-file-auth-state.js +111 -0
  81. package/lib/Utils/validate-connection.js +200 -0
  82. package/lib/WABinary/constants.js +1303 -0
  83. package/lib/WABinary/decode.js +240 -0
  84. package/lib/WABinary/encode.js +218 -0
  85. package/lib/WABinary/generic-utils.js +113 -0
  86. package/lib/WABinary/index.js +7 -0
  87. package/lib/WABinary/jid-utils.js +93 -0
  88. package/lib/WABinary/types.js +3 -0
  89. package/lib/WAM/BinaryInfo.js +11 -0
  90. package/lib/WAM/constants.js +22853 -0
  91. package/lib/WAM/encode.js +154 -0
  92. package/lib/WAM/index.js +5 -0
  93. package/lib/WAUSync/Protocols/USyncContactProtocol.js +30 -0
  94. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +53 -0
  95. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +29 -0
  96. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +39 -0
  97. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  98. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +30 -0
  99. package/lib/WAUSync/Protocols/index.js +6 -0
  100. package/lib/WAUSync/USyncQuery.js +90 -0
  101. package/lib/WAUSync/USyncUser.js +24 -0
  102. package/lib/WAUSync/index.js +5 -0
  103. package/lib/index.js +15 -0
  104. package/package.json +102 -0
@@ -0,0 +1,28 @@
1
+ //=======================================================//
2
+ export * from "./GroupMetadata.js";
3
+ export * from "./Newsletter.js";
4
+ export * from "./Contact.js";
5
+ export * from "./Message.js";
6
+ export * from "./Product.js";
7
+ export * from "./Socket.js";
8
+ export * from "./Events.js";
9
+ export * from "./Signal.js";
10
+ export * from "./State.js";
11
+ export * from "./Chat.js";
12
+ export * from "./Call.js";
13
+ export * from "./Auth.js";
14
+ //=======================================================//
15
+ export var DisconnectReason;
16
+ (function (DisconnectReason) {
17
+ DisconnectReason[DisconnectReason["connectionClosed"] = 428] = "connectionClosed";
18
+ DisconnectReason[DisconnectReason["connectionLost"] = 408] = "connectionLost";
19
+ DisconnectReason[DisconnectReason["connectionReplaced"] = 440] = "connectionReplaced";
20
+ DisconnectReason[DisconnectReason["timedOut"] = 408] = "timedOut";
21
+ DisconnectReason[DisconnectReason["loggedOut"] = 401] = "loggedOut";
22
+ DisconnectReason[DisconnectReason["badSession"] = 500] = "badSession";
23
+ DisconnectReason[DisconnectReason["restartRequired"] = 515] = "restartRequired";
24
+ DisconnectReason[DisconnectReason["multideviceMismatch"] = 411] = "multideviceMismatch";
25
+ DisconnectReason[DisconnectReason["forbidden"] = 403] = "forbidden";
26
+ DisconnectReason[DisconnectReason["unavailableService"] = 503] = "unavailableService";
27
+ })(DisconnectReason || (DisconnectReason = {}));
28
+ //=======================================================//
@@ -0,0 +1,219 @@
1
+ //=======================================================//
2
+ import { delay, generateRegistrationId } from "./generics.js";
3
+ import { DEFAULT_CACHE_TTLS } from "../Defaults/index.js";
4
+ import { PreKeyManager } from "./pre-key-manager.js";
5
+ import { Curve, signedKeyPair } from "./crypto.js";
6
+ import { AsyncLocalStorage } from "async_hooks";
7
+ import NodeCache from "@cacheable/node-cache";
8
+ import { randomBytes } from "crypto";
9
+ import { Mutex } from "async-mutex";
10
+ import PQueue from "p-queue";
11
+ //=======================================================//
12
+ export function makeCacheableSignalKeyStore(store, logger, _cache) {
13
+ const cache = _cache ||
14
+ new NodeCache({
15
+ stdTTL: DEFAULT_CACHE_TTLS.SIGNAL_STORE,
16
+ useClones: false,
17
+ deleteOnExpire: true
18
+ });
19
+ const cacheMutex = new Mutex();
20
+ function getUniqueId(type, id) {
21
+ return `${type}.${id}`;
22
+ }
23
+ return {
24
+ async get(type, ids) {
25
+ return cacheMutex.runExclusive(async () => {
26
+ const data = {};
27
+ const idsToFetch = [];
28
+ for (const id of ids) {
29
+ const item = (await cache.get(getUniqueId(type, id)));
30
+ if (typeof item !== "undefined") {
31
+ data[id] = item;
32
+ }
33
+ else {
34
+ idsToFetch.push(id);
35
+ }
36
+ }
37
+ if (idsToFetch.length) {
38
+ logger?.trace({ items: idsToFetch.length }, "loading from store");
39
+ const fetched = await store.get(type, idsToFetch);
40
+ for (const id of idsToFetch) {
41
+ const item = fetched[id];
42
+ if (item) {
43
+ data[id] = item;
44
+ cache.set(getUniqueId(type, id), item);
45
+ }
46
+ }
47
+ }
48
+ return data;
49
+ });
50
+ },
51
+ async set(data) {
52
+ return cacheMutex.runExclusive(async () => {
53
+ let keys = 0;
54
+ for (const type in data) {
55
+ for (const id in data[type]) {
56
+ await cache.set(getUniqueId(type, id), data[type][id]);
57
+ keys += 1;
58
+ }
59
+ }
60
+ logger?.trace({ keys }, "updated cache");
61
+ await store.set(data);
62
+ });
63
+ },
64
+ async clear() {
65
+ await cache.flushAll();
66
+ await store.clear?.();
67
+ }
68
+ };
69
+ }
70
+ //=======================================================//
71
+ export const addTransactionCapability = (state, logger, { maxCommitRetries, delayBetweenTriesMs }) => {
72
+ const txStorage = new AsyncLocalStorage();
73
+ const keyQueues = new Map();
74
+ const txMutexes = new Map();
75
+ const preKeyManager = new PreKeyManager(state, logger);
76
+ function getQueue(key) {
77
+ if (!keyQueues.has(key)) {
78
+ keyQueues.set(key, new PQueue({ concurrency: 1 }));
79
+ }
80
+ return keyQueues.get(key);
81
+ }
82
+ function getTxMutex(key) {
83
+ if (!txMutexes.has(key)) {
84
+ txMutexes.set(key, new Mutex());
85
+ }
86
+ return txMutexes.get(key);
87
+ }
88
+ function isInTransaction() {
89
+ return !!txStorage.getStore();
90
+ }
91
+ async function commitWithRetry(mutations) {
92
+ if (Object.keys(mutations).length === 0) {
93
+ logger.trace("no mutations in transaction");
94
+ return;
95
+ }
96
+ logger.trace("committing transaction");
97
+ for (let attempt = 0; attempt < maxCommitRetries; attempt++) {
98
+ try {
99
+ await state.set(mutations);
100
+ logger.trace({ mutationCount: Object.keys(mutations).length }, "committed transaction");
101
+ return;
102
+ }
103
+ catch (error) {
104
+ const retriesLeft = maxCommitRetries - attempt - 1;
105
+ logger.warn(`failed to commit mutations, retries left=${retriesLeft}`);
106
+ if (retriesLeft === 0) {
107
+ throw error;
108
+ }
109
+ await delay(delayBetweenTriesMs);
110
+ }
111
+ }
112
+ }
113
+ return {
114
+ get: async (type, ids) => {
115
+ const ctx = txStorage.getStore();
116
+ if (!ctx) {
117
+ return state.get(type, ids);
118
+ }
119
+ const cached = ctx.cache[type] || {};
120
+ const missing = ids.filter(id => !(id in cached));
121
+ if (missing.length > 0) {
122
+ ctx.dbQueries++;
123
+ logger.trace({ type, count: missing.length }, "fetching missing keys in transaction");
124
+ const fetched = await getTxMutex(type).runExclusive(() => state.get(type, missing));
125
+ ctx.cache[type] = ctx.cache[type] || {};
126
+ Object.assign(ctx.cache[type], fetched);
127
+ }
128
+ const result = {};
129
+ for (const id of ids) {
130
+ const value = ctx.cache[type]?.[id];
131
+ if (value !== undefined && value !== null) {
132
+ result[id] = value;
133
+ }
134
+ }
135
+ return result;
136
+ },
137
+ set: async (data) => {
138
+ const ctx = txStorage.getStore();
139
+ if (!ctx) {
140
+ const types = Object.keys(data);
141
+ for (const type_ of types) {
142
+ const type = type_;
143
+ if (type === "pre-key") {
144
+ await preKeyManager.validateDeletions(data, type);
145
+ }
146
+ }
147
+ await Promise.all(types.map(type => getQueue(type).add(async () => {
148
+ const typeData = { [type]: data[type] };
149
+ await state.set(typeData);
150
+ })));
151
+ return;
152
+ }
153
+ logger.trace({ types: Object.keys(data) }, "caching in transaction");
154
+ for (const key_ in data) {
155
+ const key = key_;
156
+ ctx.cache[key] = ctx.cache[key] || {};
157
+ ctx.mutations[key] = ctx.mutations[key] || {};
158
+ if (key === "pre-key") {
159
+ await preKeyManager.processOperations(data, key, ctx.cache, ctx.mutations, true);
160
+ }
161
+ else {
162
+ Object.assign(ctx.cache[key], data[key]);
163
+ Object.assign(ctx.mutations[key], data[key]);
164
+ }
165
+ }
166
+ },
167
+ isInTransaction,
168
+ transaction: async (work, key) => {
169
+ const existing = txStorage.getStore();
170
+ if (existing) {
171
+ logger.trace("reusing existing transaction context");
172
+ return work();
173
+ }
174
+ return getTxMutex(key).runExclusive(async () => {
175
+ const ctx = {
176
+ cache: {},
177
+ mutations: {},
178
+ dbQueries: 0
179
+ };
180
+ logger.trace("entering transaction");
181
+ try {
182
+ const result = await txStorage.run(ctx, work);
183
+ await commitWithRetry(ctx.mutations);
184
+ logger.trace({ dbQueries: ctx.dbQueries }, "transaction completed");
185
+ return result;
186
+ }
187
+ catch (error) {
188
+ logger.error({ error }, "transaction failed, rolling back");
189
+ throw error;
190
+ }
191
+ });
192
+ }
193
+ };
194
+ };
195
+ //=======================================================//
196
+ export const initAuthCreds = () => {
197
+ const identityKey = Curve.generateKeyPair();
198
+ return {
199
+ "noiseKey": Curve.generateKeyPair(),
200
+ "pairingEphemeralKeyPair": Curve.generateKeyPair(),
201
+ "signedIdentityKey": identityKey,
202
+ "signedPreKey": signedKeyPair(identityKey, 1),
203
+ "registrationId": generateRegistrationId(),
204
+ "advSecretKey": randomBytes(32).toString("base64"),
205
+ "processedHistoryMessages": [],
206
+ "nextPreKeyId": 1,
207
+ "firstUnuploadedPreKeyId": 1,
208
+ "accountSyncCounter": 0,
209
+ "accountSettings": {
210
+ "unarchiveChats": false
211
+ },
212
+ "registered": false,
213
+ "pairingCode": undefined,
214
+ "lastPropHash": undefined,
215
+ "routingInfo": undefined,
216
+ "additionalData": undefined
217
+ };
218
+ };
219
+ //=======================================================//
@@ -0,0 +1,44 @@
1
+ //=======================================================//
2
+ import { makeMutex } from "./make-mutex.js";
3
+ import { createInterface } from "readline";
4
+ import { writeFile } from "fs/promises";
5
+ import { delay } from "./generics.js";
6
+ import { createReadStream } from "fs";
7
+ import EventEmitter from "events";
8
+ //=======================================================//
9
+ export const captureEventStream = (ev, filename) => {
10
+ const oldEmit = ev.emit;
11
+ const writeMutex = makeMutex();
12
+ ev.emit = function (...args) {
13
+ const content = JSON.stringify({ timestamp: Date.now(), event: args[0], data: args[1] }) + "\n";
14
+ const result = oldEmit.apply(ev, args);
15
+ writeMutex.mutex(async () => {
16
+ await writeFile(filename, content, { flag: "a" });
17
+ });
18
+ return result;
19
+ };
20
+ };
21
+ //=======================================================//
22
+ export const readAndEmitEventStream = (filename, delayIntervalMs = 0) => {
23
+ const ev = new EventEmitter();
24
+ const fireEvents = async () => {
25
+ const fileStream = createReadStream(filename);
26
+ const rl = createInterface({
27
+ input: fileStream,
28
+ crlfDelay: Infinity
29
+ });
30
+ for await (const line of rl) {
31
+ if (line) {
32
+ const { event, data } = JSON.parse(line);
33
+ ev.emit(event, data);
34
+ delayIntervalMs && (await delay(delayIntervalMs));
35
+ }
36
+ }
37
+ fileStream.close();
38
+ };
39
+ return {
40
+ ev,
41
+ task: fireEvents()
42
+ };
43
+ };
44
+ //=======================================================//
@@ -0,0 +1,17 @@
1
+ //=======================================================//
2
+ import { proto } from "../../WAProto/index.js";
3
+ import { platform, release } from "os";
4
+ //=======================================================//
5
+ const PLATFORM_MAP = {
6
+ "safari": "Safari"
7
+ };
8
+ //=======================================================//
9
+ export const Browsers = {
10
+ iOS: (browser) => ["ios", browser, "18.2"]
11
+ };
12
+ //=======================================================//
13
+ export const getPlatformId = (browser) => {
14
+ const platformType = proto.DeviceProps.PlatformType[browser.toUpperCase()];
15
+ return platformType ? platformType.toString() : "1";
16
+ };
17
+ //=======================================================//
@@ -0,0 +1,233 @@
1
+ //=======================================================//
2
+ import { getBinaryNodeChild, getBinaryNodeChildren, getBinaryNodeChildString } from "../WABinary/index.js";
3
+ import { getStream, getUrlFromDirectPath } from "./messages-media.js";
4
+ import { createWriteStream, promises as fs } from "fs";
5
+ import { generateMessageIDV2 } from "./generics.js";
6
+ import { createHash } from "crypto";
7
+ import { Boom } from "@hapi/boom";
8
+ import { tmpdir } from "os";
9
+ import { join } from "path";
10
+ //=======================================================//
11
+ export const parseCatalogNode = (node) => {
12
+ const catalogNode = getBinaryNodeChild(node, "product_catalog");
13
+ const products = getBinaryNodeChildren(catalogNode, "product").map(parseProductNode);
14
+ const paging = getBinaryNodeChild(catalogNode, "paging");
15
+ return {
16
+ products,
17
+ nextPageCursor: paging ? getBinaryNodeChildString(paging, "after") : undefined
18
+ };
19
+ };
20
+ //=======================================================//
21
+ export const parseCollectionsNode = (node) => {
22
+ const collectionsNode = getBinaryNodeChild(node, "collections");
23
+ const collections = getBinaryNodeChildren(collectionsNode, "collection").map(collectionNode => {
24
+ const id = getBinaryNodeChildString(collectionNode, "id");
25
+ const name = getBinaryNodeChildString(collectionNode, "name");
26
+ const products = getBinaryNodeChildren(collectionNode, "product").map(parseProductNode);
27
+ return {
28
+ id,
29
+ name,
30
+ products,
31
+ status: parseStatusInfo(collectionNode)
32
+ };
33
+ });
34
+ return {
35
+ collections
36
+ };
37
+ };
38
+ //=======================================================//
39
+ export const parseOrderDetailsNode = (node) => {
40
+ const orderNode = getBinaryNodeChild(node, "order");
41
+ const products = getBinaryNodeChildren(orderNode, "product").map(productNode => {
42
+ const imageNode = getBinaryNodeChild(productNode, "image");
43
+ return {
44
+ id: getBinaryNodeChildString(productNode, "id"),
45
+ name: getBinaryNodeChildString(productNode, "name"),
46
+ imageUrl: getBinaryNodeChildString(imageNode, "url"),
47
+ price: +getBinaryNodeChildString(productNode, "price"),
48
+ currency: getBinaryNodeChildString(productNode, "currency"),
49
+ quantity: +getBinaryNodeChildString(productNode, "quantity")
50
+ };
51
+ });
52
+ const priceNode = getBinaryNodeChild(orderNode, "price");
53
+ const orderDetails = {
54
+ price: {
55
+ total: +getBinaryNodeChildString(priceNode, "total"),
56
+ currency: getBinaryNodeChildString(priceNode, "currency")
57
+ },
58
+ products
59
+ };
60
+ return orderDetails;
61
+ };
62
+ //=======================================================//
63
+ export const toProductNode = (productId, product) => {
64
+ const attrs = {};
65
+ const content = [];
66
+ if (typeof productId !== "undefined") {
67
+ content.push({
68
+ tag: "id",
69
+ attrs: {},
70
+ content: Buffer.from(productId)
71
+ });
72
+ }
73
+ if (typeof product.name !== "undefined") {
74
+ content.push({
75
+ tag: "name",
76
+ attrs: {},
77
+ content: Buffer.from(product.name)
78
+ });
79
+ }
80
+ if (typeof product.description !== "undefined") {
81
+ content.push({
82
+ tag: "description",
83
+ attrs: {},
84
+ content: Buffer.from(product.description)
85
+ });
86
+ }
87
+ if (typeof product.retailerId !== "undefined") {
88
+ content.push({
89
+ tag: "retailer_id",
90
+ attrs: {},
91
+ content: Buffer.from(product.retailerId)
92
+ });
93
+ }
94
+ if (product.images.length) {
95
+ content.push({
96
+ tag: "media",
97
+ attrs: {},
98
+ content: product.images.map(img => {
99
+ if (!("url" in img)) {
100
+ throw new Boom("Expected img for product to already be uploaded", { statusCode: 400 });
101
+ }
102
+ return {
103
+ tag: "image",
104
+ attrs: {},
105
+ content: [
106
+ {
107
+ tag: "url",
108
+ attrs: {},
109
+ content: Buffer.from(img.url.toString())
110
+ }
111
+ ]
112
+ };
113
+ })
114
+ });
115
+ }
116
+ if (typeof product.price !== "undefined") {
117
+ content.push({
118
+ tag: "price",
119
+ attrs: {},
120
+ content: Buffer.from(product.price.toString())
121
+ });
122
+ }
123
+ if (typeof product.currency !== "undefined") {
124
+ content.push({
125
+ tag: "currency",
126
+ attrs: {},
127
+ content: Buffer.from(product.currency)
128
+ });
129
+ }
130
+ if ("originCountryCode" in product) {
131
+ if (typeof product.originCountryCode === "undefined") {
132
+ attrs["compliance_category"] = "COUNTRY_ORIGIN_EXEMPT";
133
+ }
134
+ else {
135
+ content.push({
136
+ tag: "compliance_info",
137
+ attrs: {},
138
+ content: [
139
+ {
140
+ tag: "country_code_origin",
141
+ attrs: {},
142
+ content: Buffer.from(product.originCountryCode)
143
+ }
144
+ ]
145
+ });
146
+ }
147
+ }
148
+ if (typeof product.isHidden !== "undefined") {
149
+ attrs["is_hidden"] = product.isHidden.toString();
150
+ }
151
+ const node = {
152
+ tag: "product",
153
+ attrs,
154
+ content
155
+ };
156
+ return node;
157
+ };
158
+ //=======================================================//
159
+ export const parseProductNode = (productNode) => {
160
+ const isHidden = productNode.attrs.is_hidden === "true";
161
+ const id = getBinaryNodeChildString(productNode, "id");
162
+ const mediaNode = getBinaryNodeChild(productNode, "media");
163
+ const statusInfoNode = getBinaryNodeChild(productNode, "status_info");
164
+ const product = {
165
+ id,
166
+ imageUrls: parseImageUrls(mediaNode),
167
+ reviewStatus: {
168
+ whatsapp: getBinaryNodeChildString(statusInfoNode, "status")
169
+ },
170
+ availability: "in stock",
171
+ name: getBinaryNodeChildString(productNode, "name"),
172
+ retailerId: getBinaryNodeChildString(productNode, "retailer_id"),
173
+ url: getBinaryNodeChildString(productNode, "url"),
174
+ description: getBinaryNodeChildString(productNode, "description"),
175
+ price: +getBinaryNodeChildString(productNode, "price"),
176
+ currency: getBinaryNodeChildString(productNode, "currency"),
177
+ isHidden
178
+ };
179
+ return product;
180
+ };
181
+ //=======================================================//
182
+ export async function uploadingNecessaryImagesOfProduct(product, waUploadToServer, timeoutMs = 30000) {
183
+ product = {
184
+ ...product,
185
+ images: product.images
186
+ ? await uploadingNecessaryImages(product.images, waUploadToServer, timeoutMs)
187
+ : product.images
188
+ };
189
+ return product;
190
+ }
191
+ //=======================================================//
192
+ export const uploadingNecessaryImages = async (images, waUploadToServer, timeoutMs = 30000) => {
193
+ const results = await Promise.all(images.map(async (img) => {
194
+ if ("url" in img) {
195
+ const url = img.url.toString();
196
+ if (url.includes(".whatsapp.net")) {
197
+ return { url };
198
+ }
199
+ }
200
+ const { stream } = await getStream(img);
201
+ const hasher = createHash("sha256");
202
+ const filePath = join(tmpdir(), "img" + generateMessageIDV2());
203
+ const encFileWriteStream = createWriteStream(filePath);
204
+ for await (const block of stream) {
205
+ hasher.update(block);
206
+ encFileWriteStream.write(block);
207
+ }
208
+ const sha = hasher.digest("base64");
209
+ const { directPath } = await waUploadToServer(filePath, {
210
+ mediaType: "product-catalog-image",
211
+ fileEncSha256B64: sha,
212
+ timeoutMs
213
+ });
214
+ await fs.unlink(filePath).catch(err => console.log("Error deleting temp file ", err));
215
+ return { url: getUrlFromDirectPath(directPath) };
216
+ }));
217
+ return results;
218
+ };
219
+ const parseImageUrls = (mediaNode) => {
220
+ const imgNode = getBinaryNodeChild(mediaNode, "image");
221
+ return {
222
+ requested: getBinaryNodeChildString(imgNode, "request_image_url"),
223
+ original: getBinaryNodeChildString(imgNode, "original_image_url")
224
+ };
225
+ };
226
+ const parseStatusInfo = (mediaNode) => {
227
+ const node = getBinaryNodeChild(mediaNode, "status_info");
228
+ return {
229
+ status: getBinaryNodeChildString(node, "status"),
230
+ canAppeal: getBinaryNodeChildString(node, "can_appeal") === "true"
231
+ };
232
+ };
233
+ //=======================================================//