@badzz88/baileys 8.5.7 → 8.5.8
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/README.md +337 -1055
- package/WAProto/WAProto.proto +284 -264
- package/WAProto/index.js +5 -5
- package/engine-requirements.js +7 -15
- package/lib/Defaults/index.js +130 -187
- package/lib/Signal/Group/ciphertext-message.js +11 -14
- package/lib/Signal/Group/group-session-builder.js +29 -91
- package/lib/Signal/Group/group_cipher.js +81 -88
- package/lib/Signal/Group/index.js +12 -136
- package/lib/Signal/Group/keyhelper.js +15 -70
- package/lib/Signal/Group/sender-chain-key.js +25 -31
- package/lib/Signal/Group/sender-key-distribution-message.js +62 -65
- package/lib/Signal/Group/sender-key-message.js +65 -68
- package/lib/Signal/Group/sender-key-name.js +41 -43
- package/lib/Signal/Group/sender-key-record.js +40 -43
- package/lib/Signal/Group/sender-key-state.js +83 -96
- package/lib/Signal/Group/sender-message-key.js +25 -29
- package/lib/Signal/libsignal.js +425 -453
- package/lib/Signal/lid-mapping.js +276 -259
- package/lib/Socket/Client/index.js +3 -30
- package/lib/Socket/Client/types.js +10 -12
- package/lib/Socket/Client/websocket.js +53 -61
- package/lib/Socket/business.js +379 -422
- package/lib/Socket/chats.js +1193 -1816
- package/lib/Socket/communities.js +431 -549
- package/lib/Socket/graphql.js +672 -612
- package/lib/Socket/groups.js +374 -764
- package/lib/Socket/index.js +17 -38
- package/lib/Socket/interop.js +417 -503
- package/lib/Socket/messages-recv.js +1915 -2441
- package/lib/Socket/messages-send.js +1213 -1630
- package/lib/Socket/mex.js +9 -15
- package/lib/Socket/newsletter.js +747 -808
- package/lib/Socket/privacy.js +310 -441
- package/lib/Socket/socket.js +1025 -1022
- package/lib/Socket/username.js +8 -15
- package/lib/Store/index.js +10 -36
- package/lib/Store/make-cache-manager-store.js +80 -85
- package/lib/Store/make-in-memory-store.js +231 -591
- package/lib/Store/make-ordered-dictionary.js +72 -78
- package/lib/Store/object-repository.js +28 -25
- package/lib/Types/Auth.js +2 -38
- package/lib/Types/Bussines.js +2 -2
- package/lib/Types/Call.js +2 -2
- package/lib/Types/Chat.js +8 -4
- package/lib/Types/Contact.js +2 -2
- package/lib/Types/Events.js +2 -2
- package/lib/Types/GroupMetadata.js +2 -2
- package/lib/Types/Label.js +24 -26
- package/lib/Types/LabelAssociation.js +6 -8
- package/lib/Types/Message.js +11 -95
- package/lib/Types/Mex.js +111 -112
- package/lib/Types/Product.js +2 -2
- package/lib/Types/Signal.js +2 -2
- package/lib/Types/Socket.js +3 -2
- package/lib/Types/State.js +56 -70
- package/lib/Types/USync.js +2 -2
- package/lib/Types/index.js +26 -55
- package/lib/Utils/auth-utils.js +288 -292
- package/lib/Utils/browser-utils.js +47 -113
- package/lib/Utils/business.js +224 -240
- package/lib/Utils/chat-utils.js +869 -1205
- package/lib/Utils/companion-reg-client-utils.js +34 -41
- package/lib/Utils/crypto.js +107 -144
- package/lib/Utils/decode-wa-message.js +308 -518
- package/lib/Utils/event-buffer.js +611 -596
- package/lib/Utils/generics.js +355 -515
- package/lib/Utils/history.js +134 -244
- package/lib/Utils/identity-change-handler.js +49 -51
- package/lib/Utils/index.js +23 -57
- package/lib/Utils/link-preview.js +77 -135
- package/lib/Utils/logger.js +3 -9
- package/lib/Utils/lt-hash.js +6 -37
- package/lib/Utils/make-mutex.js +33 -36
- package/lib/Utils/message-composer.js +233 -439
- package/lib/Utils/message-retry-manager.js +260 -265
- package/lib/Utils/messages-media.js +829 -855
- package/lib/Utils/messages.js +961 -2528
- package/lib/Utils/noise-handler.js +200 -195
- package/lib/Utils/offline-node-processor.js +33 -35
- package/lib/Utils/pre-key-manager.js +102 -103
- package/lib/Utils/process-message.js +560 -978
- package/lib/Utils/reporting-utils.js +253 -257
- package/lib/Utils/signal.js +195 -218
- package/lib/Utils/stanza-ack.js +29 -31
- package/lib/Utils/sticker.js +109 -144
- package/lib/Utils/sync-action-utils.js +45 -50
- package/lib/Utils/tc-token-utils.js +139 -137
- package/lib/Utils/use-multi-file-auth-state.js +109 -109
- package/lib/Utils/validate-connection.js +202 -218
- package/lib/WABinary/constants.js +1299 -1302
- package/lib/WABinary/decode.js +262 -343
- package/lib/WABinary/encode.js +4 -12
- package/lib/WABinary/generic-utils.js +187 -223
- package/lib/WABinary/index.js +6 -33
- package/lib/WABinary/jid-utils.js +88 -351
- package/lib/WABinary/types.js +2 -2
- package/lib/WAM/BinaryInfo.js +9 -12
- package/lib/WAM/constants.js +22853 -39486
- package/lib/WAM/encode.js +140 -132
- package/lib/WAM/index.js +4 -31
- package/lib/WAUSync/Protocols/USyncBotProfileProtocol.js +21 -23
- package/lib/WAUSync/Protocols/USyncBusinessProtocol.js +9 -9
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +7 -7
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +10 -10
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +7 -7
- package/lib/WAUSync/Protocols/USyncFeatureProtocol.js +11 -12
- package/lib/WAUSync/Protocols/USyncLIDProtocol.js +4 -5
- package/lib/WAUSync/Protocols/USyncPictureProtocol.js +7 -7
- package/lib/WAUSync/Protocols/USyncSidelistProtocol.js +7 -8
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +7 -7
- package/lib/WAUSync/Protocols/USyncTextStatusProtocol.js +8 -8
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +7 -7
- package/lib/WAUSync/Protocols/index.js +12 -39
- package/lib/WAUSync/USyncQuery.js +67 -49
- package/lib/WAUSync/USyncUser.js +11 -5
- package/lib/WAUSync/index.js +3 -31
- package/lib/index.js +15 -48
- package/package.json +129 -99
- package/LICENSE +0 -21
- package/lib/Defaults/phonenumber-mcc.json +0 -223
- package/lib/Socket/aigroups.js +0 -240
- package/lib/Socket/interactive-handler.js +0 -522
- package/lib/Socket/managed-account.js +0 -183
- package/lib/Socket/registration.js +0 -427
- package/lib/Socket/text-router.js +0 -83
- package/lib/Types/Newsletter.js +0 -121
- package/lib/Utils/command-loader.d.ts +0 -31
- package/lib/Utils/command-loader.js +0 -100
- package/lib/Utils/consumer-application.js +0 -107
- package/lib/Utils/curve25519-js.js +0 -275
- package/lib/Utils/group-history.js +0 -60
- package/lib/Utils/jid-display-normalization.js +0 -218
- package/lib/Utils/meta-ai-msmsg.js +0 -262
- package/lib/Utils/native-bridge.js +0 -82
- package/lib/Utils/session-pool.d.ts +0 -16
- package/lib/Utils/session-pool.js +0 -94
- package/lib/Utils/sticker.d.ts +0 -17
- package/lib/Utils/view-once-cache.d.ts +0 -9
- package/lib/Utils/view-once-cache.js +0 -79
- package/lib/Utils/voip-rekey.js +0 -22
- package/lib/antiban.js +0 -4637
|
@@ -1,707 +1,618 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Object.defineProperty(o, k2, desc)
|
|
17
|
-
}
|
|
18
|
-
: function (o, m, k, k2) {
|
|
19
|
-
if (k2 === undefined) k2 = k
|
|
20
|
-
o[k2] = m[k]
|
|
21
|
-
})
|
|
22
|
-
var __setModuleDefault =
|
|
23
|
-
(this && this.__setModuleDefault) ||
|
|
24
|
-
(Object.create
|
|
25
|
-
? function (o, v) {
|
|
26
|
-
Object.defineProperty(o, 'default', { enumerable: true, value: v })
|
|
27
|
-
}
|
|
28
|
-
: function (o, v) {
|
|
29
|
-
o['default'] = v
|
|
30
|
-
})
|
|
31
|
-
var __importStar =
|
|
32
|
-
(this && this.__importStar) ||
|
|
33
|
-
(function () {
|
|
34
|
-
var ownKeys = function (o) {
|
|
35
|
-
ownKeys =
|
|
36
|
-
Object.getOwnPropertyNames ||
|
|
37
|
-
function (o) {
|
|
38
|
-
var ar = []
|
|
39
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k
|
|
40
|
-
return ar
|
|
41
|
-
}
|
|
42
|
-
return ownKeys(o)
|
|
43
|
-
}
|
|
44
|
-
return function (mod) {
|
|
45
|
-
if (mod && mod.__esModule) return mod
|
|
46
|
-
var result = {}
|
|
47
|
-
if (mod != null)
|
|
48
|
-
for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== 'default') __createBinding(result, mod, k[i])
|
|
49
|
-
__setModuleDefault(result, mod)
|
|
50
|
-
return result
|
|
51
|
-
}
|
|
52
|
-
})()
|
|
53
|
-
Object.defineProperty(exports, '__esModule', { value: true })
|
|
54
|
-
exports.getStatusCodeForMediaRetry =
|
|
55
|
-
exports.decryptMediaRetryData =
|
|
56
|
-
exports.decodeMediaRetryNode =
|
|
57
|
-
exports.encryptMediaRetryRequest =
|
|
58
|
-
exports.getWAUploadToServer =
|
|
59
|
-
exports.uploadWithNodeHttp =
|
|
60
|
-
exports.downloadEncryptedContent =
|
|
61
|
-
exports.downloadContentFromMessage =
|
|
62
|
-
exports.getUrlFromDirectPath =
|
|
63
|
-
exports.encryptedStream =
|
|
64
|
-
exports.getHttpStream =
|
|
65
|
-
exports.getStream =
|
|
66
|
-
exports.toBuffer =
|
|
67
|
-
exports.toReadable =
|
|
68
|
-
exports.mediaMessageSHA256B64 =
|
|
69
|
-
exports.generateProfilePicture =
|
|
70
|
-
exports.encodeBase64EncodedStringForUpload =
|
|
71
|
-
exports.extractImageThumb =
|
|
72
|
-
exports.getRawMediaUploadData =
|
|
73
|
-
exports.hkdfInfoKey =
|
|
74
|
-
void 0
|
|
75
|
-
exports.getMediaKeys = getMediaKeys
|
|
76
|
-
exports.getAudioDuration = getAudioDuration
|
|
77
|
-
exports.getAudioWaveform = getAudioWaveform
|
|
78
|
-
exports.generateThumbnail = generateThumbnail
|
|
79
|
-
exports.extensionForMediaMessage = extensionForMediaMessage
|
|
80
|
-
const boom_1 = require('@hapi/boom')
|
|
81
|
-
const child_process_1 = require('child_process')
|
|
82
|
-
const Crypto = __importStar(require('crypto'))
|
|
83
|
-
const events_1 = require('events')
|
|
84
|
-
const fs_1 = require('fs')
|
|
85
|
-
const os_1 = require('os')
|
|
86
|
-
const path_1 = require('path')
|
|
87
|
-
const stream_1 = require('stream')
|
|
88
|
-
const url_1 = require('url')
|
|
89
|
-
const index_js_1 = require('../../WAProto/index.js')
|
|
90
|
-
const Defaults_1 = require('../Defaults')
|
|
91
|
-
const WABinary_1 = require('../WABinary')
|
|
92
|
-
const crypto_1 = require('./crypto')
|
|
93
|
-
const generics_1 = require('./generics')
|
|
94
|
-
const getTmpFilesDirectory = () => (0, os_1.tmpdir)()
|
|
1
|
+
import { Boom } from '@hapi/boom';
|
|
2
|
+
import { exec } from 'child_process';
|
|
3
|
+
import * as Crypto from 'crypto';
|
|
4
|
+
import { once } from 'events';
|
|
5
|
+
import { createReadStream, createWriteStream, promises as fs, WriteStream } from 'fs';
|
|
6
|
+
import { tmpdir } from 'os';
|
|
7
|
+
import { join } from 'path';
|
|
8
|
+
import { Readable, Transform } from 'stream';
|
|
9
|
+
import { URL } from 'url';
|
|
10
|
+
import { proto } from '../../WAProto/index.js';
|
|
11
|
+
import { DEFAULT_ORIGIN, MEDIA_HKDF_KEY_MAPPING, MEDIA_PATH_MAP } from '../Defaults/index.js';
|
|
12
|
+
import { getBinaryNodeChild, getBinaryNodeChildBuffer, jidNormalizedUser } from '../WABinary/index.js';
|
|
13
|
+
import { aesDecryptGCM, aesEncryptGCM, hkdf } from './crypto.js';
|
|
14
|
+
import { generateMessageIDV2 } from './generics.js';
|
|
15
|
+
const getTmpFilesDirectory = () => tmpdir();
|
|
95
16
|
const getImageProcessingLibrary = async () => {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
const
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
} catch {
|
|
149
|
-
//
|
|
150
|
-
}
|
|
151
|
-
throw error
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
exports.getRawMediaUploadData = getRawMediaUploadData
|
|
17
|
+
//@ts-ignore
|
|
18
|
+
const [jimp, sharp] = await Promise.all([import('jimp').catch(() => { }), import('sharp').catch(() => { })]);
|
|
19
|
+
if (sharp) {
|
|
20
|
+
return { sharp };
|
|
21
|
+
}
|
|
22
|
+
if (jimp) {
|
|
23
|
+
return { jimp };
|
|
24
|
+
}
|
|
25
|
+
throw new Boom('No image processing library available');
|
|
26
|
+
};
|
|
27
|
+
export const hkdfInfoKey = (type) => {
|
|
28
|
+
const hkdfInfo = MEDIA_HKDF_KEY_MAPPING[type];
|
|
29
|
+
return `WhatsApp ${hkdfInfo} Keys`;
|
|
30
|
+
};
|
|
31
|
+
export const getRawMediaUploadData = async (media, mediaType, logger) => {
|
|
32
|
+
const { stream } = await getStream(media);
|
|
33
|
+
logger?.debug('got stream for raw upload');
|
|
34
|
+
const hasher = Crypto.createHash('sha256');
|
|
35
|
+
const filePath = join(tmpdir(), mediaType + generateMessageIDV2());
|
|
36
|
+
const fileWriteStream = createWriteStream(filePath);
|
|
37
|
+
let fileLength = 0;
|
|
38
|
+
try {
|
|
39
|
+
for await (const data of stream) {
|
|
40
|
+
fileLength += data.length;
|
|
41
|
+
hasher.update(data);
|
|
42
|
+
if (!fileWriteStream.write(data)) {
|
|
43
|
+
await once(fileWriteStream, 'drain');
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
fileWriteStream.end();
|
|
47
|
+
await once(fileWriteStream, 'finish');
|
|
48
|
+
stream.destroy();
|
|
49
|
+
const fileSha256 = hasher.digest();
|
|
50
|
+
logger?.debug('hashed data for raw upload');
|
|
51
|
+
return {
|
|
52
|
+
filePath: filePath,
|
|
53
|
+
fileSha256,
|
|
54
|
+
fileLength
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
catch (error) {
|
|
58
|
+
fileWriteStream.destroy();
|
|
59
|
+
stream.destroy();
|
|
60
|
+
try {
|
|
61
|
+
await fs.unlink(filePath);
|
|
62
|
+
}
|
|
63
|
+
catch {
|
|
64
|
+
//
|
|
65
|
+
}
|
|
66
|
+
throw error;
|
|
67
|
+
}
|
|
68
|
+
};
|
|
155
69
|
/** generates all the keys required to encrypt/decrypt & sign a media message */
|
|
156
|
-
async function getMediaKeys(buffer, mediaType) {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
70
|
+
export async function getMediaKeys(buffer, mediaType) {
|
|
71
|
+
if (!buffer) {
|
|
72
|
+
throw new Boom('Cannot derive from empty media key');
|
|
73
|
+
}
|
|
74
|
+
if (typeof buffer === 'string') {
|
|
75
|
+
buffer = Buffer.from(buffer.replace('data:;base64,', ''), 'base64');
|
|
76
|
+
}
|
|
77
|
+
// expand using HKDF to 112 bytes, also pass in the relevant app info
|
|
78
|
+
const expandedMediaKey = hkdf(buffer, 112, { info: hkdfInfoKey(mediaType) });
|
|
79
|
+
return {
|
|
80
|
+
iv: expandedMediaKey.slice(0, 16),
|
|
81
|
+
cipherKey: expandedMediaKey.slice(16, 48),
|
|
82
|
+
macKey: expandedMediaKey.slice(48, 80)
|
|
83
|
+
};
|
|
170
84
|
}
|
|
171
85
|
/** Extracts video thumb using FFMPEG */
|
|
172
|
-
const extractVideoThumb = async (path, destPath, time, size) =>
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
const extractImageThumb = async (bufferOrFilePath, width = 32) => {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
86
|
+
const extractVideoThumb = async (path, destPath, time, size) => new Promise((resolve, reject) => {
|
|
87
|
+
const cmd = `ffmpeg -ss ${time} -i ${path} -y -vf scale=${size.width}:-1 -vframes 1 -f image2 ${destPath}`;
|
|
88
|
+
exec(cmd, err => {
|
|
89
|
+
if (err) {
|
|
90
|
+
reject(err);
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
resolve();
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
export const extractImageThumb = async (bufferOrFilePath, width = 32) => {
|
|
98
|
+
// TODO: Move entirely to sharp, removing jimp as it supports readable streams
|
|
99
|
+
// This will have positive speed and performance impacts as well as minimizing RAM usage.
|
|
100
|
+
if (bufferOrFilePath instanceof Readable) {
|
|
101
|
+
bufferOrFilePath = await toBuffer(bufferOrFilePath);
|
|
102
|
+
}
|
|
103
|
+
const lib = await getImageProcessingLibrary();
|
|
104
|
+
if ('sharp' in lib && typeof lib.sharp?.default === 'function') {
|
|
105
|
+
const img = lib.sharp.default(bufferOrFilePath);
|
|
106
|
+
const dimensions = await img.metadata();
|
|
107
|
+
const buffer = await img.resize(width).jpeg({ quality: 50 }).toBuffer();
|
|
108
|
+
return {
|
|
109
|
+
buffer,
|
|
110
|
+
original: {
|
|
111
|
+
width: dimensions.width,
|
|
112
|
+
height: dimensions.height
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
else if ('jimp' in lib && typeof lib.jimp?.Jimp === 'object') {
|
|
117
|
+
const jimp = await lib.jimp.Jimp.read(bufferOrFilePath);
|
|
118
|
+
const dimensions = {
|
|
119
|
+
width: jimp.width,
|
|
120
|
+
height: jimp.height
|
|
121
|
+
};
|
|
122
|
+
const buffer = await jimp
|
|
123
|
+
.resize({ w: width, mode: lib.jimp.ResizeStrategy.BILINEAR })
|
|
124
|
+
.getBuffer('image/jpeg', { quality: 50 });
|
|
125
|
+
return {
|
|
126
|
+
buffer,
|
|
127
|
+
original: dimensions
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
else {
|
|
131
|
+
throw new Boom('No image processing library available');
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
export const encodeBase64EncodedStringForUpload = (b64) => encodeURIComponent(b64.replace(/\+/g, '-').replace(/\//g, '_').replace(/\=+$/, ''));
|
|
135
|
+
export const generateProfilePicture = async (mediaUpload, dimensions) => {
|
|
136
|
+
let buffer;
|
|
137
|
+
const { width: w = 640, height: h = 640 } = dimensions || {};
|
|
138
|
+
if (Buffer.isBuffer(mediaUpload)) {
|
|
139
|
+
buffer = mediaUpload;
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
// Use getStream to handle all WAMediaUpload types (Buffer, Stream, URL)
|
|
143
|
+
const { stream } = await getStream(mediaUpload);
|
|
144
|
+
// Convert the resulting stream to a buffer
|
|
145
|
+
buffer = await toBuffer(stream);
|
|
146
|
+
}
|
|
147
|
+
const lib = await getImageProcessingLibrary();
|
|
148
|
+
let img;
|
|
149
|
+
if ('sharp' in lib && typeof lib.sharp?.default === 'function') {
|
|
150
|
+
img = lib.sharp
|
|
151
|
+
.default(buffer)
|
|
152
|
+
.resize(w, h)
|
|
153
|
+
.jpeg({
|
|
154
|
+
quality: 50
|
|
155
|
+
})
|
|
156
|
+
.toBuffer();
|
|
157
|
+
}
|
|
158
|
+
else if ('jimp' in lib && typeof lib.jimp?.Jimp === 'function') {
|
|
159
|
+
const jimp = await lib.jimp.Jimp.read(buffer);
|
|
160
|
+
const min = Math.min(jimp.width, jimp.height);
|
|
161
|
+
const cropped = jimp.crop({ x: 0, y: 0, w: min, h: min });
|
|
162
|
+
img = cropped.resize({ w, h, mode: lib.jimp.ResizeStrategy.BILINEAR }).getBuffer('image/jpeg', { quality: 50 });
|
|
163
|
+
}
|
|
164
|
+
else {
|
|
165
|
+
throw new Boom('No image processing library available');
|
|
166
|
+
}
|
|
167
|
+
return {
|
|
168
|
+
img: await img
|
|
169
|
+
};
|
|
170
|
+
};
|
|
256
171
|
/** gets the SHA256 of the given media message */
|
|
257
|
-
const mediaMessageSHA256B64 = message => {
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
172
|
+
export const mediaMessageSHA256B64 = (message) => {
|
|
173
|
+
const media = Object.values(message)[0];
|
|
174
|
+
return media?.fileSha256 && Buffer.from(media.fileSha256).toString('base64');
|
|
175
|
+
};
|
|
176
|
+
export async function getAudioDuration(buffer) {
|
|
177
|
+
const musicMetadata = await import('music-metadata');
|
|
178
|
+
let metadata;
|
|
179
|
+
const options = {
|
|
180
|
+
duration: true
|
|
181
|
+
};
|
|
182
|
+
if (Buffer.isBuffer(buffer)) {
|
|
183
|
+
metadata = await musicMetadata.parseBuffer(buffer, undefined, options);
|
|
184
|
+
}
|
|
185
|
+
else if (typeof buffer === 'string') {
|
|
186
|
+
metadata = await musicMetadata.parseFile(buffer, options);
|
|
187
|
+
}
|
|
188
|
+
else {
|
|
189
|
+
metadata = await musicMetadata.parseStream(buffer, undefined, options);
|
|
190
|
+
}
|
|
191
|
+
return metadata.format.duration;
|
|
276
192
|
}
|
|
277
193
|
/**
|
|
278
194
|
referenced from and modifying https://github.com/wppconnect-team/wa-js/blob/main/src/chat/functions/prepareAudioWaveform.ts
|
|
279
195
|
*/
|
|
280
|
-
async function getAudioWaveform(buffer, logger) {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
196
|
+
export async function getAudioWaveform(buffer, logger) {
|
|
197
|
+
try {
|
|
198
|
+
// @ts-ignore
|
|
199
|
+
const { default: decoder } = await import('audio-decode');
|
|
200
|
+
let audioData;
|
|
201
|
+
if (Buffer.isBuffer(buffer)) {
|
|
202
|
+
audioData = buffer;
|
|
203
|
+
}
|
|
204
|
+
else if (typeof buffer === 'string') {
|
|
205
|
+
const rStream = createReadStream(buffer);
|
|
206
|
+
audioData = await toBuffer(rStream);
|
|
207
|
+
}
|
|
208
|
+
else {
|
|
209
|
+
audioData = await toBuffer(buffer);
|
|
210
|
+
}
|
|
211
|
+
const audioBuffer = await decoder(audioData);
|
|
212
|
+
const rawData = audioBuffer.getChannelData(0); // We only need to work with one channel of data
|
|
213
|
+
const samples = 64; // Number of samples we want to have in our final data set
|
|
214
|
+
const blockSize = Math.floor(rawData.length / samples); // the number of samples in each subdivision
|
|
215
|
+
const filteredData = [];
|
|
216
|
+
for (let i = 0; i < samples; i++) {
|
|
217
|
+
const blockStart = blockSize * i; // the location of the first sample in the block
|
|
218
|
+
let sum = 0;
|
|
219
|
+
for (let j = 0; j < blockSize; j++) {
|
|
220
|
+
sum = sum + Math.abs(rawData[blockStart + j]); // find the sum of all the samples in the block
|
|
221
|
+
}
|
|
222
|
+
filteredData.push(sum / blockSize); // divide the sum by the block size to get the average
|
|
223
|
+
}
|
|
224
|
+
// This guarantees that the largest data point will be set to 1, and the rest of the data will scale proportionally.
|
|
225
|
+
const multiplier = Math.pow(Math.max(...filteredData), -1);
|
|
226
|
+
const normalizedData = filteredData.map(n => n * multiplier);
|
|
227
|
+
// Generate waveform like WhatsApp
|
|
228
|
+
const waveform = new Uint8Array(normalizedData.map(n => Math.floor(100 * n)));
|
|
229
|
+
return waveform;
|
|
230
|
+
}
|
|
231
|
+
catch (e) {
|
|
232
|
+
logger?.debug('Failed to generate waveform: ' + e);
|
|
233
|
+
}
|
|
315
234
|
}
|
|
316
|
-
const toReadable = buffer => {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
const
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
return { stream: (0, fs_1.createReadStream)(item.url), type: 'file' }
|
|
348
|
-
}
|
|
349
|
-
exports.getStream = getStream
|
|
235
|
+
export const toReadable = (buffer) => {
|
|
236
|
+
const readable = new Readable({ read: () => { } });
|
|
237
|
+
readable.push(buffer);
|
|
238
|
+
readable.push(null);
|
|
239
|
+
return readable;
|
|
240
|
+
};
|
|
241
|
+
export const toBuffer = async (stream) => {
|
|
242
|
+
const chunks = [];
|
|
243
|
+
for await (const chunk of stream) {
|
|
244
|
+
chunks.push(chunk);
|
|
245
|
+
}
|
|
246
|
+
stream.destroy();
|
|
247
|
+
return Buffer.concat(chunks);
|
|
248
|
+
};
|
|
249
|
+
export const getStream = async (item, opts) => {
|
|
250
|
+
if (Buffer.isBuffer(item)) {
|
|
251
|
+
return { stream: toReadable(item), type: 'buffer' };
|
|
252
|
+
}
|
|
253
|
+
if ('stream' in item) {
|
|
254
|
+
return { stream: item.stream, type: 'readable' };
|
|
255
|
+
}
|
|
256
|
+
const urlStr = item.url.toString();
|
|
257
|
+
if (urlStr.startsWith('data:')) {
|
|
258
|
+
const buffer = Buffer.from(urlStr.split(',')[1], 'base64');
|
|
259
|
+
return { stream: toReadable(buffer), type: 'buffer' };
|
|
260
|
+
}
|
|
261
|
+
if (urlStr.startsWith('http://') || urlStr.startsWith('https://')) {
|
|
262
|
+
return { stream: await getHttpStream(item.url, opts), type: 'remote' };
|
|
263
|
+
}
|
|
264
|
+
return { stream: createReadStream(item.url), type: 'file' };
|
|
265
|
+
};
|
|
350
266
|
/** generates a thumbnail for a given media, if required */
|
|
351
|
-
async function generateThumbnail(file, mediaType, options) {
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
const response = await fetch(url.toString(), {
|
|
381
|
-
dispatcher: options.dispatcher,
|
|
382
|
-
method: 'GET',
|
|
383
|
-
headers: options.headers
|
|
384
|
-
})
|
|
385
|
-
if (!response.ok) {
|
|
386
|
-
throw new boom_1.Boom(`Failed to fetch stream from ${url}`, { statusCode: response.status, data: { url } })
|
|
387
|
-
}
|
|
388
|
-
// @ts-ignore Node18+ Readable.fromWeb exists
|
|
389
|
-
return response.body instanceof stream_1.Readable ? response.body : stream_1.Readable.fromWeb(response.body)
|
|
390
|
-
}
|
|
391
|
-
exports.getHttpStream = getHttpStream
|
|
392
|
-
const encryptedStream = async (media, mediaType, { logger, saveOriginalFileIfRequired, opts } = {}) => {
|
|
393
|
-
const { stream, type } = await (0, exports.getStream)(media, opts)
|
|
394
|
-
logger?.debug('fetched media stream')
|
|
395
|
-
const mediaKey = Crypto.randomBytes(32)
|
|
396
|
-
const { cipherKey, iv, macKey } = await getMediaKeys(mediaKey, mediaType)
|
|
397
|
-
const encFilePath = (0, path_1.join)(
|
|
398
|
-
getTmpFilesDirectory(),
|
|
399
|
-
mediaType + (0, generics_1.generateMessageIDV2)() + '-enc'
|
|
400
|
-
)
|
|
401
|
-
const encFileWriteStream = (0, fs_1.createWriteStream)(encFilePath)
|
|
402
|
-
let originalFileStream
|
|
403
|
-
let originalFilePath
|
|
404
|
-
if (saveOriginalFileIfRequired) {
|
|
405
|
-
originalFilePath = (0, path_1.join)(
|
|
406
|
-
getTmpFilesDirectory(),
|
|
407
|
-
mediaType + (0, generics_1.generateMessageIDV2)() + '-original'
|
|
408
|
-
)
|
|
409
|
-
originalFileStream = (0, fs_1.createWriteStream)(originalFilePath)
|
|
410
|
-
}
|
|
411
|
-
let fileLength = 0
|
|
412
|
-
const aes = Crypto.createCipheriv('aes-256-cbc', cipherKey, iv)
|
|
413
|
-
const hmac = Crypto.createHmac('sha256', macKey).update(iv)
|
|
414
|
-
const sha256Plain = Crypto.createHash('sha256')
|
|
415
|
-
const sha256Enc = Crypto.createHash('sha256')
|
|
416
|
-
const onChunk = async buff => {
|
|
417
|
-
sha256Enc.update(buff)
|
|
418
|
-
hmac.update(buff)
|
|
419
|
-
// Handle backpressure: if write returns false, wait for drain
|
|
420
|
-
if (!encFileWriteStream.write(buff)) {
|
|
421
|
-
await (0, events_1.once)(encFileWriteStream, 'drain')
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
try {
|
|
425
|
-
for await (const data of stream) {
|
|
426
|
-
fileLength += data.length
|
|
427
|
-
if (type === 'remote' && opts?.maxContentLength && fileLength + data.length > opts.maxContentLength) {
|
|
428
|
-
throw new boom_1.Boom(`content length exceeded when encrypting "${type}"`, {
|
|
429
|
-
data: { media, type }
|
|
430
|
-
})
|
|
431
|
-
}
|
|
432
|
-
if (originalFileStream) {
|
|
433
|
-
if (!originalFileStream.write(data)) {
|
|
434
|
-
await (0, events_1.once)(originalFileStream, 'drain')
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
sha256Plain.update(data)
|
|
438
|
-
await onChunk(aes.update(data))
|
|
439
|
-
}
|
|
440
|
-
await onChunk(aes.final())
|
|
441
|
-
const mac = hmac.digest().slice(0, 10)
|
|
442
|
-
sha256Enc.update(mac)
|
|
443
|
-
const fileSha256 = sha256Plain.digest()
|
|
444
|
-
const fileEncSha256 = sha256Enc.digest()
|
|
445
|
-
encFileWriteStream.write(mac)
|
|
446
|
-
const encFinishPromise = (0, events_1.once)(encFileWriteStream, 'finish')
|
|
447
|
-
const originalFinishPromise = originalFileStream
|
|
448
|
-
? (0, events_1.once)(originalFileStream, 'finish')
|
|
449
|
-
: Promise.resolve()
|
|
450
|
-
encFileWriteStream.end()
|
|
451
|
-
originalFileStream?.end?.()
|
|
452
|
-
stream.destroy()
|
|
453
|
-
// Wait for write streams to fully flush to disk
|
|
454
|
-
// This helps reduce memory pressure by allowing OS to release buffers
|
|
455
|
-
await encFinishPromise
|
|
456
|
-
await originalFinishPromise
|
|
457
|
-
logger?.debug('encrypted data successfully')
|
|
458
|
-
return {
|
|
459
|
-
mediaKey,
|
|
460
|
-
originalFilePath,
|
|
461
|
-
encFilePath,
|
|
462
|
-
mac,
|
|
463
|
-
fileEncSha256,
|
|
464
|
-
fileSha256,
|
|
465
|
-
fileLength
|
|
466
|
-
}
|
|
467
|
-
} catch (error) {
|
|
468
|
-
// destroy all streams with error
|
|
469
|
-
encFileWriteStream.destroy()
|
|
470
|
-
originalFileStream?.destroy?.()
|
|
471
|
-
aes.destroy()
|
|
472
|
-
hmac.destroy()
|
|
473
|
-
sha256Plain.destroy()
|
|
474
|
-
sha256Enc.destroy()
|
|
475
|
-
stream.destroy()
|
|
476
|
-
try {
|
|
477
|
-
await fs_1.promises.unlink(encFilePath)
|
|
478
|
-
if (originalFilePath) {
|
|
479
|
-
await fs_1.promises.unlink(originalFilePath)
|
|
480
|
-
}
|
|
481
|
-
} catch (err) {
|
|
482
|
-
logger?.error({ err }, 'failed deleting tmp files')
|
|
483
|
-
}
|
|
484
|
-
throw error
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
exports.encryptedStream = encryptedStream
|
|
488
|
-
const DEF_HOST = 'mmg.whatsapp.net'
|
|
489
|
-
const AES_CHUNK_SIZE = 16
|
|
490
|
-
const toSmallestChunkSize = num => {
|
|
491
|
-
return Math.floor(num / AES_CHUNK_SIZE) * AES_CHUNK_SIZE
|
|
267
|
+
export async function generateThumbnail(file, mediaType, options) {
|
|
268
|
+
let thumbnail;
|
|
269
|
+
let originalImageDimensions;
|
|
270
|
+
if (mediaType === 'image') {
|
|
271
|
+
const { buffer, original } = await extractImageThumb(file);
|
|
272
|
+
thumbnail = buffer.toString('base64');
|
|
273
|
+
if (original.width && original.height) {
|
|
274
|
+
originalImageDimensions = {
|
|
275
|
+
width: original.width,
|
|
276
|
+
height: original.height
|
|
277
|
+
};
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
else if (mediaType === 'video') {
|
|
281
|
+
const imgFilename = join(getTmpFilesDirectory(), generateMessageIDV2() + '.jpg');
|
|
282
|
+
try {
|
|
283
|
+
await extractVideoThumb(file, imgFilename, '00:00:00', { width: 32, height: 32 });
|
|
284
|
+
const buff = await fs.readFile(imgFilename);
|
|
285
|
+
thumbnail = buff.toString('base64');
|
|
286
|
+
await fs.unlink(imgFilename);
|
|
287
|
+
}
|
|
288
|
+
catch (err) {
|
|
289
|
+
options.logger?.debug('could not generate video thumb: ' + err);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
return {
|
|
293
|
+
thumbnail,
|
|
294
|
+
originalImageDimensions
|
|
295
|
+
};
|
|
492
296
|
}
|
|
493
|
-
const
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
297
|
+
export const getHttpStream = async (url, options = {}) => {
|
|
298
|
+
const response = await fetch(url.toString(), {
|
|
299
|
+
dispatcher: options.dispatcher,
|
|
300
|
+
method: 'GET',
|
|
301
|
+
headers: options.headers
|
|
302
|
+
});
|
|
303
|
+
if (!response.ok) {
|
|
304
|
+
throw new Boom(`Failed to fetch stream from ${url}`, { statusCode: response.status, data: { url } });
|
|
305
|
+
}
|
|
306
|
+
// @ts-ignore Node18+ Readable.fromWeb exists
|
|
307
|
+
return response.body instanceof Readable ? response.body : Readable.fromWeb(response.body);
|
|
308
|
+
};
|
|
309
|
+
export const encryptedStream = async (media, mediaType, { logger, saveOriginalFileIfRequired, opts } = {}) => {
|
|
310
|
+
const { stream, type } = await getStream(media, opts);
|
|
311
|
+
logger?.debug('fetched media stream');
|
|
312
|
+
const mediaKey = Crypto.randomBytes(32);
|
|
313
|
+
const { cipherKey, iv, macKey } = await getMediaKeys(mediaKey, mediaType);
|
|
314
|
+
const encFilePath = join(getTmpFilesDirectory(), mediaType + generateMessageIDV2() + '-enc');
|
|
315
|
+
const encFileWriteStream = createWriteStream(encFilePath);
|
|
316
|
+
let originalFileStream;
|
|
317
|
+
let originalFilePath;
|
|
318
|
+
if (saveOriginalFileIfRequired) {
|
|
319
|
+
originalFilePath = join(getTmpFilesDirectory(), mediaType + generateMessageIDV2() + '-original');
|
|
320
|
+
originalFileStream = createWriteStream(originalFilePath);
|
|
321
|
+
}
|
|
322
|
+
let fileLength = 0;
|
|
323
|
+
const aes = Crypto.createCipheriv('aes-256-cbc', cipherKey, iv);
|
|
324
|
+
const hmac = Crypto.createHmac('sha256', macKey).update(iv);
|
|
325
|
+
const sha256Plain = Crypto.createHash('sha256');
|
|
326
|
+
const sha256Enc = Crypto.createHash('sha256');
|
|
327
|
+
const onChunk = async (buff) => {
|
|
328
|
+
sha256Enc.update(buff);
|
|
329
|
+
hmac.update(buff);
|
|
330
|
+
// Handle backpressure: if write returns false, wait for drain
|
|
331
|
+
if (!encFileWriteStream.write(buff)) {
|
|
332
|
+
await once(encFileWriteStream, 'drain');
|
|
333
|
+
}
|
|
334
|
+
};
|
|
335
|
+
try {
|
|
336
|
+
for await (const data of stream) {
|
|
337
|
+
fileLength += data.length;
|
|
338
|
+
if (type === 'remote' &&
|
|
339
|
+
opts?.maxContentLength &&
|
|
340
|
+
fileLength + data.length > opts.maxContentLength) {
|
|
341
|
+
throw new Boom(`content length exceeded when encrypting "${type}"`, {
|
|
342
|
+
data: { media, type }
|
|
343
|
+
});
|
|
344
|
+
}
|
|
345
|
+
if (originalFileStream) {
|
|
346
|
+
if (!originalFileStream.write(data)) {
|
|
347
|
+
await once(originalFileStream, 'drain');
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
sha256Plain.update(data);
|
|
351
|
+
await onChunk(aes.update(data));
|
|
352
|
+
}
|
|
353
|
+
await onChunk(aes.final());
|
|
354
|
+
const mac = hmac.digest().slice(0, 10);
|
|
355
|
+
sha256Enc.update(mac);
|
|
356
|
+
const fileSha256 = sha256Plain.digest();
|
|
357
|
+
const fileEncSha256 = sha256Enc.digest();
|
|
358
|
+
encFileWriteStream.write(mac);
|
|
359
|
+
const encFinishPromise = once(encFileWriteStream, 'finish');
|
|
360
|
+
const originalFinishPromise = originalFileStream ? once(originalFileStream, 'finish') : Promise.resolve();
|
|
361
|
+
encFileWriteStream.end();
|
|
362
|
+
originalFileStream?.end?.();
|
|
363
|
+
stream.destroy();
|
|
364
|
+
// Wait for write streams to fully flush to disk
|
|
365
|
+
// This helps reduce memory pressure by allowing OS to release buffers
|
|
366
|
+
await encFinishPromise;
|
|
367
|
+
await originalFinishPromise;
|
|
368
|
+
logger?.debug('encrypted data successfully');
|
|
369
|
+
return {
|
|
370
|
+
mediaKey,
|
|
371
|
+
originalFilePath,
|
|
372
|
+
encFilePath,
|
|
373
|
+
mac,
|
|
374
|
+
fileEncSha256,
|
|
375
|
+
fileSha256,
|
|
376
|
+
fileLength
|
|
377
|
+
};
|
|
378
|
+
}
|
|
379
|
+
catch (error) {
|
|
380
|
+
// destroy all streams with error
|
|
381
|
+
encFileWriteStream.destroy();
|
|
382
|
+
originalFileStream?.destroy?.();
|
|
383
|
+
aes.destroy();
|
|
384
|
+
hmac.destroy();
|
|
385
|
+
sha256Plain.destroy();
|
|
386
|
+
sha256Enc.destroy();
|
|
387
|
+
stream.destroy();
|
|
388
|
+
try {
|
|
389
|
+
await fs.unlink(encFilePath);
|
|
390
|
+
if (originalFilePath) {
|
|
391
|
+
await fs.unlink(originalFilePath);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
catch (err) {
|
|
395
|
+
logger?.error({ err }, 'failed deleting tmp files');
|
|
396
|
+
}
|
|
397
|
+
throw error;
|
|
398
|
+
}
|
|
399
|
+
};
|
|
400
|
+
export const DEF_MEDIA_HOST = 'mmg.whatsapp.net';
|
|
401
|
+
const AES_CHUNK_SIZE = 16;
|
|
402
|
+
const toSmallestChunkSize = (num) => {
|
|
403
|
+
return Math.floor(num / AES_CHUNK_SIZE) * AES_CHUNK_SIZE;
|
|
404
|
+
};
|
|
405
|
+
export const getUrlFromDirectPath = (directPath, host = DEF_MEDIA_HOST) => `https://${host}${directPath}`;
|
|
406
|
+
const extractHost = (url) => {
|
|
407
|
+
if (!url)
|
|
408
|
+
return undefined;
|
|
409
|
+
try {
|
|
410
|
+
return new URL(url).host;
|
|
411
|
+
}
|
|
412
|
+
catch {
|
|
413
|
+
return undefined;
|
|
414
|
+
}
|
|
415
|
+
};
|
|
416
|
+
export const downloadContentFromMessage = async ({ mediaKey, directPath, url }, type, opts = {}) => {
|
|
417
|
+
// Fallback host: explicit opt > host parsed from `url` > DEF_MEDIA_HOST.
|
|
418
|
+
// Lets us honor a non-default host carried by the proto without forcing callers to thread it through.
|
|
419
|
+
const fallbackHost = opts.host ?? extractHost(url);
|
|
420
|
+
const downloadUrl = directPath ? getUrlFromDirectPath(directPath, fallbackHost) : url;
|
|
421
|
+
if (!downloadUrl) {
|
|
422
|
+
throw new Boom('No valid media URL or directPath present in message', { statusCode: 400 });
|
|
423
|
+
}
|
|
424
|
+
const keys = await getMediaKeys(mediaKey, type);
|
|
425
|
+
return downloadEncryptedContent(downloadUrl, keys, opts);
|
|
426
|
+
};
|
|
505
427
|
/**
|
|
506
428
|
* Decrypts and downloads an AES256-CBC encrypted file given the keys.
|
|
507
429
|
* Assumes the SHA256 of the plaintext is appended to the end of the ciphertext
|
|
508
430
|
* */
|
|
509
|
-
const downloadEncryptedContent = async (downloadUrl, { cipherKey, iv }, { startByte, endByte, options } = {}) => {
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
431
|
+
export const downloadEncryptedContent = async (downloadUrl, { cipherKey, iv }, { startByte, endByte, options } = {}) => {
|
|
432
|
+
let bytesFetched = 0;
|
|
433
|
+
let startChunk = 0;
|
|
434
|
+
let firstBlockIsIV = false;
|
|
435
|
+
// if a start byte is specified -- then we need to fetch the previous chunk as that will form the IV
|
|
436
|
+
if (startByte) {
|
|
437
|
+
const chunk = toSmallestChunkSize(startByte || 0);
|
|
438
|
+
if (chunk) {
|
|
439
|
+
startChunk = chunk - AES_CHUNK_SIZE;
|
|
440
|
+
bytesFetched = chunk;
|
|
441
|
+
firstBlockIsIV = true;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
const endChunk = endByte ? toSmallestChunkSize(endByte || 0) + AES_CHUNK_SIZE : undefined;
|
|
445
|
+
const headersInit = options?.headers ? options.headers : undefined;
|
|
446
|
+
const headers = {
|
|
447
|
+
...(headersInit
|
|
448
|
+
? Array.isArray(headersInit)
|
|
449
|
+
? Object.fromEntries(headersInit)
|
|
450
|
+
: headersInit
|
|
451
|
+
: {}),
|
|
452
|
+
Origin: DEFAULT_ORIGIN
|
|
453
|
+
};
|
|
454
|
+
if (startChunk || endChunk) {
|
|
455
|
+
headers.Range = `bytes=${startChunk}-`;
|
|
456
|
+
if (endChunk) {
|
|
457
|
+
headers.Range += endChunk;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
// download the message
|
|
461
|
+
const fetched = await getHttpStream(downloadUrl, {
|
|
462
|
+
...(options || {}),
|
|
463
|
+
headers
|
|
464
|
+
});
|
|
465
|
+
let remainingBytes = Buffer.from([]);
|
|
466
|
+
let aes;
|
|
467
|
+
const pushBytes = (bytes, push) => {
|
|
468
|
+
if (startByte || endByte) {
|
|
469
|
+
const start = bytesFetched >= startByte ? undefined : Math.max(startByte - bytesFetched, 0);
|
|
470
|
+
const end = bytesFetched + bytes.length < endByte ? undefined : Math.max(endByte - bytesFetched, 0);
|
|
471
|
+
push(bytes.slice(start, end));
|
|
472
|
+
bytesFetched += bytes.length;
|
|
473
|
+
}
|
|
474
|
+
else {
|
|
475
|
+
push(bytes);
|
|
476
|
+
}
|
|
477
|
+
};
|
|
478
|
+
const output = new Transform({
|
|
479
|
+
transform(chunk, _, callback) {
|
|
480
|
+
let data = remainingBytes.length ? Buffer.concat([remainingBytes, chunk]) : chunk;
|
|
481
|
+
const decryptLength = toSmallestChunkSize(data.length);
|
|
482
|
+
remainingBytes = data.slice(decryptLength);
|
|
483
|
+
data = data.slice(0, decryptLength);
|
|
484
|
+
if (!aes) {
|
|
485
|
+
let ivValue = iv;
|
|
486
|
+
if (firstBlockIsIV) {
|
|
487
|
+
ivValue = data.slice(0, AES_CHUNK_SIZE);
|
|
488
|
+
data = data.slice(AES_CHUNK_SIZE);
|
|
489
|
+
}
|
|
490
|
+
aes = Crypto.createDecipheriv('aes-256-cbc', cipherKey, ivValue);
|
|
491
|
+
// if an end byte that is not EOF is specified
|
|
492
|
+
// stop auto padding (PKCS7) -- otherwise throws an error for decryption
|
|
493
|
+
if (endByte) {
|
|
494
|
+
aes.setAutoPadding(false);
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
try {
|
|
498
|
+
pushBytes(aes.update(data), b => this.push(b));
|
|
499
|
+
callback();
|
|
500
|
+
}
|
|
501
|
+
catch (error) {
|
|
502
|
+
callback(error);
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
final(callback) {
|
|
506
|
+
try {
|
|
507
|
+
pushBytes(aes.final(), b => this.push(b));
|
|
508
|
+
callback();
|
|
509
|
+
}
|
|
510
|
+
catch (error) {
|
|
511
|
+
callback(error);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
});
|
|
515
|
+
return fetched.pipe(output, { end: true });
|
|
516
|
+
};
|
|
517
|
+
export function extensionForMediaMessage(message) {
|
|
518
|
+
const getExtension = (mimetype) => mimetype.split(';')[0]?.split('/')[1];
|
|
519
|
+
const type = Object.keys(message)[0];
|
|
520
|
+
let extension;
|
|
521
|
+
if (type === 'locationMessage' || type === 'liveLocationMessage' || type === 'productMessage') {
|
|
522
|
+
extension = '.jpeg';
|
|
523
|
+
}
|
|
524
|
+
else {
|
|
525
|
+
const messageContent = message[type];
|
|
526
|
+
extension = getExtension(messageContent.mimetype);
|
|
527
|
+
}
|
|
528
|
+
return extension;
|
|
600
529
|
}
|
|
601
530
|
const isNodeRuntime = () => {
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
})
|
|
667
|
-
}
|
|
668
|
-
)
|
|
669
|
-
req.on('error', reject)
|
|
670
|
-
req.on('timeout', () => {
|
|
671
|
-
req.destroy()
|
|
672
|
-
reject(new Error('Upload timeout'))
|
|
673
|
-
})
|
|
674
|
-
const stream = (0, fs_1.createReadStream)(filePath)
|
|
675
|
-
stream.pipe(req)
|
|
676
|
-
stream.on('error', err => {
|
|
677
|
-
req.destroy()
|
|
678
|
-
reject(err)
|
|
679
|
-
})
|
|
680
|
-
})
|
|
681
|
-
}
|
|
682
|
-
exports.uploadWithNodeHttp = uploadWithNodeHttp
|
|
531
|
+
return (typeof process !== 'undefined' &&
|
|
532
|
+
process.versions?.node !== null &&
|
|
533
|
+
typeof process.versions.bun === 'undefined' &&
|
|
534
|
+
typeof globalThis.Deno === 'undefined');
|
|
535
|
+
};
|
|
536
|
+
export const uploadWithNodeHttp = async ({ url, filePath, headers, timeoutMs, agent }, redirectCount = 0) => {
|
|
537
|
+
if (redirectCount > 5) {
|
|
538
|
+
throw new Error('Too many redirects');
|
|
539
|
+
}
|
|
540
|
+
const parsedUrl = new URL(url);
|
|
541
|
+
const httpModule = parsedUrl.protocol === 'https:' ? await import('https') : await import('http');
|
|
542
|
+
// Get file size for Content-Length header (required for Node.js streaming)
|
|
543
|
+
const fileStats = await fs.stat(filePath);
|
|
544
|
+
const fileSize = fileStats.size;
|
|
545
|
+
return new Promise((resolve, reject) => {
|
|
546
|
+
const req = httpModule.request({
|
|
547
|
+
hostname: parsedUrl.hostname,
|
|
548
|
+
port: parsedUrl.port || (parsedUrl.protocol === 'https:' ? 443 : 80),
|
|
549
|
+
path: parsedUrl.pathname + parsedUrl.search,
|
|
550
|
+
method: 'POST',
|
|
551
|
+
headers: {
|
|
552
|
+
...headers,
|
|
553
|
+
'Content-Length': fileSize
|
|
554
|
+
},
|
|
555
|
+
agent,
|
|
556
|
+
timeout: timeoutMs
|
|
557
|
+
}, res => {
|
|
558
|
+
// Handle redirects (3xx)
|
|
559
|
+
if (res.statusCode && res.statusCode >= 300 && res.statusCode < 400 && res.headers.location) {
|
|
560
|
+
res.resume(); // Consume response to free resources
|
|
561
|
+
const newUrl = new URL(res.headers.location, url).toString();
|
|
562
|
+
resolve(uploadWithNodeHttp({
|
|
563
|
+
url: newUrl,
|
|
564
|
+
filePath,
|
|
565
|
+
headers,
|
|
566
|
+
timeoutMs,
|
|
567
|
+
agent
|
|
568
|
+
}, redirectCount + 1));
|
|
569
|
+
return;
|
|
570
|
+
}
|
|
571
|
+
let body = '';
|
|
572
|
+
res.on('data', chunk => (body += chunk));
|
|
573
|
+
res.on('end', () => {
|
|
574
|
+
try {
|
|
575
|
+
resolve(JSON.parse(body));
|
|
576
|
+
}
|
|
577
|
+
catch {
|
|
578
|
+
resolve(undefined);
|
|
579
|
+
}
|
|
580
|
+
});
|
|
581
|
+
});
|
|
582
|
+
req.on('error', reject);
|
|
583
|
+
req.on('timeout', () => {
|
|
584
|
+
req.destroy();
|
|
585
|
+
reject(new Error('Upload timeout'));
|
|
586
|
+
});
|
|
587
|
+
const stream = createReadStream(filePath);
|
|
588
|
+
stream.pipe(req);
|
|
589
|
+
stream.on('error', err => {
|
|
590
|
+
req.destroy();
|
|
591
|
+
reject(err);
|
|
592
|
+
});
|
|
593
|
+
});
|
|
594
|
+
};
|
|
683
595
|
const uploadWithFetch = async ({ url, filePath, headers, timeoutMs, agent }) => {
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
}
|
|
596
|
+
// Convert Node.js Readable to Web ReadableStream
|
|
597
|
+
const nodeStream = createReadStream(filePath);
|
|
598
|
+
const webStream = Readable.toWeb(nodeStream);
|
|
599
|
+
// Native fetch only accepts Undici-style dispatchers, not generic https Agents.
|
|
600
|
+
const dispatcher = typeof agent?.dispatch === 'function' ? agent : undefined;
|
|
601
|
+
const response = await fetch(url, {
|
|
602
|
+
...(dispatcher ? { dispatcher } : {}),
|
|
603
|
+
method: 'POST',
|
|
604
|
+
body: webStream,
|
|
605
|
+
headers,
|
|
606
|
+
duplex: 'half',
|
|
607
|
+
signal: timeoutMs ? AbortSignal.timeout(timeoutMs) : undefined
|
|
608
|
+
});
|
|
609
|
+
try {
|
|
610
|
+
return (await response.json());
|
|
611
|
+
}
|
|
612
|
+
catch {
|
|
613
|
+
return undefined;
|
|
614
|
+
}
|
|
615
|
+
};
|
|
705
616
|
/**
|
|
706
617
|
* Uploads media to WhatsApp servers.
|
|
707
618
|
*
|
|
@@ -720,177 +631,240 @@ const uploadWithFetch = async ({ url, filePath, headers, timeoutMs, agent }) =>
|
|
|
720
631
|
* across all runtimes. Monitor the GitHub issue for updates.
|
|
721
632
|
*/
|
|
722
633
|
const uploadMedia = async (params, logger) => {
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
{ trace: error?.stack, uploadResult: result },
|
|
794
|
-
`Error in uploading to ${hostname} ${isLast ? '' : ', retrying...'}`
|
|
795
|
-
)
|
|
796
|
-
break
|
|
797
|
-
}
|
|
798
|
-
}
|
|
799
|
-
if (urls) break
|
|
800
|
-
}
|
|
801
|
-
if (!urls) {
|
|
802
|
-
throw new boom_1.Boom('Media upload failed on all hosts', { statusCode: 500 })
|
|
803
|
-
}
|
|
804
|
-
return urls
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
exports.getWAUploadToServer = getWAUploadToServer
|
|
808
|
-
const getMediaRetryKey = mediaKey => {
|
|
809
|
-
return (0, crypto_1.hkdf)(mediaKey, 32, { info: 'WhatsApp Media Retry Notification' })
|
|
810
|
-
}
|
|
634
|
+
if (isNodeRuntime()) {
|
|
635
|
+
logger?.debug('Using Node.js https module for upload (avoids undici buffering bug)');
|
|
636
|
+
return uploadWithNodeHttp(params);
|
|
637
|
+
}
|
|
638
|
+
else {
|
|
639
|
+
logger?.debug('Using web-standard Fetch API for upload');
|
|
640
|
+
return uploadWithFetch(params);
|
|
641
|
+
}
|
|
642
|
+
};
|
|
643
|
+
export const getWAUploadToServer = ({ customUploadHosts, fetchAgent, logger, options }, refreshMediaConn) => {
|
|
644
|
+
return async (filePath, { mediaType, fileEncSha256B64, timeoutMs }) => {
|
|
645
|
+
// send a query JSON to obtain the url & auth token to upload our media
|
|
646
|
+
let uploadInfo = await refreshMediaConn(false);
|
|
647
|
+
let urls;
|
|
648
|
+
const hosts = [...customUploadHosts, ...uploadInfo.hosts];
|
|
649
|
+
fileEncSha256B64 = encodeBase64EncodedStringForUpload(fileEncSha256B64);
|
|
650
|
+
// Prepare common headers
|
|
651
|
+
const customHeaders = (() => {
|
|
652
|
+
const hdrs = options?.headers;
|
|
653
|
+
if (!hdrs)
|
|
654
|
+
return {};
|
|
655
|
+
return Array.isArray(hdrs) ? Object.fromEntries(hdrs) : hdrs;
|
|
656
|
+
})();
|
|
657
|
+
const headers = {
|
|
658
|
+
...customHeaders,
|
|
659
|
+
'Content-Type': 'application/octet-stream',
|
|
660
|
+
Origin: DEFAULT_ORIGIN
|
|
661
|
+
};
|
|
662
|
+
for (const { hostname } of hosts) {
|
|
663
|
+
logger.debug(`uploading to "${hostname}"`);
|
|
664
|
+
const auth = encodeURIComponent(uploadInfo.auth);
|
|
665
|
+
const url = `https://${hostname}${MEDIA_PATH_MAP[mediaType]}/${fileEncSha256B64}?auth=${auth}&token=${fileEncSha256B64}`;
|
|
666
|
+
let result;
|
|
667
|
+
try {
|
|
668
|
+
result = await uploadMedia({
|
|
669
|
+
url,
|
|
670
|
+
filePath,
|
|
671
|
+
headers,
|
|
672
|
+
timeoutMs,
|
|
673
|
+
agent: fetchAgent
|
|
674
|
+
}, logger);
|
|
675
|
+
if (result?.url || result?.direct_path) {
|
|
676
|
+
urls = {
|
|
677
|
+
mediaUrl: result.url,
|
|
678
|
+
directPath: result.direct_path,
|
|
679
|
+
meta_hmac: result.meta_hmac,
|
|
680
|
+
fbid: result.fbid,
|
|
681
|
+
ts: result.ts
|
|
682
|
+
};
|
|
683
|
+
break;
|
|
684
|
+
}
|
|
685
|
+
else {
|
|
686
|
+
uploadInfo = await refreshMediaConn(true);
|
|
687
|
+
throw new Error(`upload failed, reason: ${JSON.stringify(result)}`);
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
catch (error) {
|
|
691
|
+
const isLast = hostname === hosts[uploadInfo.hosts.length - 1]?.hostname;
|
|
692
|
+
logger.warn({ trace: error?.stack, uploadResult: result }, `Error in uploading to ${hostname} ${isLast ? '' : ', retrying...'}`);
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
if (!urls) {
|
|
696
|
+
throw new Boom('Media upload failed on all hosts', { statusCode: 500 });
|
|
697
|
+
}
|
|
698
|
+
return urls;
|
|
699
|
+
};
|
|
700
|
+
};
|
|
701
|
+
const getMediaRetryKey = (mediaKey) => {
|
|
702
|
+
return hkdf(mediaKey, 32, { info: 'WhatsApp Media Retry Notification' });
|
|
703
|
+
};
|
|
811
704
|
/**
|
|
812
705
|
* Generate a binary node that will request the phone to re-upload the media & return the newly uploaded URL
|
|
813
706
|
*/
|
|
814
|
-
const encryptMediaRetryRequest = (key, mediaKey, meId) => {
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
const
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
const decryptMediaRetryData = ({ ciphertext, iv }, mediaKey, msgId) => {
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
const
|
|
890
|
-
|
|
707
|
+
export const encryptMediaRetryRequest = (key, mediaKey, meId) => {
|
|
708
|
+
const recp = { stanzaId: key.id };
|
|
709
|
+
const recpBuffer = proto.ServerErrorReceipt.encode(recp).finish();
|
|
710
|
+
const iv = Crypto.randomBytes(12);
|
|
711
|
+
const retryKey = getMediaRetryKey(mediaKey);
|
|
712
|
+
const ciphertext = aesEncryptGCM(recpBuffer, retryKey, iv, Buffer.from(key.id));
|
|
713
|
+
const req = {
|
|
714
|
+
tag: 'receipt',
|
|
715
|
+
attrs: {
|
|
716
|
+
id: key.id,
|
|
717
|
+
to: jidNormalizedUser(meId),
|
|
718
|
+
type: 'server-error'
|
|
719
|
+
},
|
|
720
|
+
content: [
|
|
721
|
+
// this encrypt node is actually pretty useless
|
|
722
|
+
// the media is returned even without this node
|
|
723
|
+
// keeping it here to maintain parity with WA Web
|
|
724
|
+
{
|
|
725
|
+
tag: 'encrypt',
|
|
726
|
+
attrs: {},
|
|
727
|
+
content: [
|
|
728
|
+
{ tag: 'enc_p', attrs: {}, content: ciphertext },
|
|
729
|
+
{ tag: 'enc_iv', attrs: {}, content: iv }
|
|
730
|
+
]
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
tag: 'rmr',
|
|
734
|
+
attrs: {
|
|
735
|
+
jid: key.remoteJid,
|
|
736
|
+
from_me: (!!key.fromMe).toString(),
|
|
737
|
+
// @ts-ignore
|
|
738
|
+
participant: key.participant || undefined
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
]
|
|
742
|
+
};
|
|
743
|
+
return req;
|
|
744
|
+
};
|
|
745
|
+
export const decodeMediaRetryNode = (node) => {
|
|
746
|
+
const rmrNode = getBinaryNodeChild(node, 'rmr');
|
|
747
|
+
const event = {
|
|
748
|
+
key: {
|
|
749
|
+
id: node.attrs.id,
|
|
750
|
+
remoteJid: rmrNode.attrs.jid,
|
|
751
|
+
fromMe: rmrNode.attrs.from_me === 'true',
|
|
752
|
+
participant: rmrNode.attrs.participant
|
|
753
|
+
}
|
|
754
|
+
};
|
|
755
|
+
const errorNode = getBinaryNodeChild(node, 'error');
|
|
756
|
+
if (errorNode) {
|
|
757
|
+
const errorCode = +errorNode.attrs.code;
|
|
758
|
+
event.error = new Boom(`Failed to re-upload media (${errorCode})`, {
|
|
759
|
+
data: errorNode.attrs,
|
|
760
|
+
statusCode: getStatusCodeForMediaRetry(errorCode)
|
|
761
|
+
});
|
|
762
|
+
}
|
|
763
|
+
else {
|
|
764
|
+
const encryptedInfoNode = getBinaryNodeChild(node, 'encrypt');
|
|
765
|
+
const ciphertext = getBinaryNodeChildBuffer(encryptedInfoNode, 'enc_p');
|
|
766
|
+
const iv = getBinaryNodeChildBuffer(encryptedInfoNode, 'enc_iv');
|
|
767
|
+
if (ciphertext && iv) {
|
|
768
|
+
event.media = { ciphertext, iv };
|
|
769
|
+
}
|
|
770
|
+
else {
|
|
771
|
+
event.error = new Boom('Failed to re-upload media (missing ciphertext)', { statusCode: 404 });
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
return event;
|
|
775
|
+
};
|
|
776
|
+
export const decryptMediaRetryData = ({ ciphertext, iv }, mediaKey, msgId) => {
|
|
777
|
+
const retryKey = getMediaRetryKey(mediaKey);
|
|
778
|
+
const plaintext = aesDecryptGCM(ciphertext, retryKey, iv, Buffer.from(msgId));
|
|
779
|
+
return proto.MediaRetryNotification.decode(plaintext);
|
|
780
|
+
};
|
|
781
|
+
const CRC_TABLE = (() => {
|
|
782
|
+
const table = new Uint32Array(256);
|
|
783
|
+
for (let n = 0; n < 256; n++) {
|
|
784
|
+
let c = n;
|
|
785
|
+
for (let k = 0; k < 8; k++) {
|
|
786
|
+
c = c & 1 ? (0xedb88320 ^ (c >>> 1)) : (c >>> 1);
|
|
787
|
+
}
|
|
788
|
+
table[n] = c >>> 0;
|
|
789
|
+
}
|
|
790
|
+
return table;
|
|
791
|
+
})();
|
|
792
|
+
export const crc32 = (buf) => {
|
|
793
|
+
let crc = 0xffffffff;
|
|
794
|
+
for (let i = 0; i < buf.length; i++) {
|
|
795
|
+
crc = CRC_TABLE[(crc ^ buf[i]) & 0xff] ^ (crc >>> 8);
|
|
796
|
+
}
|
|
797
|
+
return (crc ^ 0xffffffff) >>> 0;
|
|
798
|
+
};
|
|
799
|
+
export const buildZipArchive = (files) => {
|
|
800
|
+
const localChunks = [];
|
|
801
|
+
const centralChunks = [];
|
|
802
|
+
let offset = 0;
|
|
803
|
+
for (const { name, data } of files) {
|
|
804
|
+
const nameBuf = Buffer.from(name, 'utf8');
|
|
805
|
+
const crc = crc32(data);
|
|
806
|
+
const dosTime = 0;
|
|
807
|
+
const dosDate = 0x21;
|
|
808
|
+
const localHeader = Buffer.alloc(30);
|
|
809
|
+
localHeader.writeUInt32LE(0x04034b50, 0);
|
|
810
|
+
localHeader.writeUInt16LE(20, 4);
|
|
811
|
+
localHeader.writeUInt16LE(0, 6);
|
|
812
|
+
localHeader.writeUInt16LE(0, 8);
|
|
813
|
+
localHeader.writeUInt16LE(dosTime, 10);
|
|
814
|
+
localHeader.writeUInt16LE(dosDate, 12);
|
|
815
|
+
localHeader.writeUInt32LE(crc, 14);
|
|
816
|
+
localHeader.writeUInt32LE(data.length, 18);
|
|
817
|
+
localHeader.writeUInt32LE(data.length, 22);
|
|
818
|
+
localHeader.writeUInt16LE(nameBuf.length, 26);
|
|
819
|
+
localHeader.writeUInt16LE(0, 28);
|
|
820
|
+
localChunks.push(localHeader, nameBuf, data);
|
|
821
|
+
const centralHeader = Buffer.alloc(46);
|
|
822
|
+
centralHeader.writeUInt32LE(0x02014b50, 0);
|
|
823
|
+
centralHeader.writeUInt16LE(20, 4);
|
|
824
|
+
centralHeader.writeUInt16LE(20, 6);
|
|
825
|
+
centralHeader.writeUInt16LE(0, 8);
|
|
826
|
+
centralHeader.writeUInt16LE(0, 10);
|
|
827
|
+
centralHeader.writeUInt16LE(dosTime, 12);
|
|
828
|
+
centralHeader.writeUInt16LE(dosDate, 14);
|
|
829
|
+
centralHeader.writeUInt32LE(crc, 16);
|
|
830
|
+
centralHeader.writeUInt32LE(data.length, 20);
|
|
831
|
+
centralHeader.writeUInt32LE(data.length, 24);
|
|
832
|
+
centralHeader.writeUInt16LE(nameBuf.length, 28);
|
|
833
|
+
centralHeader.writeUInt16LE(0, 30);
|
|
834
|
+
centralHeader.writeUInt16LE(0, 32);
|
|
835
|
+
centralHeader.writeUInt16LE(0, 34);
|
|
836
|
+
centralHeader.writeUInt16LE(0, 36);
|
|
837
|
+
centralHeader.writeUInt32LE(0, 38);
|
|
838
|
+
centralHeader.writeUInt32LE(offset, 42);
|
|
839
|
+
centralChunks.push(centralHeader, nameBuf);
|
|
840
|
+
offset += localHeader.length + nameBuf.length + data.length;
|
|
841
|
+
}
|
|
842
|
+
const centralDirStart = offset;
|
|
843
|
+
const centralDirBuf = Buffer.concat(centralChunks);
|
|
844
|
+
const eocd = Buffer.alloc(22);
|
|
845
|
+
eocd.writeUInt32LE(0x06054b50, 0);
|
|
846
|
+
eocd.writeUInt16LE(0, 4);
|
|
847
|
+
eocd.writeUInt16LE(0, 6);
|
|
848
|
+
eocd.writeUInt16LE(files.length, 8);
|
|
849
|
+
eocd.writeUInt16LE(files.length, 10);
|
|
850
|
+
eocd.writeUInt32LE(centralDirBuf.length, 12);
|
|
851
|
+
eocd.writeUInt32LE(centralDirStart, 16);
|
|
852
|
+
eocd.writeUInt16LE(0, 20);
|
|
853
|
+
return Buffer.concat([...localChunks, centralDirBuf, eocd]);
|
|
854
|
+
};
|
|
855
|
+
export const resolveStickerBuffer = async (item, opts) => {
|
|
856
|
+
if (Buffer.isBuffer(item)) {
|
|
857
|
+
return item;
|
|
858
|
+
}
|
|
859
|
+
const media = typeof item === 'string' ? { url: item } : item;
|
|
860
|
+
const { stream } = await getStream(media, opts);
|
|
861
|
+
return toBuffer(stream);
|
|
862
|
+
};
|
|
863
|
+
export const getStatusCodeForMediaRetry = (code) => MEDIA_RETRY_STATUS_MAP[code];
|
|
891
864
|
const MEDIA_RETRY_STATUS_MAP = {
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
}
|
|
865
|
+
[proto.MediaRetryNotification.ResultType.SUCCESS]: 200,
|
|
866
|
+
[proto.MediaRetryNotification.ResultType.DECRYPTION_ERROR]: 412,
|
|
867
|
+
[proto.MediaRetryNotification.ResultType.NOT_FOUND]: 404,
|
|
868
|
+
[proto.MediaRetryNotification.ResultType.GENERAL_ERROR]: 418
|
|
869
|
+
};
|
|
870
|
+
//# sourceMappingURL=messages-media.js.map
|