@fazzcode/baileys 0.1.7 → 2.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.
Files changed (209) hide show
  1. package/LICENSE +21 -0
  2. package/WAProto/WAProto.proto +5311 -0
  3. package/WAProto/index.js +83385 -119575
  4. package/lib/Defaults/index.js +117 -124
  5. package/lib/KeyDB/BinarySearch.js +20 -0
  6. package/lib/KeyDB/KeyedDB.js +167 -0
  7. package/lib/KeyDB/index.js +4 -0
  8. package/lib/Signal/Group/ciphertext-message.js +12 -14
  9. package/lib/Signal/Group/group-session-builder.js +10 -42
  10. package/lib/Signal/Group/group_cipher.js +75 -87
  11. package/lib/Signal/Group/index.js +13 -57
  12. package/lib/Signal/Group/keyhelper.js +17 -52
  13. package/lib/Signal/Group/sender-chain-key.js +27 -33
  14. package/lib/Signal/Group/sender-key-distribution-message.js +62 -63
  15. package/lib/Signal/Group/sender-key-message.js +65 -66
  16. package/lib/Signal/Group/sender-key-name.js +45 -44
  17. package/lib/Signal/Group/sender-key-record.js +39 -49
  18. package/lib/Signal/Group/sender-key-state.js +80 -93
  19. package/lib/Signal/Group/sender-message-key.js +27 -28
  20. package/lib/Signal/libsignal.js +313 -163
  21. package/lib/Signal/lid-mapping.js +155 -0
  22. package/lib/Socket/Client/index.js +4 -19
  23. package/lib/Socket/Client/types.js +13 -0
  24. package/lib/Socket/Client/websocket.js +52 -0
  25. package/lib/Socket/business.js +359 -242
  26. package/lib/Socket/chats.js +851 -830
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +304 -309
  29. package/lib/Socket/index.js +15 -9
  30. package/lib/Socket/messages-recv.js +1107 -1054
  31. package/lib/Socket/messages-send.js +709 -414
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +232 -318
  34. package/lib/Socket/socket.js +789 -599
  35. package/lib/Store/index.js +6 -10
  36. package/lib/Store/make-cache-manager-store.js +73 -81
  37. package/lib/Store/make-in-memory-store.js +286 -423
  38. package/lib/Store/make-ordered-dictionary.js +77 -79
  39. package/lib/Store/object-repository.js +24 -26
  40. package/lib/Types/Auth.js +3 -2
  41. package/lib/Types/Bussines.js +3 -0
  42. package/lib/Types/Call.js +3 -2
  43. package/lib/Types/Chat.js +9 -4
  44. package/lib/Types/Contact.js +3 -2
  45. package/lib/Types/Events.js +3 -2
  46. package/lib/Types/GroupMetadata.js +3 -2
  47. package/lib/Types/Label.js +24 -26
  48. package/lib/Types/LabelAssociation.js +6 -8
  49. package/lib/Types/Message.js +12 -9
  50. package/lib/Types/Newsletter.js +31 -30
  51. package/lib/Types/Newsletter.js.bak +33 -0
  52. package/lib/Types/Product.js +3 -2
  53. package/lib/Types/Signal.js +3 -2
  54. package/lib/Types/Socket.js +4 -2
  55. package/lib/Types/State.js +11 -2
  56. package/lib/Types/USync.js +3 -2
  57. package/lib/Types/index.js +27 -41
  58. package/lib/Utils/auth-utils.js +211 -198
  59. package/lib/Utils/baileys-event-stream.js +42 -61
  60. package/lib/Utils/browser-utils.js +25 -0
  61. package/lib/Utils/business.js +213 -214
  62. package/lib/Utils/chat-utils.js +710 -687
  63. package/lib/Utils/crypto.js +112 -133
  64. package/lib/Utils/decode-wa-message.js +252 -183
  65. package/lib/Utils/event-buffer.js +510 -496
  66. package/lib/Utils/generics.js +328 -356
  67. package/lib/Utils/history.js +83 -92
  68. package/lib/Utils/index.js +21 -33
  69. package/lib/Utils/link-preview.js +71 -83
  70. package/lib/Utils/logger.js +5 -7
  71. package/lib/Utils/lt-hash.js +40 -46
  72. package/lib/Utils/make-mutex.js +34 -41
  73. package/lib/Utils/message-retry-manager.js +113 -0
  74. package/lib/Utils/messages-media.js +548 -678
  75. package/lib/Utils/messages.js +352 -249
  76. package/lib/Utils/noise-handler.js +138 -149
  77. package/lib/Utils/pre-key-manager.js +85 -0
  78. package/lib/Utils/process-message.js +323 -303
  79. package/lib/Utils/signal.js +148 -138
  80. package/lib/Utils/use-multi-file-auth-state.js +98 -67
  81. package/lib/Utils/validate-connection.js +183 -188
  82. package/lib/WABinary/constants.js +1298 -35
  83. package/lib/WABinary/decode.js +237 -249
  84. package/lib/WABinary/encode.js +208 -218
  85. package/lib/WABinary/generic-utils.js +53 -57
  86. package/lib/WABinary/index.js +7 -21
  87. package/lib/WABinary/jid-utils.js +89 -58
  88. package/lib/WABinary/types.js +3 -2
  89. package/lib/WAM/BinaryInfo.js +10 -12
  90. package/lib/WAM/constants.js +22851 -15348
  91. package/lib/WAM/encode.js +135 -136
  92. package/lib/WAM/index.js +5 -19
  93. package/lib/WAUSync/Protocols/USyncContactProtocol.js +28 -30
  94. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +49 -53
  95. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +27 -28
  96. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +36 -39
  97. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -50
  98. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +26 -20
  99. package/lib/WAUSync/Protocols/index.js +6 -20
  100. package/lib/WAUSync/USyncQuery.js +86 -85
  101. package/lib/WAUSync/USyncUser.js +23 -25
  102. package/lib/WAUSync/index.js +5 -19
  103. package/lib/index.js +32 -34
  104. package/package.json +99 -105
  105. package/README.MD +0 -121
  106. package/engine-requirements.js +0 -10
  107. package/lib/Defaults/baileys-version.json +0 -3
  108. package/lib/Defaults/index.d.ts +0 -53
  109. package/lib/Defaults/phonenumber-mcc.json +0 -223
  110. package/lib/Signal/Group/ciphertext-message.d.ts +0 -9
  111. package/lib/Signal/Group/group-session-builder.d.ts +0 -14
  112. package/lib/Signal/Group/group_cipher.d.ts +0 -17
  113. package/lib/Signal/Group/index.d.ts +0 -11
  114. package/lib/Signal/Group/keyhelper.d.ts +0 -10
  115. package/lib/Signal/Group/queue-job.d.ts +0 -1
  116. package/lib/Signal/Group/queue-job.js +0 -57
  117. package/lib/Signal/Group/sender-chain-key.d.ts +0 -13
  118. package/lib/Signal/Group/sender-key-distribution-message.d.ts +0 -16
  119. package/lib/Signal/Group/sender-key-message.d.ts +0 -18
  120. package/lib/Signal/Group/sender-key-name.d.ts +0 -17
  121. package/lib/Signal/Group/sender-key-record.d.ts +0 -30
  122. package/lib/Signal/Group/sender-key-state.d.ts +0 -38
  123. package/lib/Signal/Group/sender-message-key.d.ts +0 -11
  124. package/lib/Signal/libsignal.d.ts +0 -3
  125. package/lib/Socket/Client/abstract-socket-client.d.ts +0 -17
  126. package/lib/Socket/Client/abstract-socket-client.js +0 -13
  127. package/lib/Socket/Client/index.d.ts +0 -3
  128. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -13
  129. package/lib/Socket/Client/mobile-socket-client.js +0 -65
  130. package/lib/Socket/Client/web-socket-client.d.ts +0 -12
  131. package/lib/Socket/Client/web-socket-client.js +0 -62
  132. package/lib/Socket/business.d.ts +0 -171
  133. package/lib/Socket/chats.d.ts +0 -80
  134. package/lib/Socket/dugong.d.ts +0 -219
  135. package/lib/Socket/dugong.js +0 -441
  136. package/lib/Socket/groups.d.ts +0 -115
  137. package/lib/Socket/index.d.ts +0 -173
  138. package/lib/Socket/messages-recv.d.ts +0 -161
  139. package/lib/Socket/messages-send.d.ts +0 -149
  140. package/lib/Socket/newsletter.d.ts +0 -134
  141. package/lib/Socket/registration.d.ts +0 -267
  142. package/lib/Socket/registration.js +0 -166
  143. package/lib/Socket/socket.d.ts +0 -43
  144. package/lib/Socket/usync.d.ts +0 -36
  145. package/lib/Socket/usync.js +0 -70
  146. package/lib/Store/index.d.ts +0 -3
  147. package/lib/Store/make-cache-manager-store.d.ts +0 -13
  148. package/lib/Store/make-in-memory-store.d.ts +0 -118
  149. package/lib/Store/make-ordered-dictionary.d.ts +0 -13
  150. package/lib/Store/object-repository.d.ts +0 -10
  151. package/lib/Types/Auth.d.ts +0 -110
  152. package/lib/Types/Call.d.ts +0 -13
  153. package/lib/Types/Chat.d.ts +0 -102
  154. package/lib/Types/Contact.d.ts +0 -19
  155. package/lib/Types/Events.d.ts +0 -157
  156. package/lib/Types/GroupMetadata.d.ts +0 -55
  157. package/lib/Types/Label.d.ts +0 -35
  158. package/lib/Types/LabelAssociation.d.ts +0 -29
  159. package/lib/Types/Message.d.ts +0 -273
  160. package/lib/Types/Newsletter.d.ts +0 -92
  161. package/lib/Types/Product.d.ts +0 -78
  162. package/lib/Types/Signal.d.ts +0 -57
  163. package/lib/Types/Socket.d.ts +0 -111
  164. package/lib/Types/State.d.ts +0 -27
  165. package/lib/Types/USync.d.ts +0 -25
  166. package/lib/Types/index.d.ts +0 -57
  167. package/lib/Utils/auth-utils.d.ts +0 -18
  168. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  169. package/lib/Utils/business.d.ts +0 -22
  170. package/lib/Utils/chat-utils.d.ts +0 -71
  171. package/lib/Utils/crypto.d.ts +0 -41
  172. package/lib/Utils/decode-wa-message.d.ts +0 -19
  173. package/lib/Utils/event-buffer.d.ts +0 -35
  174. package/lib/Utils/generics.d.ts +0 -92
  175. package/lib/Utils/history.d.ts +0 -15
  176. package/lib/Utils/index.d.ts +0 -17
  177. package/lib/Utils/link-preview.d.ts +0 -21
  178. package/lib/Utils/logger.d.ts +0 -4
  179. package/lib/Utils/lt-hash.d.ts +0 -12
  180. package/lib/Utils/make-mutex.d.ts +0 -7
  181. package/lib/Utils/messages-media.d.ts +0 -116
  182. package/lib/Utils/messages.d.ts +0 -77
  183. package/lib/Utils/noise-handler.d.ts +0 -21
  184. package/lib/Utils/process-message.d.ts +0 -41
  185. package/lib/Utils/signal.d.ts +0 -32
  186. package/lib/Utils/use-multi-file-auth-state.d.ts +0 -13
  187. package/lib/Utils/validate-connection.d.ts +0 -11
  188. package/lib/WABinary/constants.d.ts +0 -27
  189. package/lib/WABinary/decode.d.ts +0 -7
  190. package/lib/WABinary/encode.d.ts +0 -3
  191. package/lib/WABinary/generic-utils.d.ts +0 -16
  192. package/lib/WABinary/index.d.ts +0 -5
  193. package/lib/WABinary/jid-utils.d.ts +0 -31
  194. package/lib/WABinary/types.d.ts +0 -18
  195. package/lib/WAM/BinaryInfo.d.ts +0 -17
  196. package/lib/WAM/constants.d.ts +0 -38
  197. package/lib/WAM/encode.d.ts +0 -3
  198. package/lib/WAM/index.d.ts +0 -3
  199. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +0 -9
  200. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +0 -22
  201. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +0 -12
  202. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +0 -12
  203. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +0 -25
  204. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +0 -8
  205. package/lib/WAUSync/Protocols/index.d.ts +0 -4
  206. package/lib/WAUSync/USyncQuery.d.ts +0 -28
  207. package/lib/WAUSync/USyncUser.d.ts +0 -12
  208. package/lib/WAUSync/index.d.ts +0 -3
  209. package/lib/index.d.ts +0 -12
@@ -1,151 +1,161 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getNextPreKeysNode = exports.getNextPreKeys = exports.extractDeviceJids = exports.parseAndInjectE2ESessions = exports.xmppPreKey = exports.xmppSignedPreKey = exports.generateOrGetPreKeys = exports.getPreKeys = exports.createSignalIdentity = void 0;
4
- const Defaults_1 = require("../Defaults");
5
- const WABinary_1 = require("../WABinary");
6
- const crypto_1 = require("./crypto");
7
- const generics_1 = require("./generics");
8
- const createSignalIdentity = (wid, accountSignatureKey) => {
9
- return {
10
- identifier: { name: wid, deviceId: 0 },
11
- identifierKey: (0, crypto_1.generateSignalPubKey)(accountSignatureKey)
12
- };
1
+ //=======================================================//
2
+ import { assertNodeErrorFree, getBinaryNodeChild, getBinaryNodeChildBuffer, getBinaryNodeChildren, getBinaryNodeChildUInt, getServerFromDomainType, jidDecode, S_WHATSAPP_NET, WAJIDDomains } from "../WABinary/index.js";
3
+ import { Curve, generateSignalPubKey } from "./crypto.js";
4
+ import { KEY_BUNDLE_TYPE } from "../Defaults/index.js";
5
+ import { encodeBigEndian } from "./generics.js";
6
+ //=======================================================//
7
+ function chunk(array, size) {
8
+ const chunks = [];
9
+ for (let i = 0; i < array.length; i += size) {
10
+ chunks.push(array.slice(i, i + size));
11
+ }
12
+ return chunks;
13
+ }
14
+ //=======================================================//
15
+ export const createSignalIdentity = (wid, accountSignatureKey) => {
16
+ return {
17
+ identifier: { name: wid, deviceId: 0 },
18
+ identifierKey: generateSignalPubKey(accountSignatureKey)
19
+ };
13
20
  };
14
- exports.createSignalIdentity = createSignalIdentity;
15
- const getPreKeys = async ({ get }, min, limit) => {
16
- const idList = [];
17
- for (let id = min; id < limit; id++) {
18
- idList.push(id.toString());
19
- }
20
- return get('pre-key', idList);
21
+ //=======================================================//
22
+ export const getPreKeys = async ({ get }, min, limit) => {
23
+ const idList = [];
24
+ for (let id = min; id < limit; id++) {
25
+ idList.push(id.toString());
26
+ }
27
+ return get("pre-key", idList);
21
28
  };
22
- exports.getPreKeys = getPreKeys;
23
- const generateOrGetPreKeys = (creds, range) => {
24
- const avaliable = creds.nextPreKeyId - creds.firstUnuploadedPreKeyId;
25
- const remaining = range - avaliable;
26
- const lastPreKeyId = creds.nextPreKeyId + remaining - 1;
27
- const newPreKeys = {};
28
- if (remaining > 0) {
29
- for (let i = creds.nextPreKeyId; i <= lastPreKeyId; i++) {
30
- newPreKeys[i] = crypto_1.Curve.generateKeyPair();
31
- }
29
+ //=======================================================//
30
+ export const generateOrGetPreKeys = (creds, range) => {
31
+ const avaliable = creds.nextPreKeyId - creds.firstUnuploadedPreKeyId;
32
+ const remaining = range - avaliable;
33
+ const lastPreKeyId = creds.nextPreKeyId + remaining - 1;
34
+ const newPreKeys = {};
35
+ if (remaining > 0) {
36
+ for (let i = creds.nextPreKeyId; i <= lastPreKeyId; i++) {
37
+ newPreKeys[i] = Curve.generateKeyPair();
32
38
  }
33
- return {
34
- newPreKeys,
35
- lastPreKeyId,
36
- preKeysRange: [creds.firstUnuploadedPreKeyId, range],
37
- };
39
+ }
40
+ return {
41
+ newPreKeys,
42
+ lastPreKeyId,
43
+ preKeysRange: [creds.firstUnuploadedPreKeyId, range]
44
+ };
38
45
  };
39
- exports.generateOrGetPreKeys = generateOrGetPreKeys;
40
- const xmppSignedPreKey = (key) => ({
41
- tag: 'skey',
42
- attrs: {},
43
- content: [
44
- { tag: 'id', attrs: {}, content: (0, generics_1.encodeBigEndian)(key.keyId, 3) },
45
- { tag: 'value', attrs: {}, content: key.keyPair.public },
46
- { tag: 'signature', attrs: {}, content: key.signature }
47
- ]
46
+ //=======================================================//
47
+ export const xmppSignedPreKey = (key) => ({
48
+ tag: "skey",
49
+ attrs: {},
50
+ content: [
51
+ { tag: "id", attrs: {}, content: encodeBigEndian(key.keyId, 3) },
52
+ { tag: "value", attrs: {}, content: key.keyPair.public },
53
+ { tag: "signature", attrs: {}, content: key.signature }
54
+ ]
48
55
  });
49
- exports.xmppSignedPreKey = xmppSignedPreKey;
50
- const xmppPreKey = (pair, id) => ({
51
- tag: 'key',
52
- attrs: {},
53
- content: [
54
- { tag: 'id', attrs: {}, content: (0, generics_1.encodeBigEndian)(id, 3) },
55
- { tag: 'value', attrs: {}, content: pair.public }
56
- ]
56
+ //=======================================================//
57
+ export const xmppPreKey = (pair, id) => ({
58
+ tag: "key",
59
+ attrs: {},
60
+ content: [
61
+ { tag: "id", attrs: {}, content: encodeBigEndian(id, 3) },
62
+ { tag: "value", attrs: {}, content: pair.public }
63
+ ]
57
64
  });
58
- exports.xmppPreKey = xmppPreKey;
59
- const parseAndInjectE2ESessions = async (node, repository) => {
60
- const extractKey = (key) => (key ? ({
61
- keyId: (0, WABinary_1.getBinaryNodeChildUInt)(key, 'id', 3),
62
- publicKey: (0, crypto_1.generateSignalPubKey)((0, WABinary_1.getBinaryNodeChildBuffer)(key, 'value')),
63
- signature: (0, WABinary_1.getBinaryNodeChildBuffer)(key, 'signature'),
64
- }) : undefined);
65
- const nodes = (0, WABinary_1.getBinaryNodeChildren)((0, WABinary_1.getBinaryNodeChild)(node, 'list'), 'user');
66
- for (const node of nodes) {
67
- (0, WABinary_1.assertNodeErrorFree)(node);
65
+ //=======================================================//
66
+ export const parseAndInjectE2ESessions = async (node, repository) => {
67
+ const extractKey = (key) => key
68
+ ? {
69
+ keyId: getBinaryNodeChildUInt(key, "id", 3),
70
+ publicKey: generateSignalPubKey(getBinaryNodeChildBuffer(key, "value")),
71
+ signature: getBinaryNodeChildBuffer(key, "signature")
68
72
  }
69
- await Promise.all(nodes.map(async (node) => {
70
- const signedKey = (0, WABinary_1.getBinaryNodeChild)(node, 'skey');
71
- const key = (0, WABinary_1.getBinaryNodeChild)(node, 'key');
72
- const identity = (0, WABinary_1.getBinaryNodeChildBuffer)(node, 'identity');
73
- const jid = node.attrs.jid;
74
- const registrationId = (0, WABinary_1.getBinaryNodeChildUInt)(node, 'registration', 4);
75
- await repository.injectE2ESession({
76
- jid,
77
- session: {
78
- registrationId: registrationId,
79
- identityKey: (0, crypto_1.generateSignalPubKey)(identity),
80
- signedPreKey: extractKey(signedKey),
81
- preKey: extractKey(key)
82
- }
83
- });
84
- }));
73
+ : undefined;
74
+ const nodes = getBinaryNodeChildren(getBinaryNodeChild(node, "list"), "user");
75
+ for (const node of nodes) {
76
+ assertNodeErrorFree(node);
77
+ }
78
+ const chunkSize = 100;
79
+ const chunks = chunk(nodes, chunkSize);
80
+ for (const nodesChunk of chunks) {
81
+ for (const node of nodesChunk) {
82
+ const signedKey = getBinaryNodeChild(node, "skey");
83
+ const key = getBinaryNodeChild(node, "key");
84
+ const identity = getBinaryNodeChildBuffer(node, "identity");
85
+ const jid = node.attrs.jid;
86
+ const registrationId = getBinaryNodeChildUInt(node, "registration", 4);
87
+ await repository.injectE2ESession({
88
+ jid,
89
+ session: {
90
+ registrationId: registrationId,
91
+ identityKey: generateSignalPubKey(identity),
92
+ signedPreKey: extractKey(signedKey),
93
+ preKey: extractKey(key)
94
+ }
95
+ });
96
+ }
97
+ }
85
98
  };
86
- exports.parseAndInjectE2ESessions = parseAndInjectE2ESessions;
87
- const extractDeviceJids = (result, myJid, excludeZeroDevices) => {
88
- var _a;
89
- const { user: myUser, device: myDevice } = (0, WABinary_1.jidDecode)(myJid);
90
- const extracted = [];
91
- for (const node of result.content) {
92
- const list = (_a = (0, WABinary_1.getBinaryNodeChild)(node, 'list')) === null || _a === void 0 ? void 0 : _a.content;
93
- if (list && Array.isArray(list)) {
94
- for (const item of list) {
95
- const { user } = (0, WABinary_1.jidDecode)(item.attrs.jid);
96
- const devicesNode = (0, WABinary_1.getBinaryNodeChild)(item, 'devices');
97
- const deviceListNode = (0, WABinary_1.getBinaryNodeChild)(devicesNode, 'device-list');
98
- if (Array.isArray(deviceListNode === null || deviceListNode === void 0 ? void 0 : deviceListNode.content)) {
99
- for (const { tag, attrs } of deviceListNode.content) {
100
- const device = +attrs.id;
101
- if (tag === 'device' && // ensure the "device" tag
102
- (!excludeZeroDevices || device !== 0) && // if zero devices are not-excluded, or device is non zero
103
- (myUser !== user || myDevice !== device) && // either different user or if me user, not this device
104
- (device === 0 || !!attrs['key-index']) // ensure that "key-index" is specified for "non-zero" devices, produces a bad req otherwise
105
- ) {
106
- extracted.push({ user, device });
107
- }
108
- }
109
- }
110
- }
99
+ //=======================================================//
100
+ export const extractDeviceJids = (result, myJid, myLid, excludeZeroDevices) => {
101
+ const { user: myUser, device: myDevice } = jidDecode(myJid);
102
+ const extracted = [];
103
+ for (const userResult of result) {
104
+ const { devices, id } = userResult;
105
+ const decoded = jidDecode(id), { user, server } = decoded;
106
+ let { domainType } = decoded;
107
+ const deviceList = devices?.deviceList;
108
+ if (!Array.isArray(deviceList))
109
+ continue;
110
+ for (const { id: device, keyIndex, isHosted } of deviceList) {
111
+ if ((!excludeZeroDevices || device !== 0) &&
112
+ ((myUser !== user && myLid !== user) || myDevice !== device) &&
113
+ (device === 0 || !!keyIndex)
114
+ ) {
115
+ if (isHosted) {
116
+ domainType = domainType === WAJIDDomains.LID ? WAJIDDomains.HOSTED_LID : WAJIDDomains.HOSTED;
111
117
  }
118
+ extracted.push({
119
+ user,
120
+ device,
121
+ domainType,
122
+ server: getServerFromDomainType(server, domainType)
123
+ });
124
+ }
112
125
  }
113
- return extracted;
126
+ }
127
+ return extracted;
114
128
  };
115
- exports.extractDeviceJids = extractDeviceJids;
116
- /**
117
- * get the next N keys for upload or processing
118
- * @param count number of pre-keys to get or generate
119
- */
120
- const getNextPreKeys = async ({ creds, keys }, count) => {
121
- const { newPreKeys, lastPreKeyId, preKeysRange } = (0, exports.generateOrGetPreKeys)(creds, count);
122
- const update = {
123
- nextPreKeyId: Math.max(lastPreKeyId + 1, creds.nextPreKeyId),
124
- firstUnuploadedPreKeyId: Math.max(creds.firstUnuploadedPreKeyId, lastPreKeyId + 1)
125
- };
126
- await keys.set({ 'pre-key': newPreKeys });
127
- const preKeys = await (0, exports.getPreKeys)(keys, preKeysRange[0], preKeysRange[0] + preKeysRange[1]);
128
- return { update, preKeys };
129
+ //=======================================================//
130
+ export const getNextPreKeys = async ({ creds, keys }, count) => {
131
+ const { newPreKeys, lastPreKeyId, preKeysRange } = generateOrGetPreKeys(creds, count);
132
+ const update = {
133
+ nextPreKeyId: Math.max(lastPreKeyId + 1, creds.nextPreKeyId),
134
+ firstUnuploadedPreKeyId: Math.max(creds.firstUnuploadedPreKeyId, lastPreKeyId + 1)
135
+ };
136
+ await keys.set({ "pre-key": newPreKeys });
137
+ const preKeys = await getPreKeys(keys, preKeysRange[0], preKeysRange[0] + preKeysRange[1]);
138
+ return { update, preKeys };
129
139
  };
130
- exports.getNextPreKeys = getNextPreKeys;
131
- const getNextPreKeysNode = async (state, count) => {
132
- const { creds } = state;
133
- const { update, preKeys } = await (0, exports.getNextPreKeys)(state, count);
134
- const node = {
135
- tag: 'iq',
136
- attrs: {
137
- xmlns: 'encrypt',
138
- type: 'set',
139
- to: WABinary_1.S_WHATSAPP_NET,
140
- },
141
- content: [
142
- { tag: 'registration', attrs: {}, content: (0, generics_1.encodeBigEndian)(creds.registrationId) },
143
- { tag: 'type', attrs: {}, content: Defaults_1.KEY_BUNDLE_TYPE },
144
- { tag: 'identity', attrs: {}, content: creds.signedIdentityKey.public },
145
- { tag: 'list', attrs: {}, content: Object.keys(preKeys).map(k => (0, exports.xmppPreKey)(preKeys[+k], +k)) },
146
- (0, exports.xmppSignedPreKey)(creds.signedPreKey)
147
- ]
148
- };
149
- return { update, node };
140
+ //=======================================================//
141
+ export const getNextPreKeysNode = async (state, count) => {
142
+ const { creds } = state;
143
+ const { update, preKeys } = await getNextPreKeys(state, count);
144
+ const node = {
145
+ tag: "iq",
146
+ attrs: {
147
+ xmlns: "encrypt",
148
+ type: "set",
149
+ to: S_WHATSAPP_NET
150
+ },
151
+ content: [
152
+ { tag: "registration", attrs: {}, content: encodeBigEndian(creds.registrationId) },
153
+ { tag: "type", attrs: {}, content: KEY_BUNDLE_TYPE },
154
+ { tag: "identity", attrs: {}, content: creds.signedIdentityKey.public },
155
+ { tag: "list", attrs: {}, content: Object.keys(preKeys).map(k => xmppPreKey(preKeys[+k], +k)) },
156
+ xmppSignedPreKey(creds.signedPreKey)
157
+ ]
158
+ };
159
+ return { update, node };
150
160
  };
151
- exports.getNextPreKeysNode = getNextPreKeysNode;
161
+ //=======================================================//
@@ -1,80 +1,111 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useMultiFileAuthState = void 0;
4
- const promises_1 = require("fs/promises");
5
- const path_1 = require("path");
6
- const WAProto_1 = require("../../WAProto");
7
- const auth_utils_1 = require("./auth-utils");
8
- const generics_1 = require("./generics");
9
- /**
10
- * stores the full authentication state in a single folder.
11
- * Far more efficient than singlefileauthstate
12
- *
13
- * Again, I wouldn't endorse this for any production level use other than perhaps a bot.
14
- * Would recommend writing an auth state for use with a proper SQL or No-SQL DB
15
- * */
16
- const useMultiFileAuthState = async (folder) => {
17
- const writeData = (data, file) => {
18
- return (0, promises_1.writeFile)((0, path_1.join)(folder, fixFileName(file)), JSON.stringify(data, generics_1.BufferJSON.replacer));
19
- };
20
- const readData = async (file) => {
1
+ //=======================================================//
2
+ import { mkdir, readFile, stat, unlink, writeFile } from "fs/promises";
3
+ import { initAuthCreds } from "./auth-utils.js";
4
+ import { proto } from "../../WAProto/index.js";
5
+ import { BufferJSON } from "./generics.js";
6
+ import { Mutex } from "async-mutex";
7
+ import { join } from "path";
8
+ //=======================================================//
9
+ const fileLocks = new Map();
10
+ const getFileLock = (path) => {
11
+ let mutex = fileLocks.get(path);
12
+ if (!mutex) {
13
+ mutex = new Mutex();
14
+ fileLocks.set(path, mutex);
15
+ }
16
+ return mutex;
17
+ };
18
+ //=======================================================//
19
+ export const useMultiFileAuthState = async (folder) => {
20
+ const writeData = async (data, file) => {
21
+ const filePath = join(folder, fixFileName(file));
22
+ const mutex = getFileLock(filePath);
23
+ return mutex.acquire().then(async (release) => {
24
+ try {
25
+ await writeFile(filePath, JSON.stringify(data, BufferJSON.replacer));
26
+ }
27
+ finally {
28
+ release();
29
+ }
30
+ });
31
+ };
32
+ const readData = async (file) => {
33
+ try {
34
+ const filePath = join(folder, fixFileName(file));
35
+ const mutex = getFileLock(filePath);
36
+ return await mutex.acquire().then(async (release) => {
21
37
  try {
22
- const data = await (0, promises_1.readFile)((0, path_1.join)(folder, fixFileName(file)), { encoding: 'utf-8' });
23
- return JSON.parse(data, generics_1.BufferJSON.reviver);
38
+ const data = await readFile(filePath, { encoding: "utf-8" });
39
+ return JSON.parse(data, BufferJSON.reviver);
24
40
  }
25
- catch (error) {
26
- return null;
41
+ finally {
42
+ release();
27
43
  }
28
- };
29
- const removeData = async (file) => {
44
+ });
45
+ }
46
+ catch (error) {
47
+ return null;
48
+ }
49
+ };
50
+ const removeData = async (file) => {
51
+ try {
52
+ const filePath = join(folder, fixFileName(file));
53
+ const mutex = getFileLock(filePath);
54
+ return mutex.acquire().then(async (release) => {
30
55
  try {
31
- await (0, promises_1.unlink)((0, path_1.join)(folder, fixFileName(file)));
56
+ await unlink(filePath);
32
57
  }
33
- catch (_a) {
58
+ catch {
34
59
  }
35
- };
36
- const folderInfo = await (0, promises_1.stat)(folder).catch(() => { });
37
- if (folderInfo) {
38
- if (!folderInfo.isDirectory()) {
39
- throw new Error(`found something that is not a directory at ${folder}, either delete it or specify a different location`);
60
+ finally {
61
+ release();
40
62
  }
63
+ });
41
64
  }
42
- else {
43
- await (0, promises_1.mkdir)(folder, { recursive: true });
65
+ catch { }
66
+ };
67
+ const folderInfo = await stat(folder).catch(() => { });
68
+ if (folderInfo) {
69
+ if (!folderInfo.isDirectory()) {
70
+ throw new Error(`found something that is not a directory at ${folder}, either delete it or specify a different location`);
44
71
  }
45
- const fixFileName = (file) => { var _a; return (_a = file === null || file === void 0 ? void 0 : file.replace(/\//g, '__')) === null || _a === void 0 ? void 0 : _a.replace(/:/g, '-'); };
46
- const creds = await readData('creds.json') || (0, auth_utils_1.initAuthCreds)();
47
- return {
48
- state: {
49
- creds,
50
- keys: {
51
- get: async (type, ids) => {
52
- const data = {};
53
- await Promise.all(ids.map(async (id) => {
54
- let value = await readData(`${type}-${id}.json`);
55
- if (type === 'app-state-sync-key' && value) {
56
- value = WAProto_1.proto.Message.AppStateSyncKeyData.fromObject(value);
57
- }
58
- data[id] = value;
59
- }));
60
- return data;
61
- },
62
- set: async (data) => {
63
- const tasks = [];
64
- for (const category in data) {
65
- for (const id in data[category]) {
66
- const value = data[category][id];
67
- const file = `${category}-${id}.json`;
68
- tasks.push(value ? writeData(value, file) : removeData(file));
69
- }
70
- }
71
- await Promise.all(tasks);
72
- }
72
+ }
73
+ else {
74
+ await mkdir(folder, { recursive: true });
75
+ }
76
+ const fixFileName = (file) => file?.replace(/\//g, "__")?.replace(/:/g, "-");
77
+ const creds = (await readData("creds.json")) || initAuthCreds();
78
+ return {
79
+ state: {
80
+ creds,
81
+ keys: {
82
+ get: async (type, ids) => {
83
+ const data = {};
84
+ await Promise.all(ids.map(async (id) => {
85
+ let value = await readData(`${type}-${id}.json`);
86
+ if (type === "app-state-sync-key" && value) {
87
+ value = proto.Message.AppStateSyncKeyData.fromObject(value);
73
88
  }
89
+ data[id] = value;
90
+ }));
91
+ return data;
74
92
  },
75
- saveCreds: () => {
76
- return writeData(creds, 'creds.json');
93
+ set: async (data) => {
94
+ const tasks = [];
95
+ for (const category in data) {
96
+ for (const id in data[category]) {
97
+ const value = data[category][id];
98
+ const file = `${category}-${id}.json`;
99
+ tasks.push(value ? writeData(value, file) : removeData(file));
100
+ }
101
+ }
102
+ await Promise.all(tasks);
77
103
  }
78
- };
104
+ }
105
+ },
106
+ saveCreds: async () => {
107
+ return writeData(creds, "creds.json");
108
+ }
109
+ };
79
110
  };
80
- exports.useMultiFileAuthState = useMultiFileAuthState;
111
+ //=======================================================//