@japofc/baileys 2.1.0

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 (342) hide show
  1. package/NOTICE.md +111 -0
  2. package/README.md +1254 -0
  3. package/WAProto/index.d.ts +9 -0
  4. package/WAProto/index.js +142276 -0
  5. package/engine-requirements.js +13 -0
  6. package/lib/Builders/A2UI.d.ts +242 -0
  7. package/lib/Builders/A2UI.js +308 -0
  8. package/lib/Builders/AIRich.d.ts +105 -0
  9. package/lib/Builders/AIRich.js +2286 -0
  10. package/lib/Builders/Button.d.ts +103 -0
  11. package/lib/Builders/Button.js +883 -0
  12. package/lib/Builders/ButtonV2.d.ts +28 -0
  13. package/lib/Builders/ButtonV2.js +144 -0
  14. package/lib/Builders/ButtonV3.d.ts +25 -0
  15. package/lib/Builders/ButtonV3.js +184 -0
  16. package/lib/Builders/Carousel.d.ts +22 -0
  17. package/lib/Builders/Carousel.js +111 -0
  18. package/lib/Builders/JapBaileys.d.ts +34 -0
  19. package/lib/Builders/JapBaileys.js +108 -0
  20. package/lib/Builders/Poll.d.ts +25 -0
  21. package/lib/Builders/Poll.js +128 -0
  22. package/lib/Builders/index.d.ts +17 -0
  23. package/lib/Builders/index.js +11 -0
  24. package/lib/Builders/shared.d.ts +67 -0
  25. package/lib/Builders/shared.js +652 -0
  26. package/lib/Defaults/index.d.ts +154 -0
  27. package/lib/Defaults/index.js +178 -0
  28. package/lib/Framework/Bot.d.ts +61 -0
  29. package/lib/Framework/Bot.js +248 -0
  30. package/lib/Framework/Context.d.ts +21 -0
  31. package/lib/Framework/Context.js +89 -0
  32. package/lib/Framework/MediaManager.d.ts +17 -0
  33. package/lib/Framework/MediaManager.js +151 -0
  34. package/lib/Framework/SessionManager.d.ts +13 -0
  35. package/lib/Framework/SessionManager.js +33 -0
  36. package/lib/Framework/StatsManager.d.ts +26 -0
  37. package/lib/Framework/StatsManager.js +119 -0
  38. package/lib/Framework/Store/SQLiteStore.d.ts +11 -0
  39. package/lib/Framework/Store/SQLiteStore.js +73 -0
  40. package/lib/Framework/index.d.ts +9 -0
  41. package/lib/Framework/index.js +10 -0
  42. package/lib/Signal/Group/ciphertext-message.d.ts +9 -0
  43. package/lib/Signal/Group/ciphertext-message.js +11 -0
  44. package/lib/Signal/Group/group-session-builder.d.ts +7 -0
  45. package/lib/Signal/Group/group-session-builder.js +29 -0
  46. package/lib/Signal/Group/group_cipher.d.ts +10 -0
  47. package/lib/Signal/Group/group_cipher.js +81 -0
  48. package/lib/Signal/Group/index.d.ts +11 -0
  49. package/lib/Signal/Group/index.js +11 -0
  50. package/lib/Signal/Group/keyhelper.d.ts +6 -0
  51. package/lib/Signal/Group/keyhelper.js +17 -0
  52. package/lib/Signal/Group/sender-chain-key.d.ts +13 -0
  53. package/lib/Signal/Group/sender-chain-key.js +25 -0
  54. package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -0
  55. package/lib/Signal/Group/sender-key-distribution-message.js +62 -0
  56. package/lib/Signal/Group/sender-key-message.d.ts +18 -0
  57. package/lib/Signal/Group/sender-key-message.js +65 -0
  58. package/lib/Signal/Group/sender-key-name.d.ts +11 -0
  59. package/lib/Signal/Group/sender-key-name.js +47 -0
  60. package/lib/Signal/Group/sender-key-record.d.ts +12 -0
  61. package/lib/Signal/Group/sender-key-record.js +40 -0
  62. package/lib/Signal/Group/sender-key-state.d.ts +16 -0
  63. package/lib/Signal/Group/sender-key-state.js +83 -0
  64. package/lib/Signal/Group/sender-message-key.d.ts +11 -0
  65. package/lib/Signal/Group/sender-message-key.js +25 -0
  66. package/lib/Signal/libsignal.d.ts +54 -0
  67. package/lib/Signal/libsignal.js +430 -0
  68. package/lib/Signal/lid-mapping.d.ts +20 -0
  69. package/lib/Signal/lid-mapping.js +276 -0
  70. package/lib/Socket/Client/index.d.ts +2 -0
  71. package/lib/Socket/Client/index.js +2 -0
  72. package/lib/Socket/Client/types.d.ts +5 -0
  73. package/lib/Socket/Client/types.js +10 -0
  74. package/lib/Socket/Client/websocket.d.ts +12 -0
  75. package/lib/Socket/Client/websocket.js +53 -0
  76. package/lib/Socket/business.d.ts +395 -0
  77. package/lib/Socket/business.js +379 -0
  78. package/lib/Socket/chats.d.ts +136 -0
  79. package/lib/Socket/chats.js +1327 -0
  80. package/lib/Socket/communities.d.ts +562 -0
  81. package/lib/Socket/communities.js +439 -0
  82. package/lib/Socket/dugong.d.ts +117 -0
  83. package/lib/Socket/dugong.js +798 -0
  84. package/lib/Socket/groups.d.ts +285 -0
  85. package/lib/Socket/groups.js +354 -0
  86. package/lib/Socket/index.d.ts +585 -0
  87. package/lib/Socket/index.js +52 -0
  88. package/lib/Socket/messages-recv.d.ts +333 -0
  89. package/lib/Socket/messages-recv.js +1781 -0
  90. package/lib/Socket/messages-send.d.ts +353 -0
  91. package/lib/Socket/messages-send.js +1524 -0
  92. package/lib/Socket/mex.d.ts +1 -0
  93. package/lib/Socket/mex.js +41 -0
  94. package/lib/Socket/newsletter.d.ts +286 -0
  95. package/lib/Socket/newsletter.js +364 -0
  96. package/lib/Socket/socket.d.ts +60 -0
  97. package/lib/Socket/socket.js +1012 -0
  98. package/lib/Socket/username.d.ts +82 -0
  99. package/lib/Socket/username.js +159 -0
  100. package/lib/Store/index.d.ts +3 -0
  101. package/lib/Store/index.js +3 -0
  102. package/lib/Store/make-in-memory-store.d.ts +62 -0
  103. package/lib/Store/make-in-memory-store.js +428 -0
  104. package/lib/Store/make-ordered-dictionary.d.ts +12 -0
  105. package/lib/Store/make-ordered-dictionary.js +78 -0
  106. package/lib/Store/object-repository.d.ts +10 -0
  107. package/lib/Store/object-repository.js +23 -0
  108. package/lib/Types/Auth.d.ts +117 -0
  109. package/lib/Types/Auth.js +1 -0
  110. package/lib/Types/Bussines.d.ts +25 -0
  111. package/lib/Types/Call.d.ts +15 -0
  112. package/lib/Types/Call.js +1 -0
  113. package/lib/Types/Chat.d.ts +124 -0
  114. package/lib/Types/Chat.js +7 -0
  115. package/lib/Types/Contact.d.ts +26 -0
  116. package/lib/Types/Contact.js +1 -0
  117. package/lib/Types/Events.d.ts +256 -0
  118. package/lib/Types/Events.js +1 -0
  119. package/lib/Types/GroupMetadata.d.ts +71 -0
  120. package/lib/Types/GroupMetadata.js +1 -0
  121. package/lib/Types/Label.d.ts +5 -0
  122. package/lib/Types/Label.js +24 -0
  123. package/lib/Types/LabelAssociation.d.ts +6 -0
  124. package/lib/Types/LabelAssociation.js +6 -0
  125. package/lib/Types/Message.d.ts +62 -0
  126. package/lib/Types/Message.js +17 -0
  127. package/lib/Types/Mex.d.ts +2 -0
  128. package/lib/Types/Mex.js +38 -0
  129. package/lib/Types/Product.d.ts +79 -0
  130. package/lib/Types/Product.js +1 -0
  131. package/lib/Types/RichType.d.ts +2 -0
  132. package/lib/Types/RichType.js +22 -0
  133. package/lib/Types/Signal.d.ts +87 -0
  134. package/lib/Types/Signal.js +1 -0
  135. package/lib/Types/Socket.d.ts +138 -0
  136. package/lib/Types/Socket.js +1 -0
  137. package/lib/Types/State.d.ts +8 -0
  138. package/lib/Types/State.js +55 -0
  139. package/lib/Types/USync.d.ts +26 -0
  140. package/lib/Types/index.d.ts +68 -0
  141. package/lib/Types/index.js +27 -0
  142. package/lib/Utils/MessageBuilder.d.ts +2 -0
  143. package/lib/Utils/MessageBuilder.js +2 -0
  144. package/lib/Utils/PersistentStore.d.ts +60 -0
  145. package/lib/Utils/PersistentStore.js +592 -0
  146. package/lib/Utils/anti-delete.d.ts +74 -0
  147. package/lib/Utils/anti-delete.js +221 -0
  148. package/lib/Utils/auth-secure.d.ts +86 -0
  149. package/lib/Utils/auth-secure.js +764 -0
  150. package/lib/Utils/auth-utils.d.ts +57 -0
  151. package/lib/Utils/auth-utils.js +306 -0
  152. package/lib/Utils/auto-reply.d.ts +47 -0
  153. package/lib/Utils/auto-reply.js +157 -0
  154. package/lib/Utils/baileys-event-stream.d.ts +8 -0
  155. package/lib/Utils/baileys-event-stream.js +62 -0
  156. package/lib/Utils/browser-utils.d.ts +8 -0
  157. package/lib/Utils/browser-utils.js +27 -0
  158. package/lib/Utils/business.d.ts +49 -0
  159. package/lib/Utils/business.js +239 -0
  160. package/lib/Utils/button-helper-utils.d.ts +53 -0
  161. package/lib/Utils/button-helper-utils.js +312 -0
  162. package/lib/Utils/button-sender.d.ts +54 -0
  163. package/lib/Utils/button-sender.js +822 -0
  164. package/lib/Utils/chat-control.d.ts +159 -0
  165. package/lib/Utils/chat-control.js +230 -0
  166. package/lib/Utils/chat-history-helpers.d.ts +21 -0
  167. package/lib/Utils/chat-history-helpers.js +70 -0
  168. package/lib/Utils/chat-utils.d.ts +407 -0
  169. package/lib/Utils/chat-utils.js +885 -0
  170. package/lib/Utils/companion-reg-client-utils.d.ts +4 -0
  171. package/lib/Utils/companion-reg-client-utils.js +39 -0
  172. package/lib/Utils/crypto.d.ts +41 -0
  173. package/lib/Utils/crypto.js +147 -0
  174. package/lib/Utils/decode-wa-message.d.ts +83 -0
  175. package/lib/Utils/decode-wa-message.js +316 -0
  176. package/lib/Utils/event-buffer.d.ts +12 -0
  177. package/lib/Utils/event-buffer.js +635 -0
  178. package/lib/Utils/generics.d.ts +69 -0
  179. package/lib/Utils/generics.js +438 -0
  180. package/lib/Utils/history-share.d.ts +11 -0
  181. package/lib/Utils/history-share.js +70 -0
  182. package/lib/Utils/history.d.ts +90 -0
  183. package/lib/Utils/history.js +146 -0
  184. package/lib/Utils/humanizer.d.ts +12 -0
  185. package/lib/Utils/humanizer.js +73 -0
  186. package/lib/Utils/identity-change-handler.d.ts +13 -0
  187. package/lib/Utils/identity-change-handler.js +49 -0
  188. package/lib/Utils/index.d.ts +57 -0
  189. package/lib/Utils/index.js +56 -0
  190. package/lib/Utils/jid-tools.d.ts +6 -0
  191. package/lib/Utils/jid-tools.js +77 -0
  192. package/lib/Utils/link-preview.d.ts +12 -0
  193. package/lib/Utils/link-preview.js +84 -0
  194. package/lib/Utils/logger.d.ts +4 -0
  195. package/lib/Utils/logger.js +2 -0
  196. package/lib/Utils/lt-hash.d.ts +12 -0
  197. package/lib/Utils/lt-hash.js +26 -0
  198. package/lib/Utils/make-mutex.d.ts +6 -0
  199. package/lib/Utils/make-mutex.js +32 -0
  200. package/lib/Utils/media-messages.d.ts +18 -0
  201. package/lib/Utils/media-messages.js +70 -0
  202. package/lib/Utils/media-set.d.ts +13 -0
  203. package/lib/Utils/media-set.js +171 -0
  204. package/lib/Utils/message-kind.d.ts +32 -0
  205. package/lib/Utils/message-kind.js +136 -0
  206. package/lib/Utils/message-retry-manager.d.ts +79 -0
  207. package/lib/Utils/message-retry-manager.js +264 -0
  208. package/lib/Utils/message-search.d.ts +44 -0
  209. package/lib/Utils/message-search.js +188 -0
  210. package/lib/Utils/messages-media.d.ts +135 -0
  211. package/lib/Utils/messages-media.js +868 -0
  212. package/lib/Utils/messages.d.ts +44 -0
  213. package/lib/Utils/messages.js +2326 -0
  214. package/lib/Utils/meta-ai.d.ts +13 -0
  215. package/lib/Utils/meta-ai.js +74 -0
  216. package/lib/Utils/mini-app.d.ts +35 -0
  217. package/lib/Utils/mini-app.js +213 -0
  218. package/lib/Utils/noise-handler.d.ts +20 -0
  219. package/lib/Utils/noise-handler.js +200 -0
  220. package/lib/Utils/offline-node-processor.d.ts +9 -0
  221. package/lib/Utils/offline-node-processor.js +39 -0
  222. package/lib/Utils/past-participants.d.ts +14 -0
  223. package/lib/Utils/past-participants.js +40 -0
  224. package/lib/Utils/pre-key-manager.d.ts +25 -0
  225. package/lib/Utils/pre-key-manager.js +105 -0
  226. package/lib/Utils/process-message.d.ts +82 -0
  227. package/lib/Utils/process-message.js +808 -0
  228. package/lib/Utils/qr-render.d.ts +59 -0
  229. package/lib/Utils/qr-render.js +179 -0
  230. package/lib/Utils/qrcodegen.d.ts +79 -0
  231. package/lib/Utils/qrcodegen.js +848 -0
  232. package/lib/Utils/reporting-utils.d.ts +12 -0
  233. package/lib/Utils/reporting-utils.js +257 -0
  234. package/lib/Utils/rich-message-utils.d.ts +48 -0
  235. package/lib/Utils/rich-message-utils.js +444 -0
  236. package/lib/Utils/router.d.ts +37 -0
  237. package/lib/Utils/router.js +165 -0
  238. package/lib/Utils/scheduled-posts.d.ts +30 -0
  239. package/lib/Utils/scheduled-posts.js +110 -0
  240. package/lib/Utils/scheduling.d.ts +42 -0
  241. package/lib/Utils/scheduling.js +139 -0
  242. package/lib/Utils/signal.d.ts +82 -0
  243. package/lib/Utils/signal.js +200 -0
  244. package/lib/Utils/stanza-ack.d.ts +16 -0
  245. package/lib/Utils/stanza-ack.js +37 -0
  246. package/lib/Utils/status.d.ts +50 -0
  247. package/lib/Utils/status.js +107 -0
  248. package/lib/Utils/stickerpack.d.ts +51 -0
  249. package/lib/Utils/stickerpack.js +274 -0
  250. package/lib/Utils/sync-action-utils.d.ts +2 -0
  251. package/lib/Utils/sync-action-utils.js +48 -0
  252. package/lib/Utils/tag.d.ts +12 -0
  253. package/lib/Utils/tag.js +44 -0
  254. package/lib/Utils/tc-token-utils.d.ts +29 -0
  255. package/lib/Utils/tc-token-utils.js +162 -0
  256. package/lib/Utils/templates.d.ts +76 -0
  257. package/lib/Utils/templates.js +150 -0
  258. package/lib/Utils/transcribe.d.ts +12 -0
  259. package/lib/Utils/transcribe.js +107 -0
  260. package/lib/Utils/use-cache-manager-auth-state.d.ts +13 -0
  261. package/lib/Utils/use-cache-manager-auth-state.js +81 -0
  262. package/lib/Utils/use-multi-file-auth-state.d.ts +10 -0
  263. package/lib/Utils/use-multi-file-auth-state.js +166 -0
  264. package/lib/Utils/use-single-file-auth-state.d.ts +10 -0
  265. package/lib/Utils/use-single-file-auth-state.js +113 -0
  266. package/lib/Utils/use-sqlite-auth-state.d.ts +11 -0
  267. package/lib/Utils/use-sqlite-auth-state.js +169 -0
  268. package/lib/Utils/validate-connection.d.ts +42 -0
  269. package/lib/Utils/validate-connection.js +198 -0
  270. package/lib/Utils/vcard.d.ts +58 -0
  271. package/lib/Utils/vcard.js +104 -0
  272. package/lib/Utils/voice-note.d.ts +15 -0
  273. package/lib/Utils/voice-note.js +63 -0
  274. package/lib/VoIP/audio-feeder.d.ts +18 -0
  275. package/lib/VoIP/audio-feeder.js +160 -0
  276. package/lib/VoIP/call-recorder.d.ts +13 -0
  277. package/lib/VoIP/call-recorder.js +73 -0
  278. package/lib/VoIP/index.d.ts +86 -0
  279. package/lib/VoIP/index.js +611 -0
  280. package/lib/VoIP/relay-transport.d.ts +43 -0
  281. package/lib/VoIP/relay-transport.js +563 -0
  282. package/lib/VoIP/signaling.d.ts +26 -0
  283. package/lib/VoIP/signaling.js +662 -0
  284. package/lib/VoIP/types.d.ts +69 -0
  285. package/lib/VoIP/types.js +17 -0
  286. package/lib/VoIP/wasm-engine.d.ts +120 -0
  287. package/lib/VoIP/wasm-engine.js +1358 -0
  288. package/lib/VoIP/worker-bootstrap.d.ts +4 -0
  289. package/lib/VoIP/worker-bootstrap.js +1046 -0
  290. package/lib/WABinary/constants.d.ts +61 -0
  291. package/lib/WABinary/constants.js +1466 -0
  292. package/lib/WABinary/decode.d.ts +9 -0
  293. package/lib/WABinary/decode.js +261 -0
  294. package/lib/WABinary/encode.d.ts +2 -0
  295. package/lib/WABinary/encode.js +219 -0
  296. package/lib/WABinary/generic-utils.d.ts +74 -0
  297. package/lib/WABinary/generic-utils.js +276 -0
  298. package/lib/WABinary/index.d.ts +5 -0
  299. package/lib/WABinary/index.js +5 -0
  300. package/lib/WABinary/jid-utils.d.ts +28 -0
  301. package/lib/WABinary/jid-utils.js +95 -0
  302. package/lib/WABinary/types.d.ts +19 -0
  303. package/lib/WABinary/types.js +1 -0
  304. package/lib/WAM/BinaryInfo.d.ts +7 -0
  305. package/lib/WAM/BinaryInfo.js +9 -0
  306. package/lib/WAM/constants.d.ts +34926 -0
  307. package/lib/WAM/constants.js +22852 -0
  308. package/lib/WAM/encode.d.ts +1 -0
  309. package/lib/WAM/encode.js +149 -0
  310. package/lib/WAM/index.d.ts +3 -0
  311. package/lib/WAM/index.js +3 -0
  312. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +36 -0
  313. package/lib/WAUSync/Protocols/USyncContactProtocol.js +51 -0
  314. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +29 -0
  315. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +62 -0
  316. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  317. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +26 -0
  318. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  319. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +37 -0
  320. package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +9 -0
  321. package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +24 -0
  322. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +38 -0
  323. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -0
  324. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +14 -0
  325. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +28 -0
  326. package/lib/WAUSync/Protocols/index.d.ts +7 -0
  327. package/lib/WAUSync/Protocols/index.js +7 -0
  328. package/lib/WAUSync/USyncQuery.d.ts +20 -0
  329. package/lib/WAUSync/USyncQuery.js +121 -0
  330. package/lib/WAUSync/USyncUser.d.ts +16 -0
  331. package/lib/WAUSync/USyncUser.js +30 -0
  332. package/lib/WAUSync/index.d.ts +3 -0
  333. package/lib/WAUSync/index.js +3 -0
  334. package/lib/assets/wasm/loader.d.ts +5 -0
  335. package/lib/assets/wasm/loader.js +5 -0
  336. package/lib/assets/wasm/whatsapp.wasm +0 -0
  337. package/lib/assets/wasm/worker-modules.d.ts +5 -0
  338. package/lib/assets/wasm/worker-modules.js +273 -0
  339. package/lib/index.d.ts +18 -0
  340. package/lib/index.js +23 -0
  341. package/package.json +180 -0
  342. package/postinstall-banner.js +82 -0
@@ -0,0 +1,662 @@
1
+ import { decodeBinaryNode } from '../WABinary/decode.js';
2
+ import { encodeBinaryNode } from '../WABinary/encode.js';
3
+ import { getBinaryNodeChild, getAllBinaryNodeChildren } from '../WABinary/generic-utils.js';
4
+ import { jidDecode, jidEncode, jidNormalizedUser } from '../WABinary/jid-utils.js';
5
+ import { encodeWAMessage, unpadRandomMax16 } from '../Utils/generics.js';
6
+ import { parseAndInjectE2ESessions } from '../Utils/signal.js';
7
+ import { encodeSignedDeviceIdentity } from '../Utils/validate-connection.js';
8
+ import { proto } from '../../WAProto/index.js';
9
+
10
+ const S_WHATSAPP_NET = "@s.whatsapp.net";
11
+ const TC_TOKEN_REQUEST_TIMEOUT_MS = 3500;
12
+ const SESSION_CACHE_TTL_MS = 5 * 60_000;
13
+ const ACK_TIMEOUT_MS = 15_000;
14
+
15
+ const getNodeChildren = (node) =>
16
+ Array.isArray(node.content) ? node.content : [];
17
+
18
+ const setNodeChildren = (node, children) => {
19
+ node.content = children.length ? children : undefined;
20
+ };
21
+
22
+ const replaceNodeChild = (node, tag, nextChild) => {
23
+ const children = getNodeChildren(node);
24
+ const index = children.findIndex((c) => c.tag === tag);
25
+ if (index >= 0) children[index] = nextChild;
26
+ else children.push(nextChild);
27
+ setNodeChildren(node, children);
28
+ };
29
+
30
+ const removeNodeChildrenByTag = (node, tag) => {
31
+ setNodeChildren(node, getNodeChildren(node).filter((c) => c.tag !== tag));
32
+ };
33
+
34
+ const parseCountAttr = (value, fallback = 0) => {
35
+ const parsed = Number(value);
36
+ return Number.isFinite(parsed) ? parsed : fallback;
37
+ };
38
+
39
+ export class SignalingBridge {
40
+ #sock;
41
+ #onIncomingCall = null; // JAP@Add --- inbound-offer observer (VoipClient 'incoming-call' event)
42
+ #voip = null;
43
+ #observedTcTokens = new Map();
44
+ #pendingTcTokenWaiters = new Map();
45
+ #ensuredSignalSessions = new Map();
46
+ #remoteDevicePeerByCallId = new Map();
47
+ #remoteObfuscatedPeerByCallId = new Map();
48
+ #remoteXmppRoutePeerByCallId = new Map();
49
+ #incomingCallPeerById = new Map();
50
+ #pendingOffers = new Map(); // JAP@Add --- inbound offers awaiting answer/reject (callId -> info)
51
+ #outgoingSignalingQueue = Promise.resolve(undefined);
52
+ #incomingSignalingQueue = Promise.resolve(undefined);
53
+
54
+ constructor(config) {
55
+ this.#sock = config.sock;
56
+ // JAP@Add --- optional inbound-call observer
57
+ this.#onIncomingCall = typeof config?.onIncomingCall === 'function' ? config.onIncomingCall : null;
58
+ }
59
+
60
+ attachEngine = (voip) => {
61
+ this.#voip = voip;
62
+ };
63
+
64
+ // JAP@Add --- self-contained `trusted_contact` token fetcher (the base socket
65
+ // only has `issuePrivacyTokens`, which *issues* tokens rather than *requesting*
66
+ // someone else's). Kept here so this module doesn't require patching Socket/messages-send.js.
67
+ #getPrivacyTokens = async (jids) => {
68
+ const t = Math.floor(Date.now() / 1000).toString();
69
+ return this.#sock.query({
70
+ tag: "iq",
71
+ attrs: {
72
+ to: S_WHATSAPP_NET,
73
+ type: "set",
74
+ xmlns: "privacy",
75
+ },
76
+ content: [
77
+ {
78
+ tag: "tokens",
79
+ attrs: {},
80
+ content: jids.map((jid) => ({
81
+ tag: "token",
82
+ attrs: {
83
+ jid: jidNormalizedUser(jid),
84
+ t,
85
+ type: "trusted_contact",
86
+ },
87
+ })),
88
+ },
89
+ ],
90
+ });
91
+ };
92
+
93
+ init = async () => {
94
+ const originalKeysSet = this.#sock.authState.keys.set.bind(this.#sock.authState.keys);
95
+ this.#sock.authState.keys.set = async (data) => {
96
+ const result = await originalKeysSet(data);
97
+ for (const [jid, entry] of Object.entries(data?.tctoken ?? {})) {
98
+ if (entry?.token instanceof Uint8Array && entry.token.length > 0) {
99
+ this.#rememberTcToken(jid, entry.token, entry.timestamp);
100
+ }
101
+ }
102
+ return result;
103
+ };
104
+ };
105
+
106
+ sendSignaling = (peerJid, callId, xmlPayload) => {
107
+ this.#outgoingSignalingQueue = this.#outgoingSignalingQueue
108
+ .then(() => this.#doSendSignaling(peerJid, callId, xmlPayload))
109
+ .catch(() => {});
110
+ };
111
+
112
+ processIncomingCall = (node, voip, activeCallId) => {
113
+ this.#incomingSignalingQueue = this.#incomingSignalingQueue
114
+ .then(() => this.#doProcessIncomingCall(node, voip, activeCallId))
115
+ .catch(() => {});
116
+ };
117
+
118
+ processIncomingReceipt = (node, voip, activeCallId) => {
119
+ this.#incomingSignalingQueue = this.#incomingSignalingQueue
120
+ .then(() => this.#doProcessIncomingReceipt(node, voip, activeCallId))
121
+ .catch(() => {});
122
+ };
123
+
124
+ requestTcToken = async (jid) => {
125
+ const userJid = this.#toBareJid(jid);
126
+ const cached = await this.#getTcToken(userJid);
127
+ if (cached?.length) return cached;
128
+
129
+ try {
130
+ const response = await this.#getPrivacyTokens([userJid]);
131
+ const tokensNode =
132
+ getBinaryNodeChild(response, "tokens") ??
133
+ getBinaryNodeChild(getBinaryNodeChild(response, "iq"), "tokens");
134
+ const tokenNodes = tokensNode
135
+ ? getAllBinaryNodeChildren(tokensNode).filter((c) => c.tag === "token")
136
+ : [];
137
+
138
+ for (const tokenNode of tokenNodes) {
139
+ const tokenJid = String(tokenNode.attrs.jid ?? "");
140
+ if (jidNormalizedUser(tokenJid) !== jidNormalizedUser(userJid)) continue;
141
+ const content = tokenNode.content;
142
+ if (content instanceof Uint8Array && content.length > 0) {
143
+ const token = Buffer.from(content);
144
+ await this.#sock.authState.keys.set({
145
+ tctoken: { [userJid]: { token, timestamp: String(tokenNode.attrs.t ?? "") } },
146
+ });
147
+ return token;
148
+ }
149
+ }
150
+ } catch {}
151
+
152
+ return this.#getTcToken(userJid);
153
+ };
154
+
155
+ ensureTcToken = async (...jids) => {
156
+ const uniqueJids = [
157
+ ...new Set(jids.map((j) => this.#toBareJid(String(j ?? "").trim())).filter(Boolean)),
158
+ ];
159
+ for (const jid of uniqueJids) {
160
+ const cached = await this.#getTcToken(jid);
161
+ if (cached?.length) return cached;
162
+ }
163
+ for (const jid of uniqueJids) {
164
+ const fetched = await Promise.race([
165
+ this.requestTcToken(jid),
166
+ new Promise((r) => setTimeout(() => r(undefined), TC_TOKEN_REQUEST_TIMEOUT_MS)),
167
+ ]);
168
+ if (fetched?.length) return fetched;
169
+ }
170
+ return undefined;
171
+ };
172
+
173
+ discoverPeerDevices = async (peerLidJid) => {
174
+ const devices = await this.#sock.getUSyncDevices([peerLidJid], true, false);
175
+ return this.#normalizeStartCallPeerList(devices.map((d) => d.jid).filter(Boolean));
176
+ };
177
+
178
+ ensureSessionsForPeers = async (jids) => {
179
+ const targets = this.#expandSignalSessionTargets(jids);
180
+ if (targets.length) await this.#ensureSignalSessions(targets, true);
181
+ };
182
+
183
+ resolveLid = async (pnJid) =>
184
+ this.#sock.signalRepository.lidMapping?.getLIDForPN(pnJid);
185
+
186
+ issueTcToken = async (jid) => {
187
+ const userJid = this.#toBareJid(jid);
188
+ const issuedAt = Math.floor(Date.now() / 1000);
189
+ try {
190
+ await this.#sock.query({
191
+ tag: "iq",
192
+ attrs: {
193
+ to: S_WHATSAPP_NET, type: "set", xmlns: "privacy",
194
+ id: this.#sock.generateMessageTag(),
195
+ },
196
+ content: [{
197
+ tag: "tokens", attrs: {},
198
+ content: [{
199
+ tag: "token",
200
+ attrs: { jid: userJid, t: String(issuedAt), type: "trusted_contact" },
201
+ }],
202
+ }],
203
+ });
204
+ return true;
205
+ } catch {
206
+ return false;
207
+ }
208
+ };
209
+
210
+ getRemoteDeviceJid = (callId) =>
211
+ this.#remoteDevicePeerByCallId.get(callId);
212
+
213
+ /** JAP@Add --- inspect/take a pending inbound offer (used by `answerCall`). */
214
+ getPendingOffer = (callId) => this.#pendingOffers.get(callId);
215
+ hasPendingOffer = (callId) => this.#pendingOffers.has(callId);
216
+ listPendingOffers = () => [...this.#pendingOffers.values()];
217
+ takePendingOffer = (callId) => {
218
+ const info = this.#pendingOffers.get(callId);
219
+ if (info) this.#pendingOffers.delete(callId);
220
+ return info;
221
+ };
222
+
223
+ #doSendSignaling = async (peerJid, callId, xmlPayload) => {
224
+ const rawPayload = Buffer.from(xmlPayload);
225
+ let voipNode;
226
+ try {
227
+ voipNode = await decodeBinaryNode(Buffer.concat([Buffer.from([0]), rawPayload]));
228
+ } catch {
229
+ voipNode = await decodeBinaryNode(rawPayload);
230
+ }
231
+
232
+ const signalingTag = String(voipNode.tag);
233
+ const effectivePeerJid = this.#resolveOutboundPeerJid(callId, peerJid);
234
+
235
+ if (signalingTag === "offer" && !voipNode.attrs["call-creator"]) {
236
+ const selfLid = this.#sock.authState.creds.me?.lid;
237
+ if (selfLid) voipNode.attrs["call-creator"] = selfLid;
238
+ }
239
+
240
+ const destination = getBinaryNodeChild(voipNode, "destination");
241
+ if (destination) {
242
+ const destinations = getNodeChildren(destination);
243
+ const destinationJids = destinations
244
+ .map((n) => String(n.attrs.jid ?? "").trim())
245
+ .filter(Boolean);
246
+ const sessionTargets = this.#expandSignalSessionTargets(destinationJids);
247
+ if (sessionTargets.length) await this.#ensureSignalSessions(sessionTargets, signalingTag === "offer");
248
+
249
+ const rootEnc = getBinaryNodeChild(voipNode, "enc");
250
+ const encCount = parseCountAttr(rootEnc?.attrs.count);
251
+ let includeDeviceIdentity = false;
252
+
253
+ for (const destNode of destinations) {
254
+ const targetJid = String(destNode.attrs.jid ?? "").trim();
255
+ const destEnc = getBinaryNodeChild(destNode, "enc");
256
+ if (!targetJid || !destEnc || !(destEnc.content instanceof Uint8Array)) continue;
257
+ try {
258
+ const encrypted = await this.#encryptCallKey(targetJid, destEnc.content, encCount);
259
+ includeDeviceIdentity = includeDeviceIdentity || encrypted.shouldIncludeDeviceIdentity;
260
+ setNodeChildren(destNode, [encrypted.encNode]);
261
+ } catch {
262
+ for (const d of destinations) removeNodeChildrenByTag(d, "enc");
263
+ break;
264
+ }
265
+ }
266
+ if (includeDeviceIdentity) this.#appendDeviceIdentity(voipNode);
267
+
268
+ await this.#sendCallStanza(this.#toBareJid(peerJid), voipNode, signalingTag, effectivePeerJid, peerJid);
269
+ return;
270
+ }
271
+
272
+ if (signalingTag === "offer" || signalingTag === "enc_rekey") {
273
+ const enc = getBinaryNodeChild(voipNode, "enc");
274
+ if (enc && enc.content instanceof Uint8Array) {
275
+ const targetJid = this.#toCallDeviceJid(effectivePeerJid);
276
+ const encrypted = await this.#encryptCallKey(targetJid, enc.content, parseCountAttr(enc.attrs.count));
277
+ replaceNodeChild(voipNode, "enc", encrypted.encNode);
278
+ if (encrypted.shouldIncludeDeviceIdentity) this.#appendDeviceIdentity(voipNode);
279
+
280
+ await this.#sendCallStanza(targetJid, voipNode, signalingTag, effectivePeerJid, peerJid);
281
+ return;
282
+ }
283
+ }
284
+
285
+ const routeTo = signalingTag !== "offer" && signalingTag !== "enc_rekey"
286
+ ? this.#toBareJid(effectivePeerJid)
287
+ : this.#toCallDeviceJid(effectivePeerJid);
288
+ await this.#sendCallStanza(routeTo, voipNode, signalingTag, effectivePeerJid, peerJid);
289
+ };
290
+
291
+ #sendCallStanza = async (routeTo, voipNode, signalingTag, effectivePeerJid, callbackPeerJid) => {
292
+ const stanzaId = this.#sock.generateMessageTag();
293
+ await this.#sock.sendNode({
294
+ tag: "call",
295
+ attrs: { to: routeTo, id: stanzaId },
296
+ content: [voipNode],
297
+ });
298
+
299
+ void (async () => {
300
+ try {
301
+ const ackNode = await this.#sock.waitForMessage(stanzaId, ACK_TIMEOUT_MS);
302
+ if (!ackNode || !this.#voip) return;
303
+ const ackPayload = Buffer.from(encodeBinaryNode(ackNode)).toString("base64");
304
+ const tcToken = await this.ensureTcToken(effectivePeerJid, callbackPeerJid);
305
+ try {
306
+ this.#voip.handleSignalingAck({
307
+ payload: ackPayload,
308
+ ackError: ackNode.attrs?.error ?? "0",
309
+ msgType: ackNode.attrs?.type ?? signalingTag,
310
+ peerJid: effectivePeerJid,
311
+ extraData: tcToken,
312
+ });
313
+ } catch {}
314
+ } catch {}
315
+ })();
316
+ };
317
+
318
+ #doProcessIncomingCall = async (node, voip, activeCallId) => {
319
+ const voipChild = getAllBinaryNodeChildren(node)[0];
320
+ if (!voipChild) return;
321
+
322
+ const incomingCallId = String(voipChild.attrs["call-id"] ?? voipChild.attrs.call_id ?? "");
323
+ const callIdForRouting = incomingCallId || activeCallId;
324
+ if (activeCallId && incomingCallId && incomingCallId !== activeCallId) {
325
+ // JAP@Add --- multi-call awareness: surface as busy instead of silently dropping
326
+ try { this.#onIncomingCall?.({ callId: incomingCallId, from: String(node.attrs.from ?? ''), busy: true, ignored: true }); } catch {}
327
+ return;
328
+ }
329
+
330
+ const senderDeviceJid =
331
+ String(voipChild.attrs.participant ?? "") ||
332
+ String(node.attrs.participant ?? "") ||
333
+ String(node.attrs.from ?? "") ||
334
+ String(voipChild.attrs["call-creator"] ?? "");
335
+ const callbackPeerJid = String(node.attrs.from ?? "") || senderDeviceJid;
336
+ const platform = voipChild.attrs.platform ?? node.attrs.platform ?? "";
337
+ const appVersion = voipChild.attrs.version ?? node.attrs.version ?? "";
338
+ const epochId = voipChild.attrs.e ?? node.attrs.e ?? "0";
339
+ const timestamp = voipChild.attrs.t ?? node.attrs.t ?? "0";
340
+ const offline = !!(voipChild.attrs.offline ?? node.attrs.offline);
341
+
342
+ let usableNode = voipChild;
343
+ if (getBinaryNodeChild(voipChild, "enc")) {
344
+ usableNode = await this.#maybeDecryptEnc(voipChild, senderDeviceJid);
345
+ }
346
+
347
+ const b64 = Buffer.from(encodeBinaryNode(usableNode)).toString("base64");
348
+
349
+ const storedPeerJid = callIdForRouting ? this.#incomingCallPeerById.get(callIdForRouting) : undefined;
350
+ let mappedRemoteDeviceJid = callIdForRouting ? this.#remoteDevicePeerByCallId.get(callIdForRouting) : undefined;
351
+
352
+ if (callIdForRouting && (callbackPeerJid || senderDeviceJid)) {
353
+ this.#remoteXmppRoutePeerByCallId.set(callIdForRouting, callbackPeerJid || senderDeviceJid);
354
+ const hinted = this.#pickConcreteRouteHint(senderDeviceJid, callbackPeerJid);
355
+ if (hinted && hinted !== mappedRemoteDeviceJid) {
356
+ mappedRemoteDeviceJid = hinted;
357
+ this.#remoteDevicePeerByCallId.set(callIdForRouting, hinted);
358
+ }
359
+ }
360
+
361
+ const routedPeerJid = usableNode.tag === "offer"
362
+ ? this.#preferDeviceRouteJid(senderDeviceJid, callbackPeerJid, storedPeerJid)
363
+ : this.#preferOrderedRouteJid(mappedRemoteDeviceJid, storedPeerJid, senderDeviceJid, callbackPeerJid);
364
+
365
+ if (callIdForRouting && routedPeerJid) {
366
+ this.#incomingCallPeerById.set(callIdForRouting, routedPeerJid);
367
+ }
368
+
369
+ const tcToken = await this.ensureTcToken(routedPeerJid, callbackPeerJid);
370
+
371
+ switch (usableNode.tag) {
372
+ case "offer":
373
+ voip.handleSignalingOffer({
374
+ payload: b64,
375
+ peerPlatform: Number(platform || 0),
376
+ peerAppVersion: appVersion,
377
+ epochId, timestamp,
378
+ isOffline: offline,
379
+ isOfferNotContact: false,
380
+ peerJid: routedPeerJid,
381
+ tcToken,
382
+ });
383
+ // JAP@Add --- track the offer so `answerCall()`/`joinGroupCall()` can pick it up,
384
+ // then surface it so bots can react (log / auto-reply / auto-answer).
385
+ try {
386
+ const fromAttr = String(node.attrs.from ?? '');
387
+ const info = {
388
+ callId: callIdForRouting,
389
+ from: routedPeerJid,
390
+ senderDeviceJid,
391
+ callCreator: String(voipChild.attrs['call-creator'] ?? ''),
392
+ groupJid: fromAttr.endsWith('@g.us') ? fromAttr : '',
393
+ isGroupCall: fromAttr.endsWith('@g.us'),
394
+ platform,
395
+ appVersion,
396
+ timestamp: Number(timestamp || 0),
397
+ isOffline: offline,
398
+ receivedAt: Date.now(),
399
+ };
400
+ if (callIdForRouting) this.#pendingOffers.set(callIdForRouting, info);
401
+ this.#onIncomingCall?.({ ...info });
402
+ } catch {}
403
+ break;
404
+ case "ack":
405
+ voip.handleSignalingAck({
406
+ payload: b64,
407
+ ackError: usableNode.attrs.error ?? "0",
408
+ msgType: usableNode.attrs.type ?? "",
409
+ peerJid: routedPeerJid,
410
+ extraData: tcToken,
411
+ });
412
+ break;
413
+ default:
414
+ voip.handleSignalingMessage({
415
+ payload: b64,
416
+ peerPlatform: platform,
417
+ peerAppVersion: appVersion,
418
+ epochId, timestamp,
419
+ isOffline: offline,
420
+ peerJid: routedPeerJid,
421
+ tcToken,
422
+ });
423
+ if (callIdForRouting && (usableNode.tag === "terminate" || usableNode.tag === "reject")) {
424
+ this.#pendingOffers.delete(callIdForRouting);
425
+ this.#incomingCallPeerById.delete(callIdForRouting);
426
+ this.#remoteDevicePeerByCallId.delete(callIdForRouting);
427
+ this.#remoteObfuscatedPeerByCallId.delete(callIdForRouting);
428
+ this.#remoteXmppRoutePeerByCallId.delete(callIdForRouting);
429
+ }
430
+ break;
431
+ }
432
+ };
433
+
434
+ #doProcessIncomingReceipt = async (node, voip, activeCallId) => {
435
+ const receiptChild = getAllBinaryNodeChildren(node)[0];
436
+ if (!receiptChild) return;
437
+
438
+ const incomingCallId = String(receiptChild.attrs["call-id"] ?? receiptChild.attrs.call_id ?? "");
439
+ const callIdForRouting = incomingCallId || activeCallId;
440
+ if (activeCallId && incomingCallId && incomingCallId !== activeCallId) return;
441
+
442
+ const callbackPeerJid = String(node.attrs.from ?? receiptChild.attrs["call-creator"] ?? "");
443
+ const storedPeerJid = callIdForRouting ? this.#incomingCallPeerById.get(callIdForRouting) : undefined;
444
+ const routedPeerJid = this.#preferOrderedRouteJid(storedPeerJid, callbackPeerJid);
445
+ if (callIdForRouting && routedPeerJid) this.#incomingCallPeerById.set(callIdForRouting, routedPeerJid);
446
+
447
+ const tcToken = await this.ensureTcToken(routedPeerJid, callbackPeerJid);
448
+ voip.handleSignalingReceipt({
449
+ payload: Buffer.from(encodeBinaryNode(node)).toString("base64"),
450
+ peerJid: routedPeerJid,
451
+ tcToken,
452
+ });
453
+ };
454
+
455
+ #maybeDecryptEnc = async (voipNode, peerJid) => {
456
+ const enc = getBinaryNodeChild(voipNode, "enc");
457
+ if (!enc || !(enc.content instanceof Uint8Array)) return voipNode;
458
+ const type = enc.attrs.type;
459
+ if (type !== "pkmsg" && type !== "msg") return voipNode;
460
+
461
+ const candidates = [...new Set([peerJid, this.#toCallDeviceJid(peerJid)])].filter(Boolean);
462
+ let lastErr;
463
+ for (const jid of candidates) {
464
+ try {
465
+ const decrypted = await this.#sock.signalRepository.decryptMessage({
466
+ jid, type, ciphertext: enc.content,
467
+ });
468
+ const parsed = proto.Message.decode(unpadRandomMax16(decrypted));
469
+ const callKey = parsed.call?.callKey;
470
+ if (!callKey || callKey.length === 0) {
471
+ throw new Error("decrypted signaling has no call.callKey");
472
+ }
473
+ enc.content = callKey;
474
+ return voipNode;
475
+ } catch (err) {
476
+ lastErr = err;
477
+ }
478
+ }
479
+ throw lastErr;
480
+ };
481
+
482
+ #encryptCallKey = async (targetJid, rawCallKey, count) => {
483
+ const primaryDeviceJid = this.#toPrimaryDeviceJid(targetJid);
484
+ const sessionTargets = primaryDeviceJid && primaryDeviceJid !== targetJid
485
+ ? [primaryDeviceJid, targetJid]
486
+ : [targetJid];
487
+ await this.#ensureSignalSessions(sessionTargets, false);
488
+
489
+ const { type, ciphertext } = await this.#sock.signalRepository.encryptMessage({
490
+ jid: targetJid,
491
+ data: encodeWAMessage({ call: { callKey: Buffer.from(rawCallKey) } }),
492
+ });
493
+
494
+ return {
495
+ encNode: {
496
+ tag: "enc",
497
+ attrs: { v: "2", type, count: String(count) },
498
+ content: Buffer.from(ciphertext),
499
+ },
500
+ shouldIncludeDeviceIdentity: type === "pkmsg",
501
+ };
502
+ };
503
+
504
+ #ensureSignalSessions = async (jids, refresh) => {
505
+ const missing = [];
506
+ for (const jid of [...new Set(jids.filter(Boolean))]) {
507
+ const signalId = this.#sock.signalRepository.jidToSignalProtocolAddress(jid);
508
+ const cachedAt = this.#ensuredSignalSessions.get(signalId);
509
+ if (!refresh && cachedAt && Date.now() - cachedAt < SESSION_CACHE_TTL_MS) continue;
510
+ if (!refresh) {
511
+ const validation = await this.#sock.signalRepository.validateSession(jid);
512
+ if (validation.exists) {
513
+ this.#ensuredSignalSessions.set(signalId, Date.now());
514
+ continue;
515
+ }
516
+ }
517
+ missing.push(jid);
518
+ }
519
+ if (!missing.length) return;
520
+
521
+ const sessionNode = await this.#sock.query({
522
+ tag: "iq",
523
+ attrs: { xmlns: "encrypt", type: "get", to: S_WHATSAPP_NET },
524
+ content: [{
525
+ tag: "key", attrs: {},
526
+ content: missing.map((jid) => ({ tag: "user", attrs: { jid } })),
527
+ }],
528
+ });
529
+ await parseAndInjectE2ESessions(sessionNode, this.#sock.signalRepository);
530
+ for (const jid of missing) {
531
+ this.#ensuredSignalSessions.set(
532
+ this.#sock.signalRepository.jidToSignalProtocolAddress(jid),
533
+ Date.now(),
534
+ );
535
+ }
536
+ };
537
+
538
+ #appendDeviceIdentity = (voipNode) => {
539
+ if (getBinaryNodeChild(voipNode, "device-identity")) return;
540
+ const account = this.#sock.authState.creds.account;
541
+ if (!account) return;
542
+ const children = getNodeChildren(voipNode);
543
+ children.push({
544
+ tag: "device-identity",
545
+ attrs: {},
546
+ content: encodeSignedDeviceIdentity(account, true),
547
+ });
548
+ setNodeChildren(voipNode, children);
549
+ };
550
+
551
+ #toBareJid = (jid) => {
552
+ const decoded = jidDecode(jid);
553
+ if (!decoded?.user) return jid;
554
+ const server = jid.endsWith("@lid") ? "lid" : "s.whatsapp.net";
555
+ return jidEncode(decoded.user, server);
556
+ };
557
+
558
+ #toCallDeviceJid = (jid) => {
559
+ const decoded = jidDecode(jid);
560
+ if (!decoded?.user) return jid;
561
+ const server = jid.endsWith("@lid") ? "lid" : "s.whatsapp.net";
562
+ if (decoded.device == null) return jidEncode(decoded.user, server);
563
+ return `${decoded.user}:${decoded.device}@${server}`;
564
+ };
565
+
566
+ #toPrimaryDeviceJid = (jid) => {
567
+ const decoded = jidDecode(jid);
568
+ if (!decoded?.user) return undefined;
569
+ const device = decoded.device;
570
+ if (device == null || device === 0) return undefined;
571
+ const server = jid.endsWith("@lid") ? "lid" : "s.whatsapp.net";
572
+ return jidEncode(decoded.user, server);
573
+ };
574
+
575
+ #hasConcreteDevice = (jid) => {
576
+ const decoded = jidDecode(jid);
577
+ return !!decoded?.user && decoded.device != null;
578
+ };
579
+
580
+ #preferDeviceRouteJid = (...candidates) => {
581
+ for (const c of candidates) {
582
+ const jid = String(c ?? "").trim();
583
+ if (jid && this.#hasConcreteDevice(jid)) return jid;
584
+ }
585
+ for (const c of candidates) {
586
+ const jid = String(c ?? "").trim();
587
+ if (jid) return this.#toCallDeviceJid(jid);
588
+ }
589
+ return "";
590
+ };
591
+
592
+ #preferOrderedRouteJid = (...candidates) => {
593
+ for (const c of candidates) {
594
+ const jid = String(c ?? "").trim();
595
+ if (jid) return this.#toCallDeviceJid(jid);
596
+ }
597
+ return "";
598
+ };
599
+
600
+ #pickConcreteRouteHint = (...candidates) => {
601
+ for (const c of candidates) {
602
+ const jid = String(c ?? "").trim();
603
+ if (jid && this.#hasConcreteDevice(jid)) return jid;
604
+ }
605
+ return "";
606
+ };
607
+
608
+ #resolveOutboundPeerJid = (callId, wasmPeerJid) => {
609
+ const peerJid = String(wasmPeerJid ?? "").trim();
610
+ if (!peerJid || !callId) return peerJid;
611
+ return this.#remoteDevicePeerByCallId.get(callId) ?? peerJid;
612
+ };
613
+
614
+ #expandSignalSessionTargets = (jids) =>
615
+ [...new Set(jids.flatMap((jid) => {
616
+ const primary = this.#toPrimaryDeviceJid(jid);
617
+ return primary && primary !== jid ? [primary, jid] : [jid];
618
+ }))];
619
+
620
+ #normalizeStartCallPeerList = (jids) => {
621
+ const result = new Set();
622
+ for (const jid of jids) {
623
+ const decoded = jidDecode(jid);
624
+ if (!decoded?.user) {
625
+ result.add(jid);
626
+ continue;
627
+ }
628
+ const server = jid.endsWith("@lid") ? "lid" : "s.whatsapp.net";
629
+ result.add(jidEncode(decoded.user, server));
630
+ if (decoded.device != null) {
631
+ result.add(`${decoded.user}:${decoded.device}@${server}`);
632
+ }
633
+ }
634
+ return [...result].slice(0, 5);
635
+ };
636
+
637
+ #rememberTcToken = (jid, token, timestamp = "") => {
638
+ const bareJid = this.#toBareJid(jid);
639
+ if (!token.length) return;
640
+ this.#observedTcTokens.set(bareJid, { token: Buffer.from(token), timestamp });
641
+ const waiters = this.#pendingTcTokenWaiters.get(bareJid);
642
+ if (waiters?.length) {
643
+ this.#pendingTcTokenWaiters.delete(bareJid);
644
+ for (const w of waiters) w(Buffer.from(token));
645
+ }
646
+ };
647
+
648
+ #getTcToken = async (jid) => {
649
+ const userJid = this.#toBareJid(jid);
650
+ const observed = this.#observedTcTokens.get(userJid)?.token;
651
+ if (observed?.length) return Buffer.from(observed);
652
+ try {
653
+ const data = await this.#sock.authState.keys.get("tctoken", [userJid]);
654
+ const token = data[userJid]?.token;
655
+ if (token && token.length > 0) {
656
+ this.#rememberTcToken(userJid, token, data[userJid]?.timestamp);
657
+ return token;
658
+ }
659
+ } catch {}
660
+ return undefined;
661
+ };
662
+ }