ndikzv1 26.0.12
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 +55057 -0
- package/WAProto/index.js +169661 -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/engine-requirements.js +10 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +282 -0
- package/lib/Defaults/index.js +122 -0
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +161 -0
- package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -0
- package/lib/Socket/Client/index.js +19 -0
- package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/web-socket-client.d.ts +12 -0
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +172 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +83 -0
- package/lib/Socket/chats.js +871 -0
- package/lib/Socket/groups.d.ts +124 -0
- package/lib/Socket/groups.js +332 -0
- package/lib/Socket/index.d.ts +174 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +161 -0
- package/lib/Socket/messages-recv.js +1046 -0
- package/lib/Socket/messages-send.d.ts +151 -0
- package/lib/Socket/messages-send.js +806 -0
- package/lib/Socket/newsletter.d.ts +136 -0
- package/lib/Socket/newsletter.js +250 -0
- package/lib/Socket/registration.d.ts +266 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +42 -0
- package/lib/Socket/socket.js +640 -0
- package/lib/Socket/usync.d.ts +36 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +2 -0
- package/lib/Store/index.js +8 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +431 -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 +109 -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 +109 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +23 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +199 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +64 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +35 -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 +384 -0
- package/lib/Types/Message.js +7 -0
- package/lib/Types/Newsletter.d.ts +79 -0
- package/lib/Types/Newsletter.js +18 -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 +119 -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 +64 -0
- package/lib/Types/index.js +42 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +206 -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 +70 -0
- package/lib/Utils/chat-utils.js +730 -0
- package/lib/Utils/crypto.d.ts +40 -0
- package/lib/Utils/crypto.js +193 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +204 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +520 -0
- package/lib/Utils/generics.d.ts +89 -0
- package/lib/Utils/generics.js +445 -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 +126 -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 +43 -0
- package/lib/Utils/messages-media.d.ts +120 -0
- package/lib/Utils/messages-media.js +879 -0
- package/lib/Utils/messages.d.ts +75 -0
- package/lib/Utils/messages.js +1022 -0
- package/lib/Utils/noise-handler.d.ts +20 -0
- package/lib/Utils/noise-handler.js +155 -0
- package/lib/Utils/process-message.d.ts +42 -0
- package/lib/Utils/process-message.js +372 -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 +125 -0
- package/lib/Utils/validate-connection.d.ts +11 -0
- package/lib/Utils/validate-connection.js +207 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +1303 -0
- package/lib/WABinary/decode.d.ts +6 -0
- package/lib/WABinary/decode.js +265 -0
- package/lib/WABinary/encode.d.ts +2 -0
- package/lib/WABinary/encode.js +250 -0
- package/lib/WABinary/generic-utils.d.ts +14 -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 +36 -0
- package/lib/WABinary/jid-utils.js +83 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +8 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +38 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +2 -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/UsyncBotProfileProtocol.d.ts +25 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +8 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +28 -0
- package/lib/WAUSync/USyncQuery.js +89 -0
- package/lib/WAUSync/USyncUser.d.ts +12 -0
- package/lib/WAUSync/USyncUser.js +26 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +63 -0
- package/package.json +90 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.makeUSyncSocket = void 0;
|
4
|
+
const boom_1 = require("@hapi/boom");
|
5
|
+
const WABinary_1 = require("../WABinary");
|
6
|
+
const socket_1 = require("./socket");
|
7
|
+
const makeUSyncSocket = (config) => {
|
8
|
+
const sock = (0, socket_1.makeSocket)(config);
|
9
|
+
const { generateMessageTag, query, } = sock;
|
10
|
+
const executeUSyncQuery = async (usyncQuery) => {
|
11
|
+
if (usyncQuery.protocols.length === 0) {
|
12
|
+
throw new boom_1.Boom('USyncQuery must have at least one protocol');
|
13
|
+
}
|
14
|
+
// todo: validate users, throw WARNING on no valid users
|
15
|
+
// variable below has only validated users
|
16
|
+
const validUsers = usyncQuery.users;
|
17
|
+
const userNodes = validUsers.map((user) => {
|
18
|
+
return {
|
19
|
+
tag: 'user',
|
20
|
+
attrs: {
|
21
|
+
jid: !user.phone ? user.id : undefined,
|
22
|
+
},
|
23
|
+
content: usyncQuery.protocols
|
24
|
+
.map((a) => a.getUserElement(user))
|
25
|
+
.filter(a => a !== null)
|
26
|
+
};
|
27
|
+
});
|
28
|
+
const listNode = {
|
29
|
+
tag: 'list',
|
30
|
+
attrs: {},
|
31
|
+
content: userNodes
|
32
|
+
};
|
33
|
+
const queryNode = {
|
34
|
+
tag: 'query',
|
35
|
+
attrs: {},
|
36
|
+
content: usyncQuery.protocols.map((a) => a.getQueryElement())
|
37
|
+
};
|
38
|
+
const iq = {
|
39
|
+
tag: 'iq',
|
40
|
+
attrs: {
|
41
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
42
|
+
type: 'get',
|
43
|
+
xmlns: 'usync',
|
44
|
+
},
|
45
|
+
content: [
|
46
|
+
{
|
47
|
+
tag: 'usync',
|
48
|
+
attrs: {
|
49
|
+
context: usyncQuery.context,
|
50
|
+
mode: usyncQuery.mode,
|
51
|
+
sid: generateMessageTag(),
|
52
|
+
last: 'true',
|
53
|
+
index: '0',
|
54
|
+
},
|
55
|
+
content: [
|
56
|
+
queryNode,
|
57
|
+
listNode
|
58
|
+
]
|
59
|
+
}
|
60
|
+
],
|
61
|
+
};
|
62
|
+
const result = await query(iq);
|
63
|
+
return usyncQuery.parseUSyncQueryResult(result);
|
64
|
+
};
|
65
|
+
return {
|
66
|
+
...sock,
|
67
|
+
executeUSyncQuery,
|
68
|
+
};
|
69
|
+
};
|
70
|
+
exports.makeUSyncSocket = makeUSyncSocket;
|
@@ -0,0 +1,8 @@
|
|
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
|
+
exports.makeInMemoryStore = void 0;
|
7
|
+
const make_in_memory_store_1 = __importDefault(require("./make-in-memory-store"));
|
8
|
+
exports.makeInMemoryStore = make_in_memory_store_1.default;
|
@@ -0,0 +1,118 @@
|
|
1
|
+
import type KeyedDB from '@adiwajshing/keyed-db';
|
2
|
+
import type { Comparable } from '@adiwajshing/keyed-db/lib/Types';
|
3
|
+
import { proto } from '../../WAProto';
|
4
|
+
import type makeMDSocket from '../Socket';
|
5
|
+
import type { BaileysEventEmitter, Chat, ConnectionState, Contact, GroupMetadata, PresenceData, WAMessage, WAMessageCursor, WAMessageKey } from '../Types';
|
6
|
+
import { Label } from '../Types/Label';
|
7
|
+
import { LabelAssociation } from '../Types/LabelAssociation';
|
8
|
+
import { ILogger } from '../Utils/logger';
|
9
|
+
import { ObjectRepository } from './object-repository';
|
10
|
+
type WASocket = ReturnType<typeof makeMDSocket>;
|
11
|
+
export declare const waChatKey: (pin: boolean) => {
|
12
|
+
key: (c: Chat) => string;
|
13
|
+
compare: (k1: string, k2: string) => number;
|
14
|
+
};
|
15
|
+
export declare const waMessageID: (m: WAMessage) => string;
|
16
|
+
export declare const waLabelAssociationKey: Comparable<LabelAssociation, string>;
|
17
|
+
export type BaileysInMemoryStoreConfig = {
|
18
|
+
chatKey?: Comparable<Chat, string>;
|
19
|
+
labelAssociationKey?: Comparable<LabelAssociation, string>;
|
20
|
+
logger?: ILogger;
|
21
|
+
socket?: WASocket;
|
22
|
+
};
|
23
|
+
declare const _default: (config: BaileysInMemoryStoreConfig) => {
|
24
|
+
chats: KeyedDB<Chat, string>;
|
25
|
+
contacts: {
|
26
|
+
[_: string]: Contact;
|
27
|
+
};
|
28
|
+
messages: {
|
29
|
+
[_: string]: {
|
30
|
+
array: proto.IWebMessageInfo[];
|
31
|
+
get: (id: string) => proto.IWebMessageInfo | undefined;
|
32
|
+
upsert: (item: proto.IWebMessageInfo, mode: "append" | "prepend") => void;
|
33
|
+
update: (item: proto.IWebMessageInfo) => boolean;
|
34
|
+
remove: (item: proto.IWebMessageInfo) => boolean;
|
35
|
+
updateAssign: (id: string, update: Partial<proto.IWebMessageInfo>) => boolean;
|
36
|
+
clear: () => void;
|
37
|
+
filter: (contain: (item: proto.IWebMessageInfo) => boolean) => void;
|
38
|
+
toJSON: () => proto.IWebMessageInfo[];
|
39
|
+
fromJSON: (newItems: proto.IWebMessageInfo[]) => void;
|
40
|
+
};
|
41
|
+
};
|
42
|
+
groupMetadata: {
|
43
|
+
[_: string]: GroupMetadata;
|
44
|
+
};
|
45
|
+
state: ConnectionState;
|
46
|
+
presences: {
|
47
|
+
[id: string]: {
|
48
|
+
[participant: string]: PresenceData;
|
49
|
+
};
|
50
|
+
};
|
51
|
+
labels: ObjectRepository<Label>;
|
52
|
+
labelAssociations: KeyedDB<LabelAssociation, string>;
|
53
|
+
bind: (ev: BaileysEventEmitter) => void;
|
54
|
+
/** loads messages from the store, if not found -- uses the legacy connection */
|
55
|
+
loadMessages: (jid: string, count: number, cursor: WAMessageCursor) => Promise<proto.IWebMessageInfo[]>;
|
56
|
+
/**
|
57
|
+
* Get all available labels for profile
|
58
|
+
*
|
59
|
+
* Keep in mind that the list is formed from predefined tags and tags
|
60
|
+
* that were "caught" during their editing.
|
61
|
+
*/
|
62
|
+
getLabels: () => ObjectRepository<Label>;
|
63
|
+
/**
|
64
|
+
* Get labels for chat
|
65
|
+
*
|
66
|
+
* @returns Label IDs
|
67
|
+
**/
|
68
|
+
getChatLabels: (chatId: string) => LabelAssociation[];
|
69
|
+
/**
|
70
|
+
* Get labels for message
|
71
|
+
*
|
72
|
+
* @returns Label IDs
|
73
|
+
**/
|
74
|
+
getMessageLabels: (messageId: string) => string[];
|
75
|
+
loadMessage: (jid: string, id: string) => Promise<proto.IWebMessageInfo | undefined>;
|
76
|
+
mostRecentMessage: (jid: string) => Promise<proto.IWebMessageInfo>;
|
77
|
+
fetchImageUrl: (jid: string, sock: WASocket | undefined) => Promise<string | null | undefined>;
|
78
|
+
fetchGroupMetadata: (jid: string, sock: WASocket | undefined) => Promise<GroupMetadata>;
|
79
|
+
fetchMessageReceipts: ({ remoteJid, id }: WAMessageKey) => Promise<proto.IUserReceipt[] | null | undefined>;
|
80
|
+
toJSON: () => {
|
81
|
+
chats: KeyedDB<Chat, string>;
|
82
|
+
contacts: {
|
83
|
+
[_: string]: Contact;
|
84
|
+
};
|
85
|
+
messages: {
|
86
|
+
[_: string]: {
|
87
|
+
array: proto.IWebMessageInfo[];
|
88
|
+
get: (id: string) => proto.IWebMessageInfo | undefined;
|
89
|
+
upsert: (item: proto.IWebMessageInfo, mode: "append" | "prepend") => void;
|
90
|
+
update: (item: proto.IWebMessageInfo) => boolean;
|
91
|
+
remove: (item: proto.IWebMessageInfo) => boolean;
|
92
|
+
updateAssign: (id: string, update: Partial<proto.IWebMessageInfo>) => boolean;
|
93
|
+
clear: () => void;
|
94
|
+
filter: (contain: (item: proto.IWebMessageInfo) => boolean) => void;
|
95
|
+
toJSON: () => proto.IWebMessageInfo[];
|
96
|
+
fromJSON: (newItems: proto.IWebMessageInfo[]) => void;
|
97
|
+
};
|
98
|
+
};
|
99
|
+
labels: ObjectRepository<Label>;
|
100
|
+
labelAssociations: KeyedDB<LabelAssociation, string>;
|
101
|
+
};
|
102
|
+
fromJSON: (json: {
|
103
|
+
chats: Chat[];
|
104
|
+
contacts: {
|
105
|
+
[id: string]: Contact;
|
106
|
+
};
|
107
|
+
messages: {
|
108
|
+
[id: string]: WAMessage[];
|
109
|
+
};
|
110
|
+
labels: {
|
111
|
+
[labelId: string]: Label;
|
112
|
+
};
|
113
|
+
labelAssociations: LabelAssociation[];
|
114
|
+
}) => void;
|
115
|
+
writeToFile: (path: string) => void;
|
116
|
+
readFromFile: (path: string) => void;
|
117
|
+
};
|
118
|
+
export default _default;
|
@@ -0,0 +1,431 @@
|
|
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
|
+
exports.waLabelAssociationKey = exports.waMessageID = exports.waChatKey = void 0;
|
7
|
+
const WAProto_1 = require("../../WAProto");
|
8
|
+
const Defaults_1 = require("../Defaults");
|
9
|
+
const LabelAssociation_1 = require("../Types/LabelAssociation");
|
10
|
+
const Utils_1 = require("../Utils");
|
11
|
+
const WABinary_1 = require("../WABinary");
|
12
|
+
const make_ordered_dictionary_1 = __importDefault(require("./make-ordered-dictionary"));
|
13
|
+
const object_repository_1 = require("./object-repository");
|
14
|
+
const waChatKey = (pin) => ({
|
15
|
+
key: (c) => (pin ? (c.pinned ? '1' : '0') : '') + (c.archived ? '0' : '1') + (c.conversationTimestamp ? c.conversationTimestamp.toString(16).padStart(8, '0') : '') + c.id,
|
16
|
+
compare: (k1, k2) => k2.localeCompare(k1)
|
17
|
+
});
|
18
|
+
exports.waChatKey = waChatKey;
|
19
|
+
const waMessageID = (m) => m.key.id || '';
|
20
|
+
exports.waMessageID = waMessageID;
|
21
|
+
exports.waLabelAssociationKey = {
|
22
|
+
key: (la) => (la.type === LabelAssociation_1.LabelAssociationType.Chat ? la.chatId + la.labelId : la.chatId + la.messageId + la.labelId),
|
23
|
+
compare: (k1, k2) => k2.localeCompare(k1)
|
24
|
+
};
|
25
|
+
const makeMessagesDictionary = () => (0, make_ordered_dictionary_1.default)(exports.waMessageID);
|
26
|
+
exports.default = (config) => {
|
27
|
+
const socket = config.socket;
|
28
|
+
const chatKey = config.chatKey || (0, exports.waChatKey)(true);
|
29
|
+
const labelAssociationKey = config.labelAssociationKey || exports.waLabelAssociationKey;
|
30
|
+
const logger = config.logger || Defaults_1.DEFAULT_CONNECTION_CONFIG.logger.child({ stream: 'in-mem-store' });
|
31
|
+
const KeyedDB = require('@adiwajshing/keyed-db').default;
|
32
|
+
const chats = new KeyedDB(chatKey, c => c.id);
|
33
|
+
const messages = {};
|
34
|
+
const contacts = {};
|
35
|
+
const groupMetadata = {};
|
36
|
+
const presences = {};
|
37
|
+
const state = { connection: 'close' };
|
38
|
+
const labels = new object_repository_1.ObjectRepository();
|
39
|
+
const labelAssociations = new KeyedDB(labelAssociationKey, labelAssociationKey.key);
|
40
|
+
const assertMessageList = (jid) => {
|
41
|
+
if (!messages[jid]) {
|
42
|
+
messages[jid] = makeMessagesDictionary();
|
43
|
+
}
|
44
|
+
return messages[jid];
|
45
|
+
};
|
46
|
+
const contactsUpsert = (newContacts) => {
|
47
|
+
const oldContacts = new Set(Object.keys(contacts));
|
48
|
+
for (const contact of newContacts) {
|
49
|
+
oldContacts.delete(contact.id);
|
50
|
+
contacts[contact.id] = Object.assign(contacts[contact.id] || {}, contact);
|
51
|
+
}
|
52
|
+
return oldContacts;
|
53
|
+
};
|
54
|
+
const labelsUpsert = (newLabels) => {
|
55
|
+
for (const label of newLabels) {
|
56
|
+
labels.upsertById(label.id, label);
|
57
|
+
}
|
58
|
+
};
|
59
|
+
const getValidContacts = () => {
|
60
|
+
for (const contact of Object.keys(contacts)) {
|
61
|
+
if (contact.indexOf('@') < 0) {
|
62
|
+
delete contacts[contact];
|
63
|
+
}
|
64
|
+
}
|
65
|
+
return Object.keys(contacts);
|
66
|
+
};
|
67
|
+
/**
|
68
|
+
* binds to a BaileysEventEmitter.
|
69
|
+
* It listens to all events and constructs a state that you can query accurate data from.
|
70
|
+
* Eg. can use the store to fetch chats, contacts, messages etc.
|
71
|
+
* @param ev typically the event emitter from the socket connection
|
72
|
+
*/
|
73
|
+
const bind = (ev) => {
|
74
|
+
ev.on('connection.update', update => {
|
75
|
+
Object.assign(state, update);
|
76
|
+
});
|
77
|
+
ev.on('messaging-history.set', ({ chats: newChats, contacts: newContacts, messages: newMessages, isLatest, syncType }) => {
|
78
|
+
if (syncType === WAProto_1.proto.HistorySync.HistorySyncType.ON_DEMAND) {
|
79
|
+
return; // FOR NOW,
|
80
|
+
//TODO: HANDLE
|
81
|
+
}
|
82
|
+
if (isLatest) {
|
83
|
+
chats.clear();
|
84
|
+
for (const id in messages) {
|
85
|
+
delete messages[id];
|
86
|
+
}
|
87
|
+
}
|
88
|
+
const chatsAdded = chats.insertIfAbsent(...newChats).length;
|
89
|
+
logger.debug({ chatsAdded }, 'synced chats');
|
90
|
+
const oldContacts = contactsUpsert(newContacts);
|
91
|
+
if (isLatest) {
|
92
|
+
for (const jid of oldContacts) {
|
93
|
+
delete contacts[jid];
|
94
|
+
}
|
95
|
+
}
|
96
|
+
logger.debug({ deletedContacts: isLatest ? oldContacts.size : 0, newContacts }, 'synced contacts');
|
97
|
+
for (const msg of newMessages) {
|
98
|
+
const jid = msg.key.remoteJid;
|
99
|
+
const list = assertMessageList(jid);
|
100
|
+
list.upsert(msg, 'prepend');
|
101
|
+
}
|
102
|
+
logger.debug({ messages: newMessages.length }, 'synced messages');
|
103
|
+
});
|
104
|
+
ev.on('contacts.upsert', contacts => {
|
105
|
+
contactsUpsert(contacts);
|
106
|
+
});
|
107
|
+
ev.on('contacts.update', async (updates) => {
|
108
|
+
var _a;
|
109
|
+
for (const update of updates) {
|
110
|
+
let contact;
|
111
|
+
if (contacts[update.id]) {
|
112
|
+
contact = contacts[update.id];
|
113
|
+
}
|
114
|
+
else {
|
115
|
+
const validContacts = getValidContacts();
|
116
|
+
const contactHashes = validContacts.map((contactId) => {
|
117
|
+
const { user } = (0, WABinary_1.jidDecode)(contactId);
|
118
|
+
return [contactId, ((0, Utils_1.md5)(Buffer.from(user + 'WA_ADD_NOTIF', 'utf8'))).toString('base64').slice(0, 3)];
|
119
|
+
});
|
120
|
+
contact = contacts[((_a = contactHashes.find(([, b]) => b === update.id)) === null || _a === void 0 ? void 0 : _a[0]) || '']; // find contact by attrs.hash, when user is not saved as a contact
|
121
|
+
}
|
122
|
+
if (contact) {
|
123
|
+
if (update.imgUrl === 'changed') {
|
124
|
+
contact.imgUrl = socket ? await (socket === null || socket === void 0 ? void 0 : socket.profilePictureUrl(contact.id)) : undefined;
|
125
|
+
}
|
126
|
+
else if (update.imgUrl === 'removed') {
|
127
|
+
delete contact.imgUrl;
|
128
|
+
}
|
129
|
+
Object.assign(contacts[contact.id], contact);
|
130
|
+
}
|
131
|
+
else {
|
132
|
+
logger.debug({ update }, 'got update for non-existant contact');
|
133
|
+
}
|
134
|
+
}
|
135
|
+
});
|
136
|
+
ev.on('chats.upsert', newChats => {
|
137
|
+
chats.upsert(...newChats);
|
138
|
+
});
|
139
|
+
ev.on('chats.update', updates => {
|
140
|
+
for (let update of updates) {
|
141
|
+
const result = chats.update(update.id, chat => {
|
142
|
+
if (update.unreadCount > 0) {
|
143
|
+
update = { ...update };
|
144
|
+
update.unreadCount = (chat.unreadCount || 0) + update.unreadCount;
|
145
|
+
}
|
146
|
+
Object.assign(chat, update);
|
147
|
+
});
|
148
|
+
if (!result) {
|
149
|
+
logger.debug({ update }, 'got update for non-existant chat');
|
150
|
+
}
|
151
|
+
}
|
152
|
+
});
|
153
|
+
ev.on('labels.edit', (label) => {
|
154
|
+
if (label.deleted) {
|
155
|
+
return labels.deleteById(label.id);
|
156
|
+
}
|
157
|
+
// WhatsApp can store only up to 20 labels
|
158
|
+
if (labels.count() < 20) {
|
159
|
+
return labels.upsertById(label.id, label);
|
160
|
+
}
|
161
|
+
logger.error('Labels count exceed');
|
162
|
+
});
|
163
|
+
ev.on('labels.association', ({ type, association }) => {
|
164
|
+
switch (type) {
|
165
|
+
case 'add':
|
166
|
+
labelAssociations.upsert(association);
|
167
|
+
break;
|
168
|
+
case 'remove':
|
169
|
+
labelAssociations.delete(association);
|
170
|
+
break;
|
171
|
+
default:
|
172
|
+
console.error(`unknown operation type [${type}]`);
|
173
|
+
}
|
174
|
+
});
|
175
|
+
ev.on('presence.update', ({ id, presences: update }) => {
|
176
|
+
presences[id] = presences[id] || {};
|
177
|
+
Object.assign(presences[id], update);
|
178
|
+
});
|
179
|
+
ev.on('chats.delete', deletions => {
|
180
|
+
for (const item of deletions) {
|
181
|
+
if (chats.get(item)) {
|
182
|
+
chats.deleteById(item);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
});
|
186
|
+
ev.on('messages.upsert', ({ messages: newMessages, type }) => {
|
187
|
+
switch (type) {
|
188
|
+
case 'append':
|
189
|
+
case 'notify':
|
190
|
+
for (const msg of newMessages) {
|
191
|
+
const jid = (0, WABinary_1.jidNormalizedUser)(msg.key.remoteJid);
|
192
|
+
const list = assertMessageList(jid);
|
193
|
+
list.upsert(msg, 'append');
|
194
|
+
if (type === 'notify') {
|
195
|
+
if (!chats.get(jid)) {
|
196
|
+
ev.emit('chats.upsert', [
|
197
|
+
{
|
198
|
+
id: jid,
|
199
|
+
conversationTimestamp: (0, Utils_1.toNumber)(msg.messageTimestamp),
|
200
|
+
unreadCount: 1
|
201
|
+
}
|
202
|
+
]);
|
203
|
+
}
|
204
|
+
}
|
205
|
+
}
|
206
|
+
break;
|
207
|
+
}
|
208
|
+
});
|
209
|
+
ev.on('messages.update', updates => {
|
210
|
+
var _a;
|
211
|
+
for (const { update, key } of updates) {
|
212
|
+
const list = assertMessageList((0, WABinary_1.jidNormalizedUser)(key.remoteJid));
|
213
|
+
if (update === null || update === void 0 ? void 0 : update.status) {
|
214
|
+
const listStatus = (_a = list.get(key.id)) === null || _a === void 0 ? void 0 : _a.status;
|
215
|
+
if (listStatus && (update === null || update === void 0 ? void 0 : update.status) <= listStatus) {
|
216
|
+
logger.debug({ update, storedStatus: listStatus }, 'status stored newer then update');
|
217
|
+
delete update.status;
|
218
|
+
logger.debug({ update }, 'new update object');
|
219
|
+
}
|
220
|
+
}
|
221
|
+
const result = list.updateAssign(key.id, update);
|
222
|
+
if (!result) {
|
223
|
+
logger.debug({ update }, 'got update for non-existent message');
|
224
|
+
}
|
225
|
+
}
|
226
|
+
});
|
227
|
+
ev.on('messages.delete', item => {
|
228
|
+
if ('all' in item) {
|
229
|
+
const list = messages[item.jid];
|
230
|
+
list === null || list === void 0 ? void 0 : list.clear();
|
231
|
+
}
|
232
|
+
else {
|
233
|
+
const jid = item.keys[0].remoteJid;
|
234
|
+
const list = messages[jid];
|
235
|
+
if (list) {
|
236
|
+
const idSet = new Set(item.keys.map(k => k.id));
|
237
|
+
list.filter(m => !idSet.has(m.key.id));
|
238
|
+
}
|
239
|
+
}
|
240
|
+
});
|
241
|
+
ev.on('groups.update', updates => {
|
242
|
+
for (const update of updates) {
|
243
|
+
const id = update.id;
|
244
|
+
if (groupMetadata[id]) {
|
245
|
+
Object.assign(groupMetadata[id], update);
|
246
|
+
}
|
247
|
+
else {
|
248
|
+
logger.debug({ update }, 'got update for non-existant group metadata');
|
249
|
+
}
|
250
|
+
}
|
251
|
+
});
|
252
|
+
ev.on('group-participants.update', ({ id, participants, action }) => {
|
253
|
+
const metadata = groupMetadata[id];
|
254
|
+
if (metadata) {
|
255
|
+
switch (action) {
|
256
|
+
case 'add':
|
257
|
+
metadata.participants.push(...participants.map(id => ({ id, isAdmin: false, isSuperAdmin: false })));
|
258
|
+
break;
|
259
|
+
case 'demote':
|
260
|
+
case 'promote':
|
261
|
+
for (const participant of metadata.participants) {
|
262
|
+
if (participants.includes(participant.id)) {
|
263
|
+
participant.isAdmin = action === 'promote';
|
264
|
+
}
|
265
|
+
}
|
266
|
+
break;
|
267
|
+
case 'remove':
|
268
|
+
metadata.participants = metadata.participants.filter(p => !participants.includes(p.id));
|
269
|
+
break;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
});
|
273
|
+
ev.on('message-receipt.update', updates => {
|
274
|
+
for (const { key, receipt } of updates) {
|
275
|
+
const obj = messages[key.remoteJid];
|
276
|
+
const msg = obj === null || obj === void 0 ? void 0 : obj.get(key.id);
|
277
|
+
if (msg) {
|
278
|
+
(0, Utils_1.updateMessageWithReceipt)(msg, receipt);
|
279
|
+
}
|
280
|
+
}
|
281
|
+
});
|
282
|
+
ev.on('messages.reaction', (reactions) => {
|
283
|
+
for (const { key, reaction } of reactions) {
|
284
|
+
const obj = messages[key.remoteJid];
|
285
|
+
const msg = obj === null || obj === void 0 ? void 0 : obj.get(key.id);
|
286
|
+
if (msg) {
|
287
|
+
(0, Utils_1.updateMessageWithReaction)(msg, reaction);
|
288
|
+
}
|
289
|
+
}
|
290
|
+
});
|
291
|
+
};
|
292
|
+
const toJSON = () => ({
|
293
|
+
chats,
|
294
|
+
contacts,
|
295
|
+
messages,
|
296
|
+
labels,
|
297
|
+
labelAssociations
|
298
|
+
});
|
299
|
+
const fromJSON = (json) => {
|
300
|
+
chats.upsert(...json.chats);
|
301
|
+
labelAssociations.upsert(...json.labelAssociations || []);
|
302
|
+
contactsUpsert(Object.values(json.contacts));
|
303
|
+
labelsUpsert(Object.values(json.labels || {}));
|
304
|
+
for (const jid in json.messages) {
|
305
|
+
const list = assertMessageList(jid);
|
306
|
+
for (const msg of json.messages[jid]) {
|
307
|
+
list.upsert(WAProto_1.proto.WebMessageInfo.fromObject(msg), 'append');
|
308
|
+
}
|
309
|
+
}
|
310
|
+
};
|
311
|
+
return {
|
312
|
+
chats,
|
313
|
+
contacts,
|
314
|
+
messages,
|
315
|
+
groupMetadata,
|
316
|
+
state,
|
317
|
+
presences,
|
318
|
+
labels,
|
319
|
+
labelAssociations,
|
320
|
+
bind,
|
321
|
+
/** loads messages from the store, if not found -- uses the legacy connection */
|
322
|
+
loadMessages: async (jid, count, cursor) => {
|
323
|
+
const list = assertMessageList(jid);
|
324
|
+
const mode = !cursor || 'before' in cursor ? 'before' : 'after';
|
325
|
+
const cursorKey = !!cursor ? ('before' in cursor ? cursor.before : cursor.after) : undefined;
|
326
|
+
const cursorValue = cursorKey ? list.get(cursorKey.id) : undefined;
|
327
|
+
let messages;
|
328
|
+
if (list && mode === 'before' && (!cursorKey || cursorValue)) {
|
329
|
+
if (cursorValue) {
|
330
|
+
const msgIdx = list.array.findIndex(m => m.key.id === (cursorKey === null || cursorKey === void 0 ? void 0 : cursorKey.id));
|
331
|
+
messages = list.array.slice(0, msgIdx);
|
332
|
+
}
|
333
|
+
else {
|
334
|
+
messages = list.array;
|
335
|
+
}
|
336
|
+
const diff = count - messages.length;
|
337
|
+
if (diff < 0) {
|
338
|
+
messages = messages.slice(-count); // get the last X messages
|
339
|
+
}
|
340
|
+
}
|
341
|
+
else {
|
342
|
+
messages = [];
|
343
|
+
}
|
344
|
+
return messages;
|
345
|
+
},
|
346
|
+
/**
|
347
|
+
* Get all available labels for profile
|
348
|
+
*
|
349
|
+
* Keep in mind that the list is formed from predefined tags and tags
|
350
|
+
* that were "caught" during their editing.
|
351
|
+
*/
|
352
|
+
getLabels: () => {
|
353
|
+
return labels;
|
354
|
+
},
|
355
|
+
/**
|
356
|
+
* Get labels for chat
|
357
|
+
*
|
358
|
+
* @returns Label IDs
|
359
|
+
**/
|
360
|
+
getChatLabels: (chatId) => {
|
361
|
+
return labelAssociations.filter((la) => la.chatId === chatId).all();
|
362
|
+
},
|
363
|
+
/**
|
364
|
+
* Get labels for message
|
365
|
+
*
|
366
|
+
* @returns Label IDs
|
367
|
+
**/
|
368
|
+
getMessageLabels: (messageId) => {
|
369
|
+
const associations = labelAssociations
|
370
|
+
.filter((la) => la.messageId === messageId)
|
371
|
+
.all();
|
372
|
+
return associations.map(({ labelId }) => labelId);
|
373
|
+
},
|
374
|
+
loadMessage: async (jid, id) => { var _a; return (_a = messages[jid]) === null || _a === void 0 ? void 0 : _a.get(id); },
|
375
|
+
mostRecentMessage: async (jid) => {
|
376
|
+
var _a;
|
377
|
+
const message = (_a = messages[jid]) === null || _a === void 0 ? void 0 : _a.array.slice(-1)[0];
|
378
|
+
return message;
|
379
|
+
},
|
380
|
+
fetchImageUrl: async (jid, sock) => {
|
381
|
+
const contact = contacts[jid];
|
382
|
+
if (!contact) {
|
383
|
+
return sock === null || sock === void 0 ? void 0 : sock.profilePictureUrl(jid);
|
384
|
+
}
|
385
|
+
if (typeof contact.imgUrl === 'undefined') {
|
386
|
+
contact.imgUrl = await (sock === null || sock === void 0 ? void 0 : sock.profilePictureUrl(jid));
|
387
|
+
}
|
388
|
+
return contact.imgUrl;
|
389
|
+
},
|
390
|
+
fetchGroupMetadata: async (jid, sock) => {
|
391
|
+
if (!groupMetadata[jid]) {
|
392
|
+
const metadata = await (sock === null || sock === void 0 ? void 0 : sock.groupMetadata(jid));
|
393
|
+
if (metadata) {
|
394
|
+
groupMetadata[jid] = metadata;
|
395
|
+
}
|
396
|
+
}
|
397
|
+
return groupMetadata[jid];
|
398
|
+
},
|
399
|
+
// fetchBroadcastListInfo: async(jid: string, sock: WASocket | undefined) => {
|
400
|
+
// if(!groupMetadata[jid]) {
|
401
|
+
// const metadata = await sock?.getBroadcastListInfo(jid)
|
402
|
+
// if(metadata) {
|
403
|
+
// groupMetadata[jid] = metadata
|
404
|
+
// }
|
405
|
+
// }
|
406
|
+
// return groupMetadata[jid]
|
407
|
+
// },
|
408
|
+
fetchMessageReceipts: async ({ remoteJid, id }) => {
|
409
|
+
const list = messages[remoteJid];
|
410
|
+
const msg = list === null || list === void 0 ? void 0 : list.get(id);
|
411
|
+
return msg === null || msg === void 0 ? void 0 : msg.userReceipt;
|
412
|
+
},
|
413
|
+
toJSON,
|
414
|
+
fromJSON,
|
415
|
+
writeToFile: (path) => {
|
416
|
+
// require fs here so that in case "fs" is not available -- the app does not crash
|
417
|
+
const { writeFileSync } = require('fs');
|
418
|
+
writeFileSync(path, JSON.stringify(toJSON()));
|
419
|
+
},
|
420
|
+
readFromFile: (path) => {
|
421
|
+
// require fs here so that in case "fs" is not available -- the app does not crash
|
422
|
+
const { readFileSync, existsSync } = require('fs');
|
423
|
+
if (existsSync(path)) {
|
424
|
+
logger.debug({ path }, 'reading from file');
|
425
|
+
const jsonStr = readFileSync(path, { encoding: 'utf-8' });
|
426
|
+
const json = JSON.parse(jsonStr);
|
427
|
+
fromJSON(json);
|
428
|
+
}
|
429
|
+
}
|
430
|
+
};
|
431
|
+
};
|
@@ -0,0 +1,13 @@
|
|
1
|
+
declare function makeOrderedDictionary<T>(idGetter: (item: T) => string): {
|
2
|
+
array: T[];
|
3
|
+
get: (id: string) => T | undefined;
|
4
|
+
upsert: (item: T, mode: "append" | "prepend") => void;
|
5
|
+
update: (item: T) => boolean;
|
6
|
+
remove: (item: T) => boolean;
|
7
|
+
updateAssign: (id: string, update: Partial<T>) => boolean;
|
8
|
+
clear: () => void;
|
9
|
+
filter: (contain: (item: T) => boolean) => void;
|
10
|
+
toJSON: () => T[];
|
11
|
+
fromJSON: (newItems: T[]) => void;
|
12
|
+
};
|
13
|
+
export default makeOrderedDictionary;
|