@baileys-md/baileys 11.0.3 → 11.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/WAProto/index.js +4182 -13516
- 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/{lib/Signal/Group/sender-message-key.js → WASignalGroup/sender_message_key.js} +16 -4
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.js +71 -52
- package/lib/Defaults/{phonenumber-mcc.js → phonenumber-mcc.json} +1 -1
- package/lib/Signal/libsignal.js +61 -41
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.js +19 -3
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.js +42 -37
- package/lib/Socket/chats.js +187 -194
- package/lib/Socket/groups.js +90 -87
- package/lib/Socket/index.js +8 -7
- package/lib/Socket/messages-recv.js +335 -360
- package/lib/Socket/messages-send.js +279 -156
- package/lib/Socket/newsletter.js +213 -144
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.js +161 -128
- package/lib/Socket/usync.js +26 -19
- package/lib/Store/index.js +8 -0
- package/lib/Store/make-cache-manager-store.js +83 -0
- package/lib/{Utils → Store}/make-in-memory-store.js +27 -19
- package/lib/Store/make-mongo-store.js +567 -0
- package/lib/{Utils → Store}/make-ordered-dictionary.js +5 -2
- package/lib/{Utils → Store}/object-repository.js +4 -1
- package/lib/Types/Auth.js +2 -2
- package/lib/Types/Call.js +2 -2
- package/lib/Types/Chat.js +4 -8
- 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 +5 -3
- package/lib/Types/LabelAssociation.js +5 -3
- package/lib/Types/Message.js +7 -7
- package/lib/Types/Newsletter.js +17 -30
- package/lib/Types/Product.js +2 -2
- package/lib/Types/Signal.js +2 -2
- package/lib/Types/Socket.js +2 -3
- package/lib/Types/State.js +2 -2
- package/lib/Types/USync.js +2 -2
- package/lib/Types/index.js +31 -15
- package/lib/Utils/auth-utils.js +47 -31
- package/lib/Utils/baileys-event-stream.js +22 -15
- package/lib/Utils/business.js +69 -66
- package/lib/Utils/chat-utils.js +195 -200
- package/lib/Utils/crypto.js +85 -70
- package/lib/Utils/decode-wa-message.js +51 -46
- package/lib/Utils/event-buffer.js +46 -36
- package/lib/Utils/generics.js +188 -116
- package/lib/Utils/history.js +46 -37
- package/lib/Utils/index.js +33 -19
- package/lib/Utils/link-preview.js +55 -14
- package/lib/Utils/logger.js +7 -3
- package/lib/Utils/lt-hash.js +26 -23
- package/lib/Utils/make-mutex.js +10 -7
- package/lib/Utils/messages-media.js +368 -239
- package/lib/Utils/messages.js +510 -278
- package/lib/Utils/noise-handler.js +31 -22
- package/lib/Utils/process-message.js +148 -144
- package/lib/Utils/signal.js +64 -71
- package/lib/Utils/use-multi-file-auth-state.js +32 -14
- package/lib/Utils/validate-connection.js +115 -72
- package/lib/WABinary/constants.js +20 -1281
- package/lib/WABinary/decode.js +52 -15
- package/lib/WABinary/encode.js +48 -14
- package/lib/WABinary/generic-utils.js +39 -31
- package/lib/WABinary/index.js +21 -6
- package/lib/WABinary/jid-utils.js +40 -23
- package/lib/WABinary/types.js +2 -2
- package/lib/WAM/BinaryInfo.js +5 -2
- package/lib/WAM/constants.js +2366 -2257
- package/lib/WAM/encode.js +21 -17
- package/lib/WAM/index.js +19 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +11 -8
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +14 -11
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +12 -9
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +13 -9
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +22 -20
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +6 -3
- package/lib/WAUSync/Protocols/index.js +20 -5
- package/lib/WAUSync/USyncQuery.js +32 -34
- package/lib/WAUSync/USyncUser.js +5 -2
- package/lib/WAUSync/index.js +19 -4
- package/lib/index.js +33 -11
- package/package.json +61 -21
- package/WAProto/GenerateStatics.sh +0 -3
- package/WAProto/WAProto.proto +0 -4633
- package/WAProto/fix-imports.js +0 -29
- package/lib/Defaults/baileys-version.js +0 -1
- package/lib/Signal/Group/ciphertext-message.js +0 -12
- package/lib/Signal/Group/group-session-builder.js +0 -30
- package/lib/Signal/Group/group_cipher.js +0 -94
- package/lib/Signal/Group/index.js +0 -12
- package/lib/Signal/Group/keyhelper.js +0 -19
- package/lib/Signal/Group/queue-job.js +0 -54
- package/lib/Signal/Group/sender-chain-key.js +0 -32
- package/lib/Signal/Group/sender-key-distribution-message.js +0 -63
- package/lib/Signal/Group/sender-key-message.js +0 -67
- package/lib/Signal/Group/sender-key-name.js +0 -48
- package/lib/Signal/Group/sender-key-record.js +0 -50
- package/lib/Signal/Group/sender-key-state.js +0 -96
- package/lib/Socket/Client/types.js +0 -11
- package/lib/Socket/Client/websocket.js +0 -50
- package/lib/Socket/communities.js +0 -351
- package/lib/Socket/mex.js +0 -42
package/lib/Utils/index.js
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./generics"), exports);
|
|
18
|
+
__exportStar(require("./decode-wa-message"), exports);
|
|
19
|
+
__exportStar(require("./messages"), exports);
|
|
20
|
+
__exportStar(require("./messages-media"), exports);
|
|
21
|
+
__exportStar(require("./validate-connection"), exports);
|
|
22
|
+
__exportStar(require("./crypto"), exports);
|
|
23
|
+
__exportStar(require("./signal"), exports);
|
|
24
|
+
__exportStar(require("./noise-handler"), exports);
|
|
25
|
+
__exportStar(require("./history"), exports);
|
|
26
|
+
__exportStar(require("./chat-utils"), exports);
|
|
27
|
+
__exportStar(require("./lt-hash"), exports);
|
|
28
|
+
__exportStar(require("./auth-utils"), exports);
|
|
29
|
+
__exportStar(require("./baileys-event-stream"), exports);
|
|
30
|
+
__exportStar(require("./use-multi-file-auth-state"), exports);
|
|
31
|
+
__exportStar(require("./link-preview"), exports);
|
|
32
|
+
__exportStar(require("./event-buffer"), exports);
|
|
33
|
+
__exportStar(require("./process-message"), exports);
|
|
@@ -1,10 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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 () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.getUrlInfo = void 0;
|
|
37
|
+
const messages_1 = require("./messages");
|
|
38
|
+
const messages_media_1 = require("./messages-media");
|
|
3
39
|
const THUMBNAIL_WIDTH_PX = 192;
|
|
4
40
|
/** Fetches an image and generates a thumbnail for it */
|
|
5
41
|
const getCompressedJpegThumbnail = async (url, { thumbnailWidth, fetchOpts }) => {
|
|
6
|
-
const stream = await getHttpStream(url, fetchOpts);
|
|
7
|
-
const result = await extractImageThumb(stream, thumbnailWidth);
|
|
42
|
+
const stream = await (0, messages_media_1.getHttpStream)(url, fetchOpts);
|
|
43
|
+
const result = await (0, messages_media_1.extractImageThumb)(stream, thumbnailWidth);
|
|
8
44
|
return result;
|
|
9
45
|
};
|
|
10
46
|
/**
|
|
@@ -13,15 +49,16 @@ const getCompressedJpegThumbnail = async (url, { thumbnailWidth, fetchOpts }) =>
|
|
|
13
49
|
* @param text first matched URL in text
|
|
14
50
|
* @returns the URL info required to generate link preview
|
|
15
51
|
*/
|
|
16
|
-
|
|
52
|
+
const getUrlInfo = async (text, opts = {
|
|
17
53
|
thumbnailWidth: THUMBNAIL_WIDTH_PX,
|
|
18
54
|
fetchOpts: { timeout: 3000 }
|
|
19
55
|
}) => {
|
|
56
|
+
var _a;
|
|
20
57
|
try {
|
|
21
58
|
// retries
|
|
22
59
|
const retries = 0;
|
|
23
60
|
const maxRetry = 5;
|
|
24
|
-
const { getLinkPreview } = await
|
|
61
|
+
const { getLinkPreview } = await Promise.resolve().then(() => __importStar(require('link-preview-js')));
|
|
25
62
|
let previewLink = text;
|
|
26
63
|
if (!text.startsWith('https://') && !text.startsWith('http://')) {
|
|
27
64
|
previewLink = 'https://' + previewLink;
|
|
@@ -35,9 +72,9 @@ export const getUrlInfo = async (text, opts = {
|
|
|
35
72
|
if (retries >= maxRetry) {
|
|
36
73
|
return false;
|
|
37
74
|
}
|
|
38
|
-
if (forwardedURLObj.hostname === urlObj.hostname
|
|
39
|
-
forwardedURLObj.hostname === 'www.' + urlObj.hostname
|
|
40
|
-
'www.' + forwardedURLObj.hostname === urlObj.hostname) {
|
|
75
|
+
if (forwardedURLObj.hostname === urlObj.hostname
|
|
76
|
+
|| forwardedURLObj.hostname === 'www.' + urlObj.hostname
|
|
77
|
+
|| 'www.' + forwardedURLObj.hostname === urlObj.hostname) {
|
|
41
78
|
retries + 1;
|
|
42
79
|
return true;
|
|
43
80
|
}
|
|
@@ -57,20 +94,24 @@ export const getUrlInfo = async (text, opts = {
|
|
|
57
94
|
originalThumbnailUrl: image
|
|
58
95
|
};
|
|
59
96
|
if (opts.uploadImage) {
|
|
60
|
-
const { imageMessage } = await prepareWAMessageMedia({ image: { url: image } }, {
|
|
97
|
+
const { imageMessage } = await (0, messages_1.prepareWAMessageMedia)({ image: { url: image } }, {
|
|
61
98
|
upload: opts.uploadImage,
|
|
62
99
|
mediaTypeOverride: 'thumbnail-link',
|
|
63
100
|
options: opts.fetchOpts
|
|
64
101
|
});
|
|
65
|
-
urlInfo.jpegThumbnail = imageMessage
|
|
102
|
+
urlInfo.jpegThumbnail = (imageMessage === null || imageMessage === void 0 ? void 0 : imageMessage.jpegThumbnail)
|
|
103
|
+
? Buffer.from(imageMessage.jpegThumbnail)
|
|
104
|
+
: undefined;
|
|
66
105
|
urlInfo.highQualityThumbnail = imageMessage || undefined;
|
|
67
106
|
}
|
|
68
107
|
else {
|
|
69
108
|
try {
|
|
70
|
-
urlInfo.jpegThumbnail = image
|
|
109
|
+
urlInfo.jpegThumbnail = image
|
|
110
|
+
? (await getCompressedJpegThumbnail(image, opts)).buffer
|
|
111
|
+
: undefined;
|
|
71
112
|
}
|
|
72
113
|
catch (error) {
|
|
73
|
-
opts.logger
|
|
114
|
+
(_a = opts.logger) === null || _a === void 0 ? void 0 : _a.debug({ err: error.stack, url: previewLink }, 'error in generating thumbnail');
|
|
74
115
|
}
|
|
75
116
|
}
|
|
76
117
|
return urlInfo;
|
|
@@ -82,4 +123,4 @@ export const getUrlInfo = async (text, opts = {
|
|
|
82
123
|
}
|
|
83
124
|
}
|
|
84
125
|
};
|
|
85
|
-
|
|
126
|
+
exports.getUrlInfo = getUrlInfo;
|
package/lib/Utils/logger.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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()}"` });
|
package/lib/Utils/lt-hash.js
CHANGED
|
@@ -1,48 +1,51 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LT_HASH_ANTI_TAMPERING = void 0;
|
|
4
|
+
const crypto_1 = require("./crypto");
|
|
2
5
|
/**
|
|
3
6
|
* LT Hash is a summation based hash algorithm that maintains the integrity of a piece of data
|
|
4
7
|
* over a series of mutations. You can add/remove mutations and it'll return a hash equal to
|
|
5
8
|
* if the same series of mutations was made sequentially.
|
|
6
9
|
*/
|
|
7
10
|
const o = 128;
|
|
8
|
-
class
|
|
11
|
+
class d {
|
|
9
12
|
constructor(e) {
|
|
10
13
|
this.salt = e;
|
|
11
14
|
}
|
|
12
|
-
|
|
15
|
+
add(e, t) {
|
|
16
|
+
var r = this;
|
|
13
17
|
for (const item of t) {
|
|
14
|
-
e =
|
|
18
|
+
e = r._addSingle(e, item);
|
|
15
19
|
}
|
|
16
20
|
return e;
|
|
17
21
|
}
|
|
18
|
-
|
|
22
|
+
subtract(e, t) {
|
|
23
|
+
var r = this;
|
|
19
24
|
for (const item of t) {
|
|
20
|
-
e =
|
|
25
|
+
e = r._subtractSingle(e, item);
|
|
21
26
|
}
|
|
22
27
|
return e;
|
|
23
28
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
return
|
|
29
|
+
subtractThenAdd(e, t, r) {
|
|
30
|
+
var n = this;
|
|
31
|
+
return n.add(n.subtract(e, r), t);
|
|
27
32
|
}
|
|
28
33
|
async _addSingle(e, t) {
|
|
29
|
-
|
|
30
|
-
|
|
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));
|
|
31
37
|
}
|
|
32
38
|
async _subtractSingle(e, t) {
|
|
33
|
-
|
|
34
|
-
|
|
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));
|
|
35
42
|
}
|
|
36
|
-
performPointwiseWithOverflow(e, t,
|
|
37
|
-
const n = new DataView(e);
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
const s = new DataView(out);
|
|
41
|
-
for (let offset = 0; offset < n.byteLength; offset += 2) {
|
|
42
|
-
s.setUint16(offset, op(n.getUint16(offset, true), i.getUint16(offset, true)), true);
|
|
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);
|
|
43
47
|
}
|
|
44
|
-
return
|
|
48
|
+
return a;
|
|
45
49
|
}
|
|
46
50
|
}
|
|
47
|
-
|
|
48
|
-
//# sourceMappingURL=lt-hash.js.map
|
|
51
|
+
exports.LT_HASH_ANTI_TAMPERING = new d('WhatsApp Patch Integrity');
|
package/lib/Utils/make-mutex.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.makeKeyedMutex = exports.makeMutex = void 0;
|
|
4
|
+
const makeMutex = () => {
|
|
3
5
|
let task = Promise.resolve();
|
|
4
6
|
let taskTimeout;
|
|
5
7
|
return {
|
|
@@ -10,7 +12,7 @@ export const makeMutex = () => {
|
|
|
10
12
|
try {
|
|
11
13
|
await task;
|
|
12
14
|
}
|
|
13
|
-
catch { }
|
|
15
|
+
catch (_a) { }
|
|
14
16
|
try {
|
|
15
17
|
// execute the current task
|
|
16
18
|
const result = await code();
|
|
@@ -23,18 +25,19 @@ export const makeMutex = () => {
|
|
|
23
25
|
// we replace the existing task, appending the new piece of execution to it
|
|
24
26
|
// so the next task will have to wait for this one to finish
|
|
25
27
|
return task;
|
|
26
|
-
}
|
|
28
|
+
},
|
|
27
29
|
};
|
|
28
30
|
};
|
|
29
|
-
|
|
31
|
+
exports.makeMutex = makeMutex;
|
|
32
|
+
const makeKeyedMutex = () => {
|
|
30
33
|
const map = {};
|
|
31
34
|
return {
|
|
32
35
|
mutex(key, task) {
|
|
33
36
|
if (!map[key]) {
|
|
34
|
-
map[key] = makeMutex();
|
|
37
|
+
map[key] = (0, exports.makeMutex)();
|
|
35
38
|
}
|
|
36
39
|
return map[key].mutex(task);
|
|
37
40
|
}
|
|
38
41
|
};
|
|
39
42
|
};
|
|
40
|
-
|
|
43
|
+
exports.makeKeyedMutex = makeKeyedMutex;
|