@alannxd/baileys 6.0.5 → 6.0.6
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/WAProto/fix-import.js +29 -0
- package/WAProto/index.js +160 -201
- package/engine-requirements.js +1 -1
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +15 -37
- package/lib/Defaults/index.js +136 -119
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/Group/ciphertext-message.d.ts +0 -1
- package/lib/Signal/Group/ciphertext-message.js +5 -2
- package/lib/Signal/Group/group-session-builder.d.ts +3 -4
- package/lib/Signal/Group/group-session-builder.js +41 -7
- package/lib/Signal/Group/group_cipher.d.ts +4 -4
- package/lib/Signal/Group/group_cipher.js +51 -37
- package/lib/Signal/Group/index.d.ts +11 -12
- package/lib/Signal/Group/index.js +57 -12
- package/lib/Signal/Group/keyhelper.d.ts +1 -2
- package/lib/Signal/Group/keyhelper.js +44 -7
- package/lib/Signal/Group/queue-job.d.ts +1 -0
- package/lib/Signal/Group/queue-job.js +57 -0
- package/lib/Signal/Group/sender-chain-key.d.ts +2 -3
- package/lib/Signal/Group/sender-chain-key.js +15 -7
- package/lib/Signal/Group/sender-key-distribution-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-distribution-message.js +11 -8
- package/lib/Signal/Group/sender-key-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-message.js +12 -9
- package/lib/Signal/Group/sender-key-name.d.ts +0 -1
- package/lib/Signal/Group/sender-key-name.js +5 -2
- package/lib/Signal/Group/sender-key-record.d.ts +2 -3
- package/lib/Signal/Group/sender-key-record.js +21 -9
- package/lib/Signal/Group/sender-key-state.d.ts +6 -7
- package/lib/Signal/Group/sender-key-state.js +42 -27
- package/lib/Signal/Group/sender-message-key.d.ts +0 -1
- package/lib/Signal/Group/sender-message-key.js +7 -4
- package/lib/Signal/libsignal.d.ts +3 -5
- package/lib/Signal/libsignal.js +90 -347
- package/lib/Socket/Client/{types.d.ts → abstract-socket-client.d.ts} +5 -4
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -3
- package/lib/Socket/Client/index.js +19 -3
- package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/{websocket.d.ts → web-socket-client.d.ts} +2 -3
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +108 -154
- package/lib/Socket/business.js +43 -162
- package/lib/Socket/chats.d.ts +239 -96
- package/lib/Socket/chats.js +427 -627
- package/lib/Socket/communities.d.ts +146 -239
- package/lib/Socket/communities.js +80 -90
- package/lib/Socket/groups.d.ts +57 -104
- package/lib/Socket/groups.js +161 -154
- package/lib/Socket/index.d.ts +115 -202
- package/lib/Socket/index.js +10 -11
- package/lib/Socket/luxu.d.ts +266 -22
- package/lib/Socket/luxu.js +465 -422
- package/lib/Socket/messages-recv.d.ts +84 -136
- package/lib/Socket/messages-recv.js +615 -1421
- package/lib/Socket/messages-send.d.ts +126 -142
- package/lib/Socket/messages-send.js +671 -878
- package/lib/Socket/newsletter.d.ts +85 -121
- package/lib/Socket/newsletter.js +272 -147
- package/lib/Socket/registration.d.ts +267 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +19 -34
- package/lib/Socket/socket.js +313 -544
- package/lib/Socket/usync.d.ts +36 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -10
- package/lib/Store/index.js +10 -10
- package/lib/Store/make-cache-manager-store.d.ts +11 -17
- package/lib/Store/make-cache-manager-store.js +41 -43
- package/lib/Store/make-in-memory-store.d.ts +118 -39
- package/lib/Store/make-in-memory-store.js +341 -112
- package/lib/Store/make-ordered-dictionary.d.ts +10 -11
- package/lib/Store/make-ordered-dictionary.js +20 -14
- package/lib/Store/object-repository.d.ts +9 -10
- package/lib/Store/object-repository.js +6 -11
- package/lib/Types/Auth.d.ts +12 -19
- package/lib/Types/Auth.js +2 -2
- package/lib/Types/Call.d.ts +1 -3
- package/lib/Types/Call.js +2 -2
- package/lib/Types/Chat.d.ts +13 -35
- package/lib/Types/Chat.js +4 -8
- package/lib/Types/Contact.d.ts +1 -8
- package/lib/Types/Contact.js +2 -2
- package/lib/Types/Events.d.ts +17 -116
- package/lib/Types/Events.js +2 -2
- package/lib/Types/GroupMetadata.d.ts +5 -21
- package/lib/Types/GroupMetadata.js +2 -2
- package/lib/Types/Label.d.ts +0 -12
- package/lib/Types/Label.js +5 -3
- package/lib/Types/LabelAssociation.d.ts +0 -1
- package/lib/Types/LabelAssociation.js +5 -3
- package/lib/Types/Message.d.ts +58 -105
- package/lib/Types/Message.js +9 -11
- package/lib/Types/Newsletter.d.ts +103 -0
- package/lib/Types/Newsletter.js +38 -0
- package/lib/Types/Product.d.ts +1 -2
- package/lib/Types/Product.js +2 -2
- package/lib/Types/Signal.d.ts +2 -32
- package/lib/Types/Signal.js +2 -2
- package/lib/Types/Socket.d.ts +25 -50
- package/lib/Types/Socket.js +2 -3
- package/lib/Types/State.d.ts +2 -72
- package/lib/Types/State.js +2 -56
- package/lib/Types/USync.d.ts +2 -3
- package/lib/Types/USync.js +2 -2
- package/lib/Types/index.d.ts +14 -22
- package/lib/Types/index.js +31 -15
- package/lib/Utils/auth-utils.d.ts +6 -12
- package/lib/Utils/auth-utils.js +143 -239
- 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 +2 -3
- package/lib/Utils/business.js +69 -66
- package/lib/Utils/chat-utils.d.ts +23 -52
- package/lib/Utils/chat-utils.js +253 -396
- package/lib/Utils/crypto.d.ts +22 -18
- package/lib/Utils/crypto.js +90 -57
- package/lib/Utils/decode-wa-message.d.ts +8 -55
- package/lib/Utils/decode-wa-message.js +84 -203
- package/lib/Utils/event-buffer.d.ts +8 -9
- package/lib/Utils/event-buffer.js +77 -185
- package/lib/Utils/generics.d.ts +29 -28
- package/lib/Utils/generics.js +210 -180
- package/lib/Utils/history.d.ts +9 -18
- package/lib/Utils/history.js +55 -93
- package/lib/Utils/index.d.ts +17 -22
- package/lib/Utils/index.js +33 -22
- package/lib/Utils/link-preview.d.ts +5 -5
- package/lib/Utils/link-preview.js +24 -16
- package/lib/Utils/logger.d.ts +3 -11
- package/lib/Utils/logger.js +7 -3
- package/lib/Utils/lt-hash.d.ts +12 -8
- package/lib/Utils/lt-hash.js +46 -3
- package/lib/Utils/make-mutex.d.ts +2 -4
- package/lib/Utils/make-mutex.js +34 -24
- package/lib/Utils/messages-media.d.ts +44 -61
- package/lib/Utils/messages-media.js +482 -451
- package/lib/Utils/messages.d.ts +18 -32
- package/lib/Utils/messages.js +369 -458
- package/lib/Utils/noise-handler.d.ts +14 -13
- package/lib/Utils/noise-handler.js +99 -145
- package/lib/Utils/process-message.d.ts +12 -31
- package/lib/Utils/process-message.js +150 -459
- package/lib/Utils/signal.d.ts +5 -20
- package/lib/Utils/signal.js +72 -120
- package/lib/Utils/use-multi-file-auth-state.d.ts +2 -2
- package/lib/Utils/use-multi-file-auth-state.js +27 -29
- package/lib/Utils/validate-connection.d.ts +7 -7
- package/lib/Utils/validate-connection.js +99 -73
- package/lib/WABinary/constants.d.ts +27 -25
- package/lib/WABinary/constants.js +20 -1281
- package/lib/WABinary/decode.d.ts +5 -5
- package/lib/WABinary/decode.js +42 -52
- package/lib/WABinary/encode.d.ts +3 -3
- package/lib/WABinary/encode.js +155 -110
- package/lib/WABinary/generic-utils.d.ts +7 -8
- package/lib/WABinary/generic-utils.js +49 -48
- package/lib/WABinary/index.d.ts +5 -6
- package/lib/WABinary/index.js +21 -6
- package/lib/WABinary/jid-utils.d.ts +8 -25
- package/lib/WABinary/jid-utils.js +40 -74
- package/lib/WABinary/types.d.ts +1 -2
- package/lib/WABinary/types.js +2 -2
- package/lib/WAM/BinaryInfo.d.ts +11 -3
- package/lib/WAM/BinaryInfo.js +5 -2
- package/lib/WAM/constants.d.ts +3 -5
- package/lib/WAM/constants.js +11958 -19461
- package/lib/WAM/encode.d.ts +3 -3
- package/lib/WAM/encode.js +22 -17
- package/lib/WAM/index.d.ts +3 -4
- package/lib/WAM/index.js +19 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +13 -33
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +14 -11
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +12 -9
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +13 -9
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +22 -20
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +3 -5
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +8 -13
- package/lib/WAUSync/Protocols/index.d.ts +4 -6
- package/lib/WAUSync/Protocols/index.js +20 -6
- package/lib/WAUSync/USyncQuery.d.ts +4 -6
- package/lib/WAUSync/USyncQuery.js +35 -44
- package/lib/WAUSync/USyncUser.d.ts +5 -10
- package/lib/WAUSync/USyncUser.js +5 -10
- package/lib/WAUSync/index.js +19 -4
- package/lib/index.d.ts +9 -10
- package/lib/index.js +34 -12
- package/package.json +50 -83
- package/WAProto/GenerateStatics.sh +0 -3
- package/WAProto/WAProto.proto +0 -5479
- package/WAProto/fix-imports.js +0 -85
- package/WAProto/index.d.ts +0 -14017
- package/lib/Signal/lid-mapping.d.ts +0 -23
- package/lib/Signal/lid-mapping.js +0 -277
- package/lib/Socket/Client/types.js +0 -11
- package/lib/Socket/Client/websocket.js +0 -54
- package/lib/Socket/mex.d.ts +0 -3
- package/lib/Socket/mex.js +0 -42
- package/lib/Store/keyed-db.d.ts +0 -22
- package/lib/Store/keyed-db.js +0 -108
- package/lib/Types/Bussines.d.ts +0 -25
- package/lib/Types/Bussines.js +0 -2
- package/lib/Types/Mex.d.ts +0 -141
- package/lib/Types/Mex.js +0 -37
- package/lib/Utils/browser-utils.d.ts +0 -4
- package/lib/Utils/browser-utils.js +0 -28
- package/lib/Utils/companion-reg-client-utils.d.ts +0 -17
- package/lib/Utils/companion-reg-client-utils.js +0 -35
- package/lib/Utils/identity-change-handler.d.ts +0 -44
- package/lib/Utils/identity-change-handler.js +0 -50
- package/lib/Utils/message-retry-manager.d.ts +0 -115
- package/lib/Utils/message-retry-manager.js +0 -265
- package/lib/Utils/offline-node-processor.d.ts +0 -17
- package/lib/Utils/offline-node-processor.js +0 -40
- package/lib/Utils/pre-key-manager.d.ts +0 -28
- package/lib/Utils/pre-key-manager.js +0 -106
- package/lib/Utils/reporting-utils.d.ts +0 -11
- package/lib/Utils/reporting-utils.js +0 -258
- package/lib/Utils/stanza-ack.d.ts +0 -11
- package/lib/Utils/stanza-ack.js +0 -38
- package/lib/Utils/sync-action-utils.d.ts +0 -19
- package/lib/Utils/sync-action-utils.js +0 -49
- package/lib/Utils/tc-token-utils.d.ts +0 -37
- package/lib/Utils/tc-token-utils.js +0 -163
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +0 -10
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +0 -25
- package/lib/WAUSync/index.d.ts +0 -4
package/lib/WABinary/decode.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare const
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import type { BinaryNode, BinaryNodeCodingOptions } from './types';
|
|
3
|
+
export declare const decompressingIfRequired: (buffer: Buffer) => Buffer;
|
|
4
|
+
export declare const decodeDecompressedBinaryNode: (buffer: Buffer, opts: Pick<BinaryNodeCodingOptions, 'DOUBLE_BYTE_TOKENS' | 'SINGLE_BYTE_TOKENS' | 'TAGS'>, indexRef?: {
|
|
4
5
|
index: number;
|
|
5
6
|
}) => BinaryNode;
|
|
6
|
-
export declare const decodeBinaryNode: (buff: Buffer) =>
|
|
7
|
-
//# sourceMappingURL=decode.d.ts.map
|
|
7
|
+
export declare const decodeBinaryNode: (buff: Buffer) => BinaryNode;
|
package/lib/WABinary/decode.js
CHANGED
|
@@ -1,19 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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.decodeBinaryNode = exports.decodeDecompressedBinaryNode = exports.decompressingIfRequired = void 0;
|
|
27
|
+
const zlib_1 = require("zlib");
|
|
28
|
+
const constants = __importStar(require("./constants"));
|
|
29
|
+
const jid_utils_1 = require("./jid-utils");
|
|
30
|
+
const decompressingIfRequired = (buffer) => {
|
|
7
31
|
if (2 & buffer.readUInt8()) {
|
|
8
|
-
buffer =
|
|
32
|
+
buffer = (0, zlib_1.inflateSync)(buffer.slice(1));
|
|
9
33
|
}
|
|
10
|
-
else {
|
|
11
|
-
// nodes with no compression have a 0x00 prefix, we remove that
|
|
34
|
+
else { // nodes with no compression have a 0x00 prefix, we remove that
|
|
12
35
|
buffer = buffer.slice(1);
|
|
13
36
|
}
|
|
14
37
|
return buffer;
|
|
15
38
|
};
|
|
16
|
-
|
|
39
|
+
exports.decompressingIfRequired = decompressingIfRequired;
|
|
40
|
+
const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0 }) => {
|
|
17
41
|
const { DOUBLE_BYTE_TOKENS, SINGLE_BYTE_TOKENS, TAGS } = opts;
|
|
18
42
|
const checkEOS = (length) => {
|
|
19
43
|
if (indexRef.index + length > buffer.length) {
|
|
@@ -120,41 +144,10 @@ export const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0
|
|
|
120
144
|
throw new Error('invalid jid pair: ' + i + ', ' + j);
|
|
121
145
|
};
|
|
122
146
|
const readAdJid = () => {
|
|
123
|
-
const
|
|
124
|
-
const domainType = Number(rawDomainType);
|
|
147
|
+
const agent = readByte();
|
|
125
148
|
const device = readByte();
|
|
126
149
|
const user = readString(readByte());
|
|
127
|
-
|
|
128
|
-
if (domainType === WAJIDDomains.LID) {
|
|
129
|
-
server = 'lid';
|
|
130
|
-
}
|
|
131
|
-
else if (domainType === WAJIDDomains.HOSTED) {
|
|
132
|
-
server = 'hosted';
|
|
133
|
-
}
|
|
134
|
-
else if (domainType === WAJIDDomains.HOSTED_LID) {
|
|
135
|
-
server = 'hosted.lid';
|
|
136
|
-
}
|
|
137
|
-
return jidEncode(user, server, device);
|
|
138
|
-
};
|
|
139
|
-
const readFbJid = () => {
|
|
140
|
-
const user = readString(readByte());
|
|
141
|
-
const device = readInt(2);
|
|
142
|
-
const server = readString(readByte());
|
|
143
|
-
return `${user}:${device}@${server}`;
|
|
144
|
-
};
|
|
145
|
-
const readInteropJid = () => {
|
|
146
|
-
const user = readString(readByte());
|
|
147
|
-
const device = readInt(2);
|
|
148
|
-
const integrator = readInt(2);
|
|
149
|
-
let server = 'interop';
|
|
150
|
-
const beforeServer = indexRef.index;
|
|
151
|
-
try {
|
|
152
|
-
server = readString(readByte());
|
|
153
|
-
}
|
|
154
|
-
catch (err) {
|
|
155
|
-
indexRef.index = beforeServer;
|
|
156
|
-
}
|
|
157
|
-
return `${integrator}-${user}:${device}@${server}`;
|
|
150
|
+
return (0, jid_utils_1.jidEncode)(user, agent === 0 ? 's.whatsapp.net' : 'lid', device);
|
|
158
151
|
};
|
|
159
152
|
const readString = (tag) => {
|
|
160
153
|
if (tag >= 1 && tag < SINGLE_BYTE_TOKENS.length) {
|
|
@@ -176,10 +169,6 @@ export const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0
|
|
|
176
169
|
return readStringFromChars(readInt(4));
|
|
177
170
|
case TAGS.JID_PAIR:
|
|
178
171
|
return readJidPair();
|
|
179
|
-
case TAGS.FB_JID:
|
|
180
|
-
return readFbJid();
|
|
181
|
-
case TAGS.INTEROP_JID:
|
|
182
|
-
return readInteropJid();
|
|
183
172
|
case TAGS.AD_JID:
|
|
184
173
|
return readAdJid();
|
|
185
174
|
case TAGS.HEX_8:
|
|
@@ -193,7 +182,7 @@ export const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0
|
|
|
193
182
|
const items = [];
|
|
194
183
|
const size = readListSize(tag);
|
|
195
184
|
for (let i = 0; i < size; i++) {
|
|
196
|
-
items.push(decodeDecompressedBinaryNode(buffer, opts, indexRef));
|
|
185
|
+
items.push((0, exports.decodeDecompressedBinaryNode)(buffer, opts, indexRef));
|
|
197
186
|
}
|
|
198
187
|
return items;
|
|
199
188
|
};
|
|
@@ -255,8 +244,9 @@ export const decodeDecompressedBinaryNode = (buffer, opts, indexRef = { index: 0
|
|
|
255
244
|
content: data
|
|
256
245
|
};
|
|
257
246
|
};
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
247
|
+
exports.decodeDecompressedBinaryNode = decodeDecompressedBinaryNode;
|
|
248
|
+
const decodeBinaryNode = (buff) => {
|
|
249
|
+
const decompBuff = (0, exports.decompressingIfRequired)(buff);
|
|
250
|
+
return (0, exports.decodeDecompressedBinaryNode)(decompBuff, constants);
|
|
261
251
|
};
|
|
262
|
-
|
|
252
|
+
exports.decodeBinaryNode = decodeBinaryNode;
|
package/lib/WABinary/encode.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import type { BinaryNode, BinaryNodeCodingOptions } from './types';
|
|
3
|
+
export declare const encodeBinaryNode: ({ tag, attrs, content }: BinaryNode, opts?: Pick<BinaryNodeCodingOptions, 'TAGS' | 'TOKEN_MAP'>, buffer?: number[]) => Buffer;
|
package/lib/WABinary/encode.js
CHANGED
|
@@ -1,220 +1,265 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
"use strict"
|
|
2
|
+
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k)
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k] } }
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc)
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k
|
|
12
|
+
o[k2] = m[k]
|
|
13
|
+
}))
|
|
14
|
+
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v })
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v
|
|
19
|
+
})
|
|
20
|
+
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod
|
|
23
|
+
var result = {}
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k)
|
|
25
|
+
__setModuleDefault(result, mod)
|
|
26
|
+
return result
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
Object.defineProperty(exports, "__esModule", { value: true })
|
|
30
|
+
|
|
31
|
+
const constants = __importStar(require("./constants"))
|
|
32
|
+
const jid_utils_1 = require("./jid-utils")
|
|
33
|
+
|
|
34
|
+
const encodeBinaryNode = (node, opts = constants, buffer = [0]) => {
|
|
35
|
+
const encoded = encodeBinaryNodeInner(node, opts, buffer)
|
|
36
|
+
return Buffer.from(encoded)
|
|
37
|
+
}
|
|
38
|
+
|
|
7
39
|
const encodeBinaryNodeInner = ({ tag, attrs, content }, opts, buffer) => {
|
|
8
|
-
const { TAGS, TOKEN_MAP } = opts
|
|
9
|
-
const pushByte = (value) => buffer.push(value & 0xff)
|
|
40
|
+
const { TAGS, TOKEN_MAP } = opts
|
|
41
|
+
const pushByte = (value) => buffer.push(value & 0xff)
|
|
10
42
|
const pushInt = (value, n, littleEndian = false) => {
|
|
11
43
|
for (let i = 0; i < n; i++) {
|
|
12
|
-
const curShift = littleEndian ? i : n - 1 - i
|
|
13
|
-
buffer.push((value >> (curShift * 8)) & 0xff)
|
|
44
|
+
const curShift = littleEndian ? i : n - 1 - i
|
|
45
|
+
buffer.push((value >> (curShift * 8)) & 0xff)
|
|
14
46
|
}
|
|
15
|
-
}
|
|
47
|
+
}
|
|
48
|
+
|
|
16
49
|
const pushBytes = (bytes) => {
|
|
17
50
|
for (const b of bytes) {
|
|
18
|
-
buffer.push(b)
|
|
51
|
+
buffer.push(b)
|
|
19
52
|
}
|
|
20
|
-
}
|
|
53
|
+
}
|
|
54
|
+
|
|
21
55
|
const pushInt16 = (value) => {
|
|
22
|
-
pushBytes([(value >> 8) & 0xff, value & 0xff])
|
|
23
|
-
}
|
|
24
|
-
|
|
56
|
+
pushBytes([(value >> 8) & 0xff, value & 0xff])
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const pushInt20 = (value) => (pushBytes([(value >> 16) & 0x0f, (value >> 8) & 0xff, value & 0xff]))
|
|
25
60
|
const writeByteLength = (length) => {
|
|
26
61
|
if (length >= 4294967296) {
|
|
27
|
-
throw new Error('string too large to encode: ' + length)
|
|
62
|
+
throw new Error('string too large to encode: ' + length)
|
|
28
63
|
}
|
|
29
64
|
if (length >= 1 << 20) {
|
|
30
|
-
pushByte(TAGS.BINARY_32)
|
|
31
|
-
pushInt(length, 4)
|
|
65
|
+
pushByte(TAGS.BINARY_32)
|
|
66
|
+
pushInt(length, 4) // 32 bit integer
|
|
32
67
|
}
|
|
33
68
|
else if (length >= 256) {
|
|
34
|
-
pushByte(TAGS.BINARY_20)
|
|
35
|
-
pushInt20(length)
|
|
69
|
+
pushByte(TAGS.BINARY_20)
|
|
70
|
+
pushInt20(length)
|
|
36
71
|
}
|
|
37
72
|
else {
|
|
38
|
-
pushByte(TAGS.BINARY_8)
|
|
39
|
-
pushByte(length)
|
|
73
|
+
pushByte(TAGS.BINARY_8)
|
|
74
|
+
pushByte(length)
|
|
40
75
|
}
|
|
41
|
-
}
|
|
76
|
+
}
|
|
77
|
+
|
|
42
78
|
const writeStringRaw = (str) => {
|
|
43
|
-
const bytes = Buffer.from(str, 'utf-8')
|
|
44
|
-
writeByteLength(bytes.length)
|
|
45
|
-
pushBytes(bytes)
|
|
46
|
-
}
|
|
79
|
+
const bytes = Buffer.from(str, 'utf-8')
|
|
80
|
+
writeByteLength(bytes.length)
|
|
81
|
+
pushBytes(bytes)
|
|
82
|
+
}
|
|
83
|
+
|
|
47
84
|
const writeJid = ({ domainType, device, user, server }) => {
|
|
48
85
|
if (typeof device !== 'undefined') {
|
|
49
|
-
pushByte(TAGS.AD_JID)
|
|
50
|
-
pushByte(domainType || 0)
|
|
51
|
-
pushByte(device || 0)
|
|
52
|
-
writeString(user)
|
|
86
|
+
pushByte(TAGS.AD_JID)
|
|
87
|
+
pushByte(domainType || 0)
|
|
88
|
+
pushByte(device || 0)
|
|
89
|
+
writeString(user)
|
|
53
90
|
}
|
|
54
91
|
else {
|
|
55
|
-
pushByte(TAGS.JID_PAIR)
|
|
92
|
+
pushByte(TAGS.JID_PAIR)
|
|
56
93
|
if (user.length) {
|
|
57
|
-
writeString(user)
|
|
94
|
+
writeString(user)
|
|
58
95
|
}
|
|
59
96
|
else {
|
|
60
|
-
pushByte(TAGS.LIST_EMPTY)
|
|
97
|
+
pushByte(TAGS.LIST_EMPTY)
|
|
61
98
|
}
|
|
62
|
-
writeString(server)
|
|
99
|
+
writeString(server)
|
|
63
100
|
}
|
|
64
|
-
}
|
|
101
|
+
}
|
|
102
|
+
|
|
65
103
|
const packNibble = (char) => {
|
|
66
104
|
switch (char) {
|
|
67
105
|
case '-':
|
|
68
|
-
return 10
|
|
106
|
+
return 10
|
|
69
107
|
case '.':
|
|
70
|
-
return 11
|
|
108
|
+
return 11
|
|
71
109
|
case '\0':
|
|
72
|
-
return 15
|
|
110
|
+
return 15
|
|
73
111
|
default:
|
|
74
112
|
if (char >= '0' && char <= '9') {
|
|
75
|
-
return char.charCodeAt(0) - '0'.charCodeAt(0)
|
|
113
|
+
return char.charCodeAt(0) - '0'.charCodeAt(0)
|
|
76
114
|
}
|
|
77
|
-
throw new Error(`invalid byte for nibble "${char}"`)
|
|
115
|
+
throw new Error(`invalid byte for nibble "${char}"`)
|
|
78
116
|
}
|
|
79
|
-
}
|
|
117
|
+
}
|
|
118
|
+
|
|
80
119
|
const packHex = (char) => {
|
|
81
120
|
if (char >= '0' && char <= '9') {
|
|
82
|
-
return char.charCodeAt(0) - '0'.charCodeAt(0)
|
|
121
|
+
return char.charCodeAt(0) - '0'.charCodeAt(0)
|
|
83
122
|
}
|
|
84
123
|
if (char >= 'A' && char <= 'F') {
|
|
85
|
-
return 10 + char.charCodeAt(0) - 'A'.charCodeAt(0)
|
|
124
|
+
return 10 + char.charCodeAt(0) - 'A'.charCodeAt(0)
|
|
86
125
|
}
|
|
87
126
|
if (char >= 'a' && char <= 'f') {
|
|
88
|
-
return 10 + char.charCodeAt(0) - 'a'.charCodeAt(0)
|
|
127
|
+
return 10 + char.charCodeAt(0) - 'a'.charCodeAt(0)
|
|
89
128
|
}
|
|
90
129
|
if (char === '\0') {
|
|
91
|
-
return 15
|
|
130
|
+
return 15
|
|
92
131
|
}
|
|
93
|
-
throw new Error(`Invalid hex char "${char}"`)
|
|
94
|
-
}
|
|
132
|
+
throw new Error(`Invalid hex char "${char}"`)
|
|
133
|
+
}
|
|
134
|
+
|
|
95
135
|
const writePackedBytes = (str, type) => {
|
|
96
136
|
if (str.length > TAGS.PACKED_MAX) {
|
|
97
|
-
throw new Error('Too many bytes to pack')
|
|
137
|
+
throw new Error('Too many bytes to pack')
|
|
98
138
|
}
|
|
99
|
-
pushByte(type === 'nibble' ? TAGS.NIBBLE_8 : TAGS.HEX_8)
|
|
100
|
-
let roundedLength = Math.ceil(str.length / 2.0)
|
|
139
|
+
pushByte(type === 'nibble' ? TAGS.NIBBLE_8 : TAGS.HEX_8)
|
|
140
|
+
let roundedLength = Math.ceil(str.length / 2.0)
|
|
101
141
|
if (str.length % 2 !== 0) {
|
|
102
|
-
roundedLength |= 128
|
|
142
|
+
roundedLength |= 128
|
|
103
143
|
}
|
|
104
|
-
pushByte(roundedLength)
|
|
105
|
-
const packFunction = type === 'nibble' ? packNibble : packHex
|
|
144
|
+
pushByte(roundedLength)
|
|
145
|
+
const packFunction = type === 'nibble' ? packNibble : packHex
|
|
106
146
|
const packBytePair = (v1, v2) => {
|
|
107
|
-
const result = (packFunction(v1) << 4) | packFunction(v2)
|
|
108
|
-
return result
|
|
109
|
-
}
|
|
110
|
-
const strLengthHalf = Math.floor(str.length / 2)
|
|
147
|
+
const result = (packFunction(v1) << 4) | packFunction(v2)
|
|
148
|
+
return result
|
|
149
|
+
}
|
|
150
|
+
const strLengthHalf = Math.floor(str.length / 2)
|
|
111
151
|
for (let i = 0; i < strLengthHalf; i++) {
|
|
112
|
-
pushByte(packBytePair(str[2 * i], str[2 * i + 1]))
|
|
152
|
+
pushByte(packBytePair(str[2 * i], str[2 * i + 1]))
|
|
113
153
|
}
|
|
114
154
|
if (str.length % 2 !== 0) {
|
|
115
|
-
pushByte(packBytePair(str[str.length - 1], '\x00'))
|
|
155
|
+
pushByte(packBytePair(str[str.length - 1], '\x00'))
|
|
116
156
|
}
|
|
117
|
-
}
|
|
157
|
+
}
|
|
158
|
+
|
|
118
159
|
const isNibble = (str) => {
|
|
119
160
|
if (!str || str.length > TAGS.PACKED_MAX) {
|
|
120
|
-
return false
|
|
161
|
+
return false
|
|
121
162
|
}
|
|
122
163
|
for (const char of str) {
|
|
123
|
-
const isInNibbleRange = char >= '0' && char <= '9'
|
|
164
|
+
const isInNibbleRange = char >= '0' && char <= '9'
|
|
124
165
|
if (!isInNibbleRange && char !== '-' && char !== '.') {
|
|
125
|
-
return false
|
|
166
|
+
return false
|
|
126
167
|
}
|
|
127
168
|
}
|
|
128
|
-
return true
|
|
129
|
-
}
|
|
169
|
+
return true
|
|
170
|
+
}
|
|
171
|
+
|
|
130
172
|
const isHex = (str) => {
|
|
131
173
|
if (!str || str.length > TAGS.PACKED_MAX) {
|
|
132
|
-
return false
|
|
174
|
+
return false
|
|
133
175
|
}
|
|
134
176
|
for (const char of str) {
|
|
135
|
-
const isInNibbleRange = char >= '0' && char <= '9'
|
|
177
|
+
const isInNibbleRange = char >= '0' && char <= '9'
|
|
136
178
|
if (!isInNibbleRange && !(char >= 'A' && char <= 'F')) {
|
|
137
|
-
return false
|
|
179
|
+
return false
|
|
138
180
|
}
|
|
139
181
|
}
|
|
140
|
-
return true
|
|
141
|
-
}
|
|
182
|
+
return true
|
|
183
|
+
}
|
|
184
|
+
|
|
142
185
|
const writeString = (str) => {
|
|
143
|
-
|
|
144
|
-
pushByte(TAGS.LIST_EMPTY)
|
|
145
|
-
return
|
|
186
|
+
if (str === undefined || str === null) {
|
|
187
|
+
pushByte(TAGS.LIST_EMPTY)
|
|
188
|
+
return
|
|
146
189
|
}
|
|
147
|
-
|
|
148
|
-
writeStringRaw(str);
|
|
149
|
-
return;
|
|
150
|
-
}
|
|
151
|
-
const tokenIndex = TOKEN_MAP[str];
|
|
190
|
+
const tokenIndex = TOKEN_MAP[str]
|
|
152
191
|
if (tokenIndex) {
|
|
153
192
|
if (typeof tokenIndex.dict === 'number') {
|
|
154
|
-
pushByte(TAGS.DICTIONARY_0 + tokenIndex.dict)
|
|
193
|
+
pushByte(TAGS.DICTIONARY_0 + tokenIndex.dict)
|
|
155
194
|
}
|
|
156
|
-
pushByte(tokenIndex.index)
|
|
195
|
+
pushByte(tokenIndex.index)
|
|
157
196
|
}
|
|
158
197
|
else if (isNibble(str)) {
|
|
159
|
-
writePackedBytes(str, 'nibble')
|
|
198
|
+
writePackedBytes(str, 'nibble')
|
|
160
199
|
}
|
|
161
200
|
else if (isHex(str)) {
|
|
162
|
-
writePackedBytes(str, 'hex')
|
|
201
|
+
writePackedBytes(str, 'hex')
|
|
163
202
|
}
|
|
164
|
-
else {
|
|
165
|
-
const decodedJid = jidDecode(str)
|
|
203
|
+
else if (str) {
|
|
204
|
+
const decodedJid = (0, jid_utils_1.jidDecode)(str)
|
|
166
205
|
if (decodedJid) {
|
|
167
|
-
writeJid(decodedJid)
|
|
206
|
+
writeJid(decodedJid)
|
|
168
207
|
}
|
|
169
208
|
else {
|
|
170
|
-
writeStringRaw(str)
|
|
209
|
+
writeStringRaw(str)
|
|
171
210
|
}
|
|
172
211
|
}
|
|
173
|
-
}
|
|
212
|
+
}
|
|
213
|
+
|
|
174
214
|
const writeListStart = (listSize) => {
|
|
175
215
|
if (listSize === 0) {
|
|
176
|
-
pushByte(TAGS.LIST_EMPTY)
|
|
216
|
+
pushByte(TAGS.LIST_EMPTY)
|
|
177
217
|
}
|
|
178
218
|
else if (listSize < 256) {
|
|
179
|
-
pushBytes([TAGS.LIST_8, listSize])
|
|
219
|
+
pushBytes([TAGS.LIST_8, listSize])
|
|
180
220
|
}
|
|
181
221
|
else {
|
|
182
|
-
pushByte(TAGS.LIST_16)
|
|
183
|
-
pushInt16(listSize)
|
|
222
|
+
pushByte(TAGS.LIST_16)
|
|
223
|
+
pushInt16(listSize)
|
|
184
224
|
}
|
|
185
|
-
}
|
|
225
|
+
}
|
|
226
|
+
|
|
186
227
|
if (!tag) {
|
|
187
|
-
throw new Error('Invalid node: tag cannot be undefined')
|
|
228
|
+
throw new Error('Invalid node: tag cannot be undefined')
|
|
188
229
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
230
|
+
|
|
231
|
+
const validAttributes = Object.keys(attrs).filter(k => (typeof attrs[k] !== 'undefined' && attrs[k] !== null))
|
|
232
|
+
writeListStart(2 * validAttributes.length + 1 + (typeof content !== 'undefined' ? 1 : 0))
|
|
233
|
+
writeString(tag)
|
|
192
234
|
for (const key of validAttributes) {
|
|
193
235
|
if (typeof attrs[key] === 'string') {
|
|
194
|
-
writeString(key)
|
|
195
|
-
writeString(attrs[key])
|
|
236
|
+
writeString(key)
|
|
237
|
+
writeString(attrs[key])
|
|
196
238
|
}
|
|
197
239
|
}
|
|
198
240
|
if (typeof content === 'string') {
|
|
199
|
-
writeString(content)
|
|
241
|
+
writeString(content)
|
|
200
242
|
}
|
|
201
243
|
else if (Buffer.isBuffer(content) || content instanceof Uint8Array) {
|
|
202
|
-
writeByteLength(content.length)
|
|
203
|
-
pushBytes(content)
|
|
244
|
+
writeByteLength(content.length)
|
|
245
|
+
pushBytes(content)
|
|
204
246
|
}
|
|
205
247
|
else if (Array.isArray(content)) {
|
|
206
|
-
|
|
207
|
-
writeListStart(validContent.length)
|
|
248
|
+
const validContent = content.filter(item => item && (item.tag || Buffer.isBuffer(item) || item instanceof Uint8Array || typeof item === 'string'))
|
|
249
|
+
writeListStart(validContent.length)
|
|
208
250
|
for (const item of validContent) {
|
|
209
|
-
encodeBinaryNodeInner(item, opts, buffer)
|
|
251
|
+
encodeBinaryNodeInner(item, opts, buffer)
|
|
210
252
|
}
|
|
211
253
|
}
|
|
212
254
|
else if (typeof content === 'undefined') {
|
|
213
255
|
// do nothing
|
|
214
256
|
}
|
|
215
257
|
else {
|
|
216
|
-
throw new Error(`invalid children for header "${tag}": ${content} (${typeof content})`)
|
|
258
|
+
throw new Error(`invalid children for header "${tag}": ${content} (${typeof content})`)
|
|
217
259
|
}
|
|
218
|
-
return buffer
|
|
219
|
-
}
|
|
220
|
-
|
|
260
|
+
return buffer
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
module.exports = {
|
|
264
|
+
encodeBinaryNode
|
|
265
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { proto } from '../../WAProto';
|
|
3
|
+
import { BinaryNode } from './types';
|
|
4
4
|
export declare const getBinaryNodeChildren: (node: BinaryNode | undefined, childTag: string) => BinaryNode[];
|
|
5
|
-
export declare const getBinaryNodeChild: (node: BinaryNode | undefined, childTag: string) => BinaryNode | undefined;
|
|
6
5
|
export declare const getAllBinaryNodeChildren: ({ content }: BinaryNode) => BinaryNode[];
|
|
7
|
-
export declare const
|
|
6
|
+
export declare const getBinaryNodeChild: (node: BinaryNode | undefined, childTag: string) => BinaryNode | undefined;
|
|
7
|
+
export declare const getBinaryNodeChildBuffer: (node: BinaryNode | undefined, childTag: string) => Uint8Array | Buffer | undefined;
|
|
8
8
|
export declare const getBinaryNodeChildString: (node: BinaryNode | undefined, childTag: string) => string | undefined;
|
|
9
9
|
export declare const getBinaryNodeChildUInt: (node: BinaryNode, childTag: string, length: number) => number | undefined;
|
|
10
10
|
export declare const assertNodeErrorFree: (node: BinaryNode) => void;
|
|
@@ -12,7 +12,6 @@ export declare const reduceBinaryNodeToDictionary: (node: BinaryNode, tag: strin
|
|
|
12
12
|
[_: string]: string;
|
|
13
13
|
};
|
|
14
14
|
export declare const getBinaryNodeMessages: ({ content }: BinaryNode) => proto.WebMessageInfo[];
|
|
15
|
-
export declare function binaryNodeToString(node: BinaryNode | BinaryNode['content'], i?: number):
|
|
15
|
+
export declare function binaryNodeToString(node: BinaryNode | BinaryNode['content'], i?: number): any;
|
|
16
16
|
export declare const getBinaryNodeFilter: (node: BinaryNode[]) => boolean;
|
|
17
|
-
export declare const getAdditionalNode: (name
|
|
18
|
-
//# sourceMappingURL=generic-utils.d.ts.map
|
|
17
|
+
export declare const getAdditionalNode: (name: string) => BinaryNode[];
|