keith-baileys 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/WAProto/GenerateStatics.sh +2 -0
- package/WAProto/WAProto.proto +4633 -0
- package/WAProto/index.js +165029 -0
- package/WAProto/keith +1 -0
- package/engine-requirements.js +10 -0
- package/lib/Defaults/Keith +1 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.js +105 -0
- package/lib/Signal/Group/Keith +1 -0
- package/lib/Signal/Group/ciphertext-message.js +15 -0
- package/lib/Signal/Group/group-session-builder.js +64 -0
- package/lib/Signal/Group/group_cipher.js +96 -0
- package/lib/Signal/Group/index.js +57 -0
- package/lib/Signal/Group/keyhelper.js +55 -0
- package/lib/Signal/Group/queue-job.js +57 -0
- package/lib/Signal/Group/sender-chain-key.js +34 -0
- package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
- package/lib/Signal/Group/sender-key-message.js +69 -0
- package/lib/Signal/Group/sender-key-name.js +51 -0
- package/lib/Signal/Group/sender-key-record.js +53 -0
- package/lib/Signal/Group/sender-key-state.js +99 -0
- package/lib/Signal/Group/sender-message-key.js +29 -0
- package/lib/Signal/Keith +1 -0
- package/lib/Signal/libsignal.js +174 -0
- package/lib/Socket/Client/Keith +1 -0
- package/lib/Socket/Client/index.js +18 -0
- package/lib/Socket/Client/types.js +13 -0
- package/lib/Socket/Client/websocket.js +62 -0
- package/lib/Socket/Keith +1 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.js +880 -0
- package/lib/Socket/groups.js +340 -0
- package/lib/Socket/groupstatus.js +237 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.js +1077 -0
- package/lib/Socket/messages-send.js +988 -0
- package/lib/Socket/mex.js +46 -0
- package/lib/Socket/newsletter.js +233 -0
- package/lib/Socket/socket.js +617 -0
- package/lib/Socket/usync.js +65 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.js +10 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Keith +1 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.js +7 -0
- package/lib/Types/Newsletter.js +33 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.js +42 -0
- package/lib/Utils/Keith +1 -0
- package/lib/Utils/auth-utils.js +199 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.js +240 -0
- package/lib/Utils/chat-utils.js +741 -0
- package/lib/Utils/crypto.js +187 -0
- package/lib/Utils/decode-wa-message.js +283 -0
- package/lib/Utils/event-buffer.js +516 -0
- package/lib/Utils/generics.js +400 -0
- package/lib/Utils/history.js +100 -0
- package/lib/Utils/index.js +34 -0
- package/lib/Utils/lid-mapping.js +88 -0
- package/lib/Utils/link-preview.js +122 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.js +44 -0
- package/lib/Utils/messages-media.js +706 -0
- package/lib/Utils/messages.js +797 -0
- package/lib/Utils/noise-handler.js +150 -0
- package/lib/Utils/process-message.js +381 -0
- package/lib/Utils/signal.js +155 -0
- package/lib/Utils/use-multi-file-auth-state.js +124 -0
- package/lib/Utils/validate-connection.js +170 -0
- package/lib/WABinary/Keith +1 -0
- package/lib/WABinary/constants.js +1303 -0
- package/lib/WABinary/decode.js +266 -0
- package/lib/WABinary/encode.js +252 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.js +66 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.js +15243 -0
- package/lib/WAM/encode.js +153 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAM/keith +1 -0
- package/lib/WAUSync/Keith +1 -0
- package/lib/WAUSync/Protocols/Keith +1 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.js +93 -0
- package/lib/WAUSync/USyncUser.js +26 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.js +30 -0
- package/package.json +32 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.jidNormalizedUser = exports.isJidBot = exports.isJidNewsletter = exports.isJidStatusBroadcast = exports.isJidGroup = exports.isJidBroadcast = exports.isLidUser = exports.isJidUser = exports.isJidMetaIa = exports.areJidsSameUser = exports.jidDecode = exports.jidEncode = exports.META_AI_JID = exports.STORIES_JID = exports.PSA_WID = exports.SERVER_JID = exports.OFFICIAL_BIZ_JID = exports.S_WHATSAPP_NET = void 0;
|
|
4
|
+
exports.S_WHATSAPP_NET = '@s.whatsapp.net';
|
|
5
|
+
exports.OFFICIAL_BIZ_JID = '16505361212@c.us';
|
|
6
|
+
exports.SERVER_JID = 'server@c.us';
|
|
7
|
+
exports.PSA_WID = '0@c.us';
|
|
8
|
+
exports.STORIES_JID = 'status@broadcast';
|
|
9
|
+
exports.META_AI_JID = '13135550002@c.us';
|
|
10
|
+
const jidEncode = (user, server, device, agent) => {
|
|
11
|
+
return `${user || ''}${!!agent ? `_${agent}` : ''}${!!device ? `:${device}` : ''}@${server}`;
|
|
12
|
+
};
|
|
13
|
+
exports.jidEncode = jidEncode;
|
|
14
|
+
const jidDecode = (jid) => {
|
|
15
|
+
const sepIdx = typeof jid === 'string' ? jid.indexOf('@') : -1;
|
|
16
|
+
if (sepIdx < 0) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
const server = jid.slice(sepIdx + 1);
|
|
20
|
+
const userCombined = jid.slice(0, sepIdx);
|
|
21
|
+
const [userAgent, device] = userCombined.split(':');
|
|
22
|
+
const user = userAgent.split('_')[0];
|
|
23
|
+
return {
|
|
24
|
+
server: server,
|
|
25
|
+
user,
|
|
26
|
+
domainType: server === 'lid' ? 1 : 0,
|
|
27
|
+
device: device ? +device : undefined
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
exports.jidDecode = jidDecode;
|
|
31
|
+
/** is the jid a user */
|
|
32
|
+
const areJidsSameUser = (jid1, jid2) => { var _a, _b; return ((_a = (0, exports.jidDecode)(jid1)) === null || _a === void 0 ? void 0 : _a.user) === ((_b = (0, exports.jidDecode)(jid2)) === null || _b === void 0 ? void 0 : _b.user); };
|
|
33
|
+
exports.areJidsSameUser = areJidsSameUser;
|
|
34
|
+
/** is the jid Meta IA */
|
|
35
|
+
const isJidMetaIa = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@bot');
|
|
36
|
+
exports.isJidMetaIa = isJidMetaIa;
|
|
37
|
+
/** is the jid a user */
|
|
38
|
+
const isJidUser = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@s.whatsapp.net');
|
|
39
|
+
exports.isJidUser = isJidUser;
|
|
40
|
+
/** is the jid a group */
|
|
41
|
+
const isLidUser = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@lid');
|
|
42
|
+
exports.isLidUser = isLidUser;
|
|
43
|
+
/** is the jid a broadcast */
|
|
44
|
+
const isJidBroadcast = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@broadcast');
|
|
45
|
+
exports.isJidBroadcast = isJidBroadcast;
|
|
46
|
+
/** is the jid a group */
|
|
47
|
+
const isJidGroup = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@g.us');
|
|
48
|
+
exports.isJidGroup = isJidGroup;
|
|
49
|
+
/** is the jid the status broadcast */
|
|
50
|
+
const isJidStatusBroadcast = (jid) => jid === 'status@broadcast';
|
|
51
|
+
exports.isJidStatusBroadcast = isJidStatusBroadcast;
|
|
52
|
+
/** is the jid a newsletter */
|
|
53
|
+
const isJidNewsletter = (jid) => jid === null || jid === void 0 ? void 0 : jid.endsWith('@newsletter');
|
|
54
|
+
exports.isJidNewsletter = isJidNewsletter;
|
|
55
|
+
const botRegexp = /^1313555\d{4}$|^131655500\d{2}$/;
|
|
56
|
+
const isJidBot = (jid) => jid && botRegexp.test(jid.split('@')[0]) && jid.endsWith('@c.us');
|
|
57
|
+
exports.isJidBot = isJidBot;
|
|
58
|
+
const jidNormalizedUser = (jid) => {
|
|
59
|
+
const result = (0, exports.jidDecode)(jid);
|
|
60
|
+
if (!result) {
|
|
61
|
+
return '';
|
|
62
|
+
}
|
|
63
|
+
const { user, server } = result;
|
|
64
|
+
return (0, exports.jidEncode)(user, server === 'c.us' ? 's.whatsapp.net' : server);
|
|
65
|
+
};
|
|
66
|
+
exports.jidNormalizedUser = jidNormalizedUser;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BinaryInfo = void 0;
|
|
4
|
+
class BinaryInfo {
|
|
5
|
+
constructor(options = {}) {
|
|
6
|
+
this.protocolVersion = 5;
|
|
7
|
+
this.sequence = 0;
|
|
8
|
+
this.events = [];
|
|
9
|
+
this.buffer = [];
|
|
10
|
+
Object.assign(this, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.BinaryInfo = BinaryInfo;
|