@queenanya/baileys 8.2.7 → 8.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/WAProto/index.d.ts +1590 -6
- package/WAProto/index.js +4635 -3
- package/engine-requirements.js +1 -1
- package/lib/Defaults/baileys-version.json +1 -1
- package/lib/Defaults/index.d.ts +1 -1
- package/lib/Defaults/index.js +4 -5
- package/lib/Signal/Group/ciphertext-message.d.ts +9 -0
- package/lib/Signal/Group/ciphertext-message.js +15 -0
- package/lib/Signal/Group/group-session-builder.d.ts +14 -0
- package/lib/Signal/Group/group-session-builder.js +64 -0
- package/lib/Signal/Group/group_cipher.d.ts +17 -0
- package/lib/Signal/Group/group_cipher.js +96 -0
- package/lib/Signal/Group/index.d.ts +11 -0
- package/lib/Signal/Group/index.js +57 -0
- package/lib/Signal/Group/keyhelper.d.ts +10 -0
- package/lib/Signal/Group/keyhelper.js +55 -0
- 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 +13 -0
- package/lib/Signal/Group/sender-chain-key.js +34 -0
- package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -0
- package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
- package/lib/Signal/Group/sender-key-message.d.ts +18 -0
- package/lib/Signal/Group/sender-key-message.js +69 -0
- package/lib/Signal/Group/sender-key-name.d.ts +17 -0
- package/lib/Signal/Group/sender-key-name.js +51 -0
- package/lib/Signal/Group/sender-key-record.d.ts +30 -0
- package/lib/Signal/Group/sender-key-record.js +53 -0
- package/lib/Signal/Group/sender-key-state.d.ts +38 -0
- package/lib/Signal/Group/sender-key-state.js +99 -0
- package/lib/Signal/Group/sender-message-key.d.ts +11 -0
- package/{WASignalGroup/sender_message_key.js → lib/Signal/Group/sender-message-key.js} +6 -16
- package/lib/Signal/libsignal.js +33 -20
- package/lib/Socket/Client/types.d.ts +1 -0
- package/lib/Socket/Client/websocket.d.ts +1 -0
- package/lib/Socket/Client/websocket.js +11 -1
- package/lib/Socket/business.d.ts +5 -8
- package/lib/Socket/chats.d.ts +4 -8
- package/lib/Socket/chats.js +7 -87
- package/lib/Socket/groups.d.ts +4 -6
- package/lib/Socket/groups.js +13 -9
- package/lib/Socket/index.d.ts +5 -8
- package/lib/Socket/messages-recv.d.ts +5 -8
- package/lib/Socket/messages-recv.js +20 -25
- package/lib/Socket/messages-send.d.ts +5 -8
- package/lib/Socket/messages-send.js +116 -81
- package/lib/Socket/newsletter.d.ts +4 -6
- package/lib/Socket/newsletter.js +2 -4
- package/lib/Socket/socket.js +63 -1
- package/lib/Socket/usync.js +15 -10
- package/lib/Types/Chat.d.ts +2 -8
- package/lib/Types/Contact.d.ts +4 -5
- package/lib/Types/GroupMetadata.d.ts +4 -3
- package/lib/Types/Label.d.ts +0 -11
- package/lib/Types/Message.d.ts +15 -2
- package/lib/Types/Socket.d.ts +0 -2
- package/lib/Utils/chat-utils.d.ts +8 -8
- package/lib/Utils/chat-utils.js +4 -30
- package/lib/Utils/crypto.d.ts +1 -1
- package/lib/Utils/crypto.js +1 -3
- package/lib/Utils/decode-wa-message.d.ts +2 -4
- package/lib/Utils/decode-wa-message.js +18 -161
- package/lib/Utils/generics.d.ts +18 -8
- package/lib/Utils/generics.js +93 -7
- package/lib/Utils/history.js +1 -1
- package/lib/Utils/index.d.ts +1 -0
- package/lib/Utils/index.js +1 -0
- package/lib/Utils/messages-media.d.ts +9 -16
- package/lib/Utils/messages-media.js +186 -98
- package/lib/Utils/messages.d.ts +1 -1
- package/lib/Utils/messages.js +27 -17
- package/lib/Utils/use-single-file-auth-state.d.ts +5 -0
- package/lib/Utils/use-single-file-auth-state.js +66 -0
- package/lib/Utils/validate-connection.js +7 -7
- package/lib/WABinary/constants.d.ts +4 -4
- package/lib/WABinary/constants.js +1271 -8
- package/lib/WABinary/encode.js +5 -7
- package/lib/WABinary/jid-utils.d.ts +3 -3
- package/lib/WABinary/jid-utils.js +18 -18
- package/lib/WAM/constants.d.ts +2 -3
- package/lib/WAM/encode.js +2 -2
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +2 -2
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +2 -2
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +3 -3
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +2 -2
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +1 -1
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +1 -1
- package/lib/WAUSync/USyncQuery.js +13 -17
- package/package.json +10 -5
- package/WASignalGroup/GroupProtocol.js +0 -1697
- package/WASignalGroup/ciphertext_message.js +0 -16
- package/WASignalGroup/group_cipher.js +0 -120
- package/WASignalGroup/group_session_builder.js +0 -46
- package/WASignalGroup/index.js +0 -5
- package/WASignalGroup/keyhelper.js +0 -21
- package/WASignalGroup/protobufs.js +0 -3
- package/WASignalGroup/queue_job.js +0 -69
- package/WASignalGroup/sender_chain_key.js +0 -50
- package/WASignalGroup/sender_key_distribution_message.js +0 -78
- package/WASignalGroup/sender_key_message.js +0 -92
- package/WASignalGroup/sender_key_name.js +0 -70
- package/WASignalGroup/sender_key_record.js +0 -56
- package/WASignalGroup/sender_key_state.js +0 -129
- package/lib/Store/make-cache-manager-store.d.ts +0 -14
- package/lib/Store/make-cache-manager-store.js +0 -83
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
const SenderChainKey = require('./sender_chain_key');
|
|
2
|
-
const SenderMessageKey = require('./sender_message_key');
|
|
3
|
-
|
|
4
|
-
const protobufs = require('./protobufs');
|
|
5
|
-
|
|
6
|
-
class SenderKeyState {
|
|
7
|
-
MAX_MESSAGE_KEYS = 2000;
|
|
8
|
-
|
|
9
|
-
constructor(
|
|
10
|
-
id = null,
|
|
11
|
-
iteration = null,
|
|
12
|
-
chainKey = null,
|
|
13
|
-
signatureKeyPair = null,
|
|
14
|
-
signatureKeyPublic = null,
|
|
15
|
-
signatureKeyPrivate = null,
|
|
16
|
-
senderKeyStateStructure = null
|
|
17
|
-
) {
|
|
18
|
-
if (senderKeyStateStructure) {
|
|
19
|
-
this.senderKeyStateStructure = senderKeyStateStructure;
|
|
20
|
-
} else {
|
|
21
|
-
if (signatureKeyPair) {
|
|
22
|
-
signatureKeyPublic = signatureKeyPair.public;
|
|
23
|
-
signatureKeyPrivate = signatureKeyPair.private;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
chainKey = typeof chainKey === 'string' ? Buffer.from(chainKey, 'base64') : chainKey;
|
|
27
|
-
this.senderKeyStateStructure = protobufs.SenderKeyStateStructure.create();
|
|
28
|
-
const senderChainKeyStructure = protobufs.SenderChainKey.create();
|
|
29
|
-
senderChainKeyStructure.iteration = iteration;
|
|
30
|
-
senderChainKeyStructure.seed = chainKey;
|
|
31
|
-
this.senderKeyStateStructure.senderChainKey = senderChainKeyStructure;
|
|
32
|
-
|
|
33
|
-
const signingKeyStructure = protobufs.SenderSigningKey.create();
|
|
34
|
-
signingKeyStructure.public =
|
|
35
|
-
typeof signatureKeyPublic === 'string' ?
|
|
36
|
-
Buffer.from(signatureKeyPublic, 'base64') :
|
|
37
|
-
signatureKeyPublic;
|
|
38
|
-
if (signatureKeyPrivate) {
|
|
39
|
-
signingKeyStructure.private =
|
|
40
|
-
typeof signatureKeyPrivate === 'string' ?
|
|
41
|
-
Buffer.from(signatureKeyPrivate, 'base64') :
|
|
42
|
-
signatureKeyPrivate;
|
|
43
|
-
}
|
|
44
|
-
this.senderKeyStateStructure.senderKeyId = id;
|
|
45
|
-
this.senderChainKey = senderChainKeyStructure;
|
|
46
|
-
this.senderKeyStateStructure.senderSigningKey = signingKeyStructure;
|
|
47
|
-
}
|
|
48
|
-
this.senderKeyStateStructure.senderMessageKeys =
|
|
49
|
-
this.senderKeyStateStructure.senderMessageKeys || [];
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
SenderKeyState(senderKeyStateStructure) {
|
|
53
|
-
this.senderKeyStateStructure = senderKeyStateStructure;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
getKeyId() {
|
|
57
|
-
return this.senderKeyStateStructure.senderKeyId;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
getSenderChainKey() {
|
|
61
|
-
return new SenderChainKey(
|
|
62
|
-
this.senderKeyStateStructure.senderChainKey.iteration,
|
|
63
|
-
this.senderKeyStateStructure.senderChainKey.seed
|
|
64
|
-
);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
setSenderChainKey(chainKey) {
|
|
68
|
-
const senderChainKeyStructure = protobufs.SenderChainKey.create({
|
|
69
|
-
iteration: chainKey.getIteration(),
|
|
70
|
-
seed: chainKey.getSeed(),
|
|
71
|
-
});
|
|
72
|
-
this.senderKeyStateStructure.senderChainKey = senderChainKeyStructure;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
getSigningKeyPublic() {
|
|
76
|
-
return typeof this.senderKeyStateStructure.senderSigningKey.public === 'string' ?
|
|
77
|
-
Buffer.from(this.senderKeyStateStructure.senderSigningKey.public, 'base64') :
|
|
78
|
-
this.senderKeyStateStructure.senderSigningKey.public;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
getSigningKeyPrivate() {
|
|
82
|
-
return typeof this.senderKeyStateStructure.senderSigningKey.private === 'string' ?
|
|
83
|
-
Buffer.from(this.senderKeyStateStructure.senderSigningKey.private, 'base64') :
|
|
84
|
-
this.senderKeyStateStructure.senderSigningKey.private;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
hasSenderMessageKey(iteration) {
|
|
88
|
-
const list = this.senderKeyStateStructure.senderMessageKeys;
|
|
89
|
-
for (let o = 0; o < list.length; o++) {
|
|
90
|
-
const senderMessageKey = list[o];
|
|
91
|
-
if (senderMessageKey.iteration === iteration) return true;
|
|
92
|
-
}
|
|
93
|
-
return false;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
addSenderMessageKey(senderMessageKey) {
|
|
97
|
-
const senderMessageKeyStructure = protobufs.SenderKeyStateStructure.create({
|
|
98
|
-
iteration: senderMessageKey.getIteration(),
|
|
99
|
-
seed: senderMessageKey.getSeed(),
|
|
100
|
-
});
|
|
101
|
-
this.senderKeyStateStructure.senderMessageKeys.push(senderMessageKeyStructure);
|
|
102
|
-
|
|
103
|
-
if (this.senderKeyStateStructure.senderMessageKeys.length > this.MAX_MESSAGE_KEYS) {
|
|
104
|
-
this.senderKeyStateStructure.senderMessageKeys.shift();
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
removeSenderMessageKey(iteration) {
|
|
109
|
-
let result = null;
|
|
110
|
-
|
|
111
|
-
this.senderKeyStateStructure.senderMessageKeys = this.senderKeyStateStructure.senderMessageKeys.filter(
|
|
112
|
-
senderMessageKey => {
|
|
113
|
-
if (senderMessageKey.iteration === iteration) result = senderMessageKey;
|
|
114
|
-
return senderMessageKey.iteration !== iteration;
|
|
115
|
-
}
|
|
116
|
-
);
|
|
117
|
-
|
|
118
|
-
if (result != null) {
|
|
119
|
-
return new SenderMessageKey(result.iteration, result.seed);
|
|
120
|
-
}
|
|
121
|
-
return null;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
getStructure() {
|
|
125
|
-
return this.senderKeyStateStructure;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
module.exports = SenderKeyState;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Store } from 'cache-manager';
|
|
2
|
-
import { AuthenticationCreds } from '../Types';
|
|
3
|
-
declare const makeCacheManagerAuthState: (store: Store, sessionKey: string) => Promise<{
|
|
4
|
-
clearState: () => Promise<void>;
|
|
5
|
-
saveCreds: () => Promise<void>;
|
|
6
|
-
state: {
|
|
7
|
-
creds: AuthenticationCreds;
|
|
8
|
-
keys: {
|
|
9
|
-
get: (type: string, ids: string[]) => Promise<{}>;
|
|
10
|
-
set: (data: any) => Promise<void>;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
}>;
|
|
14
|
-
export default makeCacheManagerAuthState;
|
|
@@ -1,83 +0,0 @@
|
|
|
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 cache_manager_1 = require("cache-manager");
|
|
7
|
-
const WAProto_1 = require("../../WAProto");
|
|
8
|
-
const Utils_1 = require("../Utils");
|
|
9
|
-
const logger_1 = __importDefault(require("../Utils/logger"));
|
|
10
|
-
const makeCacheManagerAuthState = async (store, sessionKey) => {
|
|
11
|
-
const defaultKey = (file) => `${sessionKey}:${file}`;
|
|
12
|
-
const databaseConn = await (0, cache_manager_1.caching)(store);
|
|
13
|
-
const writeData = async (file, data) => {
|
|
14
|
-
let ttl = undefined;
|
|
15
|
-
if (file === 'creds') {
|
|
16
|
-
ttl = 63115200; // 2 years
|
|
17
|
-
}
|
|
18
|
-
await databaseConn.set(defaultKey(file), JSON.stringify(data, Utils_1.BufferJSON.replacer), ttl);
|
|
19
|
-
};
|
|
20
|
-
const readData = async (file) => {
|
|
21
|
-
try {
|
|
22
|
-
const data = await databaseConn.get(defaultKey(file));
|
|
23
|
-
if (data) {
|
|
24
|
-
return JSON.parse(data, Utils_1.BufferJSON.reviver);
|
|
25
|
-
}
|
|
26
|
-
return null;
|
|
27
|
-
}
|
|
28
|
-
catch (error) {
|
|
29
|
-
logger_1.default.error(error);
|
|
30
|
-
return null;
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
const removeData = async (file) => {
|
|
34
|
-
try {
|
|
35
|
-
return await databaseConn.del(defaultKey(file));
|
|
36
|
-
}
|
|
37
|
-
catch (_a) {
|
|
38
|
-
logger_1.default.error(`Error removing ${file} from session ${sessionKey}`);
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
const clearState = async () => {
|
|
42
|
-
try {
|
|
43
|
-
const result = await databaseConn.store.keys(`${sessionKey}*`);
|
|
44
|
-
await Promise.all(result.map(async (key) => await databaseConn.del(key)));
|
|
45
|
-
}
|
|
46
|
-
catch (err) {
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
const creds = (await readData('creds')) || (0, Utils_1.initAuthCreds)();
|
|
50
|
-
return {
|
|
51
|
-
clearState,
|
|
52
|
-
saveCreds: () => writeData('creds', creds),
|
|
53
|
-
state: {
|
|
54
|
-
creds,
|
|
55
|
-
keys: {
|
|
56
|
-
get: async (type, ids) => {
|
|
57
|
-
const data = {};
|
|
58
|
-
await Promise.all(ids.map(async (id) => {
|
|
59
|
-
let value = await readData(`${type}-${id}`);
|
|
60
|
-
if (type === 'app-state-sync-key' && value) {
|
|
61
|
-
value = WAProto_1.proto.Message.AppStateSyncKeyData.fromObject(value);
|
|
62
|
-
}
|
|
63
|
-
data[id] = value;
|
|
64
|
-
}));
|
|
65
|
-
return data;
|
|
66
|
-
},
|
|
67
|
-
set: async (data) => {
|
|
68
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
69
|
-
const tasks = [];
|
|
70
|
-
for (const category in data) {
|
|
71
|
-
for (const id in data[category]) {
|
|
72
|
-
const value = data[category][id];
|
|
73
|
-
const key = `${category}-${id}`;
|
|
74
|
-
tasks.push(value ? writeData(key, value) : removeData(key));
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
await Promise.all(tasks);
|
|
78
|
-
},
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
|
-
exports.default = makeCacheManagerAuthState;
|