@genuxofficial/baileys 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/WAProto/GenerateStatics.sh +4 -0
- package/WAProto/WAProto.proto +3344 -0
- package/WAProto/index.d.ts +37016 -0
- package/WAProto/index.js +101044 -0
- package/WASignalGroup/GroupProtocol.js +1697 -0
- package/WASignalGroup/ciphertext_message.js +16 -0
- package/WASignalGroup/group_cipher.js +120 -0
- package/WASignalGroup/group_session_builder.js +46 -0
- package/WASignalGroup/index.js +5 -0
- package/WASignalGroup/keyhelper.js +21 -0
- package/WASignalGroup/protobufs.js +3 -0
- package/WASignalGroup/queue_job.js +69 -0
- package/WASignalGroup/sender_chain_key.js +50 -0
- package/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/WASignalGroup/sender_key_message.js +92 -0
- package/WASignalGroup/sender_key_name.js +70 -0
- package/WASignalGroup/sender_key_record.js +56 -0
- package/WASignalGroup/sender_key_state.js +129 -0
- package/WASignalGroup/sender_message_key.js +39 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +53 -0
- package/lib/Defaults/index.js +106 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +152 -0
- package/lib/Socket/Client/index.d.ts +2 -0
- package/lib/Socket/Client/index.js +18 -0
- package/lib/Socket/Client/types.d.ts +17 -0
- package/lib/Socket/Client/types.js +13 -0
- package/lib/Socket/Client/websocket.d.ts +12 -0
- package/lib/Socket/Client/websocket.js +62 -0
- package/lib/Socket/business.d.ts +149 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +85 -0
- package/lib/Socket/chats.js +850 -0
- package/lib/Socket/groups.d.ts +124 -0
- package/lib/Socket/groups.js +314 -0
- package/lib/Socket/index.d.ts +149 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +136 -0
- package/lib/Socket/messages-recv.js +912 -0
- package/lib/Socket/messages-send.d.ts +130 -0
- package/lib/Socket/messages-send.js +673 -0
- package/lib/Socket/socket.d.ts +45 -0
- package/lib/Socket/socket.js +622 -0
- package/lib/Socket/usync.d.ts +38 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -0
- package/lib/Store/index.js +10 -0
- package/lib/Store/make-cache-manager-store.d.ts +14 -0
- package/lib/Store/make-cache-manager-store.js +83 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +420 -0
- package/lib/Store/make-ordered-dictionary.d.ts +13 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.d.ts +105 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.d.ts +13 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.d.ts +108 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +19 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +172 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +56 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +46 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.d.ts +29 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.d.ts +271 -0
- package/lib/Types/Message.js +9 -0
- package/lib/Types/Product.d.ts +78 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.d.ts +57 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.d.ts +118 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.d.ts +27 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.d.ts +25 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.d.ts +63 -0
- package/lib/Types/index.js +41 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +200 -0
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +22 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chat-utils.d.ts +72 -0
- package/lib/Utils/chat-utils.js +745 -0
- package/lib/Utils/crypto.d.ts +42 -0
- package/lib/Utils/crypto.js +181 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +205 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +520 -0
- package/lib/Utils/generics.d.ts +94 -0
- package/lib/Utils/generics.js +433 -0
- package/lib/Utils/history.d.ts +19 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.d.ts +17 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.d.ts +21 -0
- package/lib/Utils/link-preview.js +116 -0
- package/lib/Utils/logger.d.ts +11 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.d.ts +7 -0
- package/lib/Utils/make-mutex.js +44 -0
- package/lib/Utils/messages-media.d.ts +108 -0
- package/lib/Utils/messages-media.js +667 -0
- package/lib/Utils/messages.d.ts +78 -0
- package/lib/Utils/messages.js +760 -0
- package/lib/Utils/noise-handler.d.ts +21 -0
- package/lib/Utils/noise-handler.js +150 -0
- package/lib/Utils/process-message.d.ts +42 -0
- package/lib/Utils/process-message.js +373 -0
- package/lib/Utils/signal.d.ts +33 -0
- package/lib/Utils/signal.js +153 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-multi-file-auth-state.js +94 -0
- package/lib/Utils/validate-connection.d.ts +10 -0
- package/lib/Utils/validate-connection.js +175 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +40 -0
- package/lib/WABinary/decode.d.ts +8 -0
- package/lib/WABinary/decode.js +254 -0
- package/lib/WABinary/encode.d.ts +4 -0
- package/lib/WABinary/encode.js +234 -0
- package/lib/WABinary/generic-utils.d.ts +16 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.d.ts +31 -0
- package/lib/WABinary/jid-utils.js +62 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +18 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +39 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +4 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +26 -0
- package/lib/WAUSync/USyncQuery.js +79 -0
- package/lib/WAUSync/USyncUser.d.ts +10 -0
- package/lib/WAUSync/USyncUser.js +22 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.d.ts +12 -0
- package/lib/index.js +31 -0
- package/package.json +104 -0
@@ -0,0 +1,116 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
26
|
+
exports.getUrlInfo = void 0;
|
27
|
+
const messages_1 = require("./messages");
|
28
|
+
const messages_media_1 = require("./messages-media");
|
29
|
+
const THUMBNAIL_WIDTH_PX = 192;
|
30
|
+
/** Fetches an image and generates a thumbnail for it */
|
31
|
+
const getCompressedJpegThumbnail = async (url, { thumbnailWidth, fetchOpts }) => {
|
32
|
+
const stream = await (0, messages_media_1.getHttpStream)(url, fetchOpts);
|
33
|
+
const result = await (0, messages_media_1.extractImageThumb)(stream, thumbnailWidth);
|
34
|
+
return result;
|
35
|
+
};
|
36
|
+
/**
|
37
|
+
* Given a piece of text, checks for any URL present, generates link preview for the same and returns it
|
38
|
+
* Return undefined if the fetch failed or no URL was found
|
39
|
+
* @param text first matched URL in text
|
40
|
+
* @returns the URL info required to generate link preview
|
41
|
+
*/
|
42
|
+
const getUrlInfo = async (text, opts = {
|
43
|
+
thumbnailWidth: THUMBNAIL_WIDTH_PX,
|
44
|
+
fetchOpts: { timeout: 3000 }
|
45
|
+
}) => {
|
46
|
+
var _a;
|
47
|
+
try {
|
48
|
+
// retries
|
49
|
+
const retries = 0;
|
50
|
+
const maxRetry = 5;
|
51
|
+
const { getLinkPreview } = await Promise.resolve().then(() => __importStar(require('link-preview-js')));
|
52
|
+
let previewLink = text;
|
53
|
+
if (!text.startsWith('https://') && !text.startsWith('http://')) {
|
54
|
+
previewLink = 'https://' + previewLink;
|
55
|
+
}
|
56
|
+
const info = await getLinkPreview(previewLink, {
|
57
|
+
...opts.fetchOpts,
|
58
|
+
followRedirects: 'follow',
|
59
|
+
handleRedirects: (baseURL, forwardedURL) => {
|
60
|
+
const urlObj = new URL(baseURL);
|
61
|
+
const forwardedURLObj = new URL(forwardedURL);
|
62
|
+
if (retries >= maxRetry) {
|
63
|
+
return false;
|
64
|
+
}
|
65
|
+
if (forwardedURLObj.hostname === urlObj.hostname
|
66
|
+
|| forwardedURLObj.hostname === 'www.' + urlObj.hostname
|
67
|
+
|| 'www.' + forwardedURLObj.hostname === urlObj.hostname) {
|
68
|
+
retries + 1;
|
69
|
+
return true;
|
70
|
+
}
|
71
|
+
else {
|
72
|
+
return false;
|
73
|
+
}
|
74
|
+
},
|
75
|
+
headers: opts.fetchOpts
|
76
|
+
});
|
77
|
+
if (info && 'title' in info && info.title) {
|
78
|
+
const [image] = info.images;
|
79
|
+
const urlInfo = {
|
80
|
+
'canonical-url': info.url,
|
81
|
+
'matched-text': text,
|
82
|
+
title: info.title,
|
83
|
+
description: info.description,
|
84
|
+
originalThumbnailUrl: image
|
85
|
+
};
|
86
|
+
if (opts.uploadImage) {
|
87
|
+
const { imageMessage } = await (0, messages_1.prepareWAMessageMedia)({ image: { url: image } }, {
|
88
|
+
upload: opts.uploadImage,
|
89
|
+
mediaTypeOverride: 'thumbnail-link',
|
90
|
+
options: opts.fetchOpts
|
91
|
+
});
|
92
|
+
urlInfo.jpegThumbnail = (imageMessage === null || imageMessage === void 0 ? void 0 : imageMessage.jpegThumbnail)
|
93
|
+
? Buffer.from(imageMessage.jpegThumbnail)
|
94
|
+
: undefined;
|
95
|
+
urlInfo.highQualityThumbnail = imageMessage || undefined;
|
96
|
+
}
|
97
|
+
else {
|
98
|
+
try {
|
99
|
+
urlInfo.jpegThumbnail = image
|
100
|
+
? (await getCompressedJpegThumbnail(image, opts)).buffer
|
101
|
+
: undefined;
|
102
|
+
}
|
103
|
+
catch (error) {
|
104
|
+
(_a = opts.logger) === null || _a === void 0 ? void 0 : _a.debug({ err: error.stack, url: previewLink }, 'error in generating thumbnail');
|
105
|
+
}
|
106
|
+
}
|
107
|
+
return urlInfo;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
catch (error) {
|
111
|
+
if (!error.message.includes('receive a valid')) {
|
112
|
+
throw error;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
};
|
116
|
+
exports.getUrlInfo = getUrlInfo;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export interface ILogger {
|
2
|
+
level: string;
|
3
|
+
child(obj: Record<string, unknown>): ILogger;
|
4
|
+
trace(obj: unknown, msg?: string): any;
|
5
|
+
debug(obj: unknown, msg?: string): any;
|
6
|
+
info(obj: unknown, msg?: string): any;
|
7
|
+
warn(obj: unknown, msg?: string): any;
|
8
|
+
error(obj: unknown, msg?: string): any;
|
9
|
+
}
|
10
|
+
declare const _default: import("pino").Logger<never, boolean>;
|
11
|
+
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const pino_1 = __importDefault(require("pino"));
|
7
|
+
exports.default = (0, pino_1.default)({ timestamp: () => `,"time":"${new Date().toJSON()}"` });
|
@@ -0,0 +1,12 @@
|
|
1
|
+
declare class d {
|
2
|
+
salt: string;
|
3
|
+
constructor(e: string);
|
4
|
+
add(e: any, t: any): any;
|
5
|
+
subtract(e: any, t: any): any;
|
6
|
+
subtractThenAdd(e: any, t: any, r: any): any;
|
7
|
+
_addSingle(e: any, t: any): Promise<ArrayBuffer>;
|
8
|
+
_subtractSingle(e: any, t: any): Promise<ArrayBuffer>;
|
9
|
+
performPointwiseWithOverflow(e: any, t: any, r: any): ArrayBuffer;
|
10
|
+
}
|
11
|
+
export declare const LT_HASH_ANTI_TAMPERING: d;
|
12
|
+
export {};
|
@@ -0,0 +1,51 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.LT_HASH_ANTI_TAMPERING = void 0;
|
4
|
+
const crypto_1 = require("./crypto");
|
5
|
+
/**
|
6
|
+
* LT Hash is a summation based hash algorithm that maintains the integrity of a piece of data
|
7
|
+
* over a series of mutations. You can add/remove mutations and it'll return a hash equal to
|
8
|
+
* if the same series of mutations was made sequentially.
|
9
|
+
*/
|
10
|
+
const o = 128;
|
11
|
+
class d {
|
12
|
+
constructor(e) {
|
13
|
+
this.salt = e;
|
14
|
+
}
|
15
|
+
add(e, t) {
|
16
|
+
var r = this;
|
17
|
+
for (const item of t) {
|
18
|
+
e = r._addSingle(e, item);
|
19
|
+
}
|
20
|
+
return e;
|
21
|
+
}
|
22
|
+
subtract(e, t) {
|
23
|
+
var r = this;
|
24
|
+
for (const item of t) {
|
25
|
+
e = r._subtractSingle(e, item);
|
26
|
+
}
|
27
|
+
return e;
|
28
|
+
}
|
29
|
+
subtractThenAdd(e, t, r) {
|
30
|
+
var n = this;
|
31
|
+
return n.add(n.subtract(e, r), t);
|
32
|
+
}
|
33
|
+
async _addSingle(e, t) {
|
34
|
+
var r = this;
|
35
|
+
const n = new Uint8Array(await (0, crypto_1.hkdf)(Buffer.from(t), o, { info: r.salt })).buffer;
|
36
|
+
return r.performPointwiseWithOverflow(await e, n, ((e, t) => e + t));
|
37
|
+
}
|
38
|
+
async _subtractSingle(e, t) {
|
39
|
+
var r = this;
|
40
|
+
const n = new Uint8Array(await (0, crypto_1.hkdf)(Buffer.from(t), o, { info: r.salt })).buffer;
|
41
|
+
return r.performPointwiseWithOverflow(await e, n, ((e, t) => e - t));
|
42
|
+
}
|
43
|
+
performPointwiseWithOverflow(e, t, r) {
|
44
|
+
const n = new DataView(e), i = new DataView(t), a = new ArrayBuffer(n.byteLength), s = new DataView(a);
|
45
|
+
for (let e = 0; e < n.byteLength; e += 2) {
|
46
|
+
s.setUint16(e, r(n.getUint16(e, !0), i.getUint16(e, !0)), !0);
|
47
|
+
}
|
48
|
+
return a;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
exports.LT_HASH_ANTI_TAMPERING = new d('WhatsApp Patch Integrity');
|
@@ -0,0 +1,44 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.makeKeyedMutex = exports.makeMutex = void 0;
|
4
|
+
const makeMutex = () => {
|
5
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
6
|
+
let task = Promise.resolve();
|
7
|
+
let taskTimeout;
|
8
|
+
return {
|
9
|
+
mutex(code) {
|
10
|
+
task = (async () => {
|
11
|
+
// wait for the previous task to complete
|
12
|
+
// if there is an error, we swallow so as to not block the queue
|
13
|
+
try {
|
14
|
+
await task;
|
15
|
+
}
|
16
|
+
catch (_a) { }
|
17
|
+
try {
|
18
|
+
// execute the current task
|
19
|
+
const result = await code();
|
20
|
+
return result;
|
21
|
+
}
|
22
|
+
finally {
|
23
|
+
clearTimeout(taskTimeout);
|
24
|
+
}
|
25
|
+
})();
|
26
|
+
// we replace the existing task, appending the new piece of execution to it
|
27
|
+
// so the next task will have to wait for this one to finish
|
28
|
+
return task;
|
29
|
+
},
|
30
|
+
};
|
31
|
+
};
|
32
|
+
exports.makeMutex = makeMutex;
|
33
|
+
const makeKeyedMutex = () => {
|
34
|
+
const map = {};
|
35
|
+
return {
|
36
|
+
mutex(key, task) {
|
37
|
+
if (!map[key]) {
|
38
|
+
map[key] = (0, exports.makeMutex)();
|
39
|
+
}
|
40
|
+
return map[key].mutex(task);
|
41
|
+
}
|
42
|
+
};
|
43
|
+
};
|
44
|
+
exports.makeKeyedMutex = makeKeyedMutex;
|
@@ -0,0 +1,108 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
/// <reference types="node" />
|
3
|
+
/// <reference types="node" />
|
4
|
+
/// <reference types="node" />
|
5
|
+
import { Boom } from '@hapi/boom';
|
6
|
+
import { AxiosRequestConfig } from 'axios';
|
7
|
+
import { Readable, Transform } from 'stream';
|
8
|
+
import { URL } from 'url';
|
9
|
+
import { proto } from '../../WAProto';
|
10
|
+
import { DownloadableMessage, MediaConnInfo, MediaDecryptionKeyInfo, MediaType, SocketConfig, WAMediaUpload, WAMediaUploadFunction, WAMessageContent } from '../Types';
|
11
|
+
import { BinaryNode } from '../WABinary';
|
12
|
+
import { ILogger } from './logger';
|
13
|
+
export declare const hkdfInfoKey: (type: MediaType) => string;
|
14
|
+
/** generates all the keys required to encrypt/decrypt & sign a media message */
|
15
|
+
export declare function getMediaKeys(buffer: Uint8Array | string | null | undefined, mediaType: MediaType): Promise<MediaDecryptionKeyInfo>;
|
16
|
+
export declare const extractImageThumb: (bufferOrFilePath: Readable | Buffer | string, width?: number) => Promise<{
|
17
|
+
buffer: Buffer;
|
18
|
+
original: {
|
19
|
+
width: number | undefined;
|
20
|
+
height: number | undefined;
|
21
|
+
};
|
22
|
+
}>;
|
23
|
+
export declare const encodeBase64EncodedStringForUpload: (b64: string) => string;
|
24
|
+
export declare const generateProfilePicture: (mediaUpload: WAMediaUpload) => Promise<{
|
25
|
+
img: Buffer;
|
26
|
+
}>;
|
27
|
+
/** gets the SHA256 of the given media message */
|
28
|
+
export declare const mediaMessageSHA256B64: (message: WAMessageContent) => string | null | undefined;
|
29
|
+
export declare function getAudioDuration(buffer: Buffer | string | Readable): Promise<number | undefined>;
|
30
|
+
/**
|
31
|
+
referenced from and modifying https://github.com/wppconnect-team/wa-js/blob/main/src/chat/functions/prepareAudioWaveform.ts
|
32
|
+
*/
|
33
|
+
export declare function getAudioWaveform(buffer: Buffer | string | Readable, logger?: ILogger): Promise<Uint8Array | undefined>;
|
34
|
+
export declare const toReadable: (buffer: Buffer) => Readable;
|
35
|
+
export declare const toBuffer: (stream: Readable) => Promise<Buffer>;
|
36
|
+
export declare const getStream: (item: WAMediaUpload, opts?: AxiosRequestConfig) => Promise<{
|
37
|
+
readonly stream: Readable;
|
38
|
+
readonly type: "buffer";
|
39
|
+
} | {
|
40
|
+
readonly stream: Readable;
|
41
|
+
readonly type: "readable";
|
42
|
+
} | {
|
43
|
+
readonly stream: Readable;
|
44
|
+
readonly type: "remote";
|
45
|
+
} | {
|
46
|
+
readonly stream: import("fs").ReadStream;
|
47
|
+
readonly type: "file";
|
48
|
+
}>;
|
49
|
+
/** generates a thumbnail for a given media, if required */
|
50
|
+
export declare function generateThumbnail(file: string, mediaType: 'video' | 'image', options: {
|
51
|
+
logger?: ILogger;
|
52
|
+
}): Promise<{
|
53
|
+
thumbnail: string | undefined;
|
54
|
+
originalImageDimensions: {
|
55
|
+
width: number;
|
56
|
+
height: number;
|
57
|
+
} | undefined;
|
58
|
+
}>;
|
59
|
+
export declare const getHttpStream: (url: string | URL, options?: AxiosRequestConfig & {
|
60
|
+
isStream?: true;
|
61
|
+
}) => Promise<Readable>;
|
62
|
+
type EncryptedStreamOptions = {
|
63
|
+
saveOriginalFileIfRequired?: boolean;
|
64
|
+
logger?: ILogger;
|
65
|
+
opts?: AxiosRequestConfig;
|
66
|
+
};
|
67
|
+
export declare const encryptedStream: (media: WAMediaUpload, mediaType: MediaType, { logger, saveOriginalFileIfRequired, opts }?: EncryptedStreamOptions) => Promise<{
|
68
|
+
mediaKey: Buffer;
|
69
|
+
encWriteStream: Readable;
|
70
|
+
bodyPath: string | undefined;
|
71
|
+
mac: Buffer;
|
72
|
+
fileEncSha256: Buffer;
|
73
|
+
fileSha256: Buffer;
|
74
|
+
fileLength: number;
|
75
|
+
didSaveToTmpPath: boolean;
|
76
|
+
}>;
|
77
|
+
export type MediaDownloadOptions = {
|
78
|
+
startByte?: number;
|
79
|
+
endByte?: number;
|
80
|
+
options?: AxiosRequestConfig<{}>;
|
81
|
+
};
|
82
|
+
export declare const getUrlFromDirectPath: (directPath: string) => string;
|
83
|
+
export declare const downloadContentFromMessage: ({ mediaKey, directPath, url }: DownloadableMessage, type: MediaType, opts?: MediaDownloadOptions) => Promise<Transform>;
|
84
|
+
/**
|
85
|
+
* Decrypts and downloads an AES256-CBC encrypted file given the keys.
|
86
|
+
* Assumes the SHA256 of the plaintext is appended to the end of the ciphertext
|
87
|
+
* */
|
88
|
+
export declare const downloadEncryptedContent: (downloadUrl: string, { cipherKey, iv }: MediaDecryptionKeyInfo, { startByte, endByte, options }?: MediaDownloadOptions) => Promise<Transform>;
|
89
|
+
export declare function extensionForMediaMessage(message: WAMessageContent): string;
|
90
|
+
export declare const getWAUploadToServer: ({ customUploadHosts, fetchAgent, logger, options }: SocketConfig, refreshMediaConn: (force: boolean) => Promise<MediaConnInfo>) => WAMediaUploadFunction;
|
91
|
+
/**
|
92
|
+
* Generate a binary node that will request the phone to re-upload the media & return the newly uploaded URL
|
93
|
+
*/
|
94
|
+
export declare const encryptMediaRetryRequest: (key: proto.IMessageKey, mediaKey: Buffer | Uint8Array, meId: string) => Promise<BinaryNode>;
|
95
|
+
export declare const decodeMediaRetryNode: (node: BinaryNode) => {
|
96
|
+
key: proto.IMessageKey;
|
97
|
+
media?: {
|
98
|
+
ciphertext: Uint8Array;
|
99
|
+
iv: Uint8Array;
|
100
|
+
} | undefined;
|
101
|
+
error?: Boom<any> | undefined;
|
102
|
+
};
|
103
|
+
export declare const decryptMediaRetryData: ({ ciphertext, iv }: {
|
104
|
+
ciphertext: Uint8Array;
|
105
|
+
iv: Uint8Array;
|
106
|
+
}, mediaKey: Uint8Array, msgId: string) => Promise<proto.MediaRetryNotification>;
|
107
|
+
export declare const getStatusCodeForMediaRetry: (code: number) => any;
|
108
|
+
export {};
|