@sixcore/baileys 1.0.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 (278) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +606 -0
  3. package/WAProto/GenerateStatics.sh +4 -0
  4. package/WAProto/WAProto.proto +4357 -0
  5. package/WAProto/index.d.ts +50383 -0
  6. package/WAProto/index.js +155693 -0
  7. package/WASignalGroup/GroupProtocol.js +1697 -0
  8. package/WASignalGroup/ciphertext_message.js +16 -0
  9. package/WASignalGroup/generate-proto.sh +1 -0
  10. package/WASignalGroup/group.proto +42 -0
  11. package/WASignalGroup/group_cipher.js +120 -0
  12. package/WASignalGroup/group_session_builder.js +46 -0
  13. package/WASignalGroup/index.js +5 -0
  14. package/WASignalGroup/keyhelper.js +21 -0
  15. package/WASignalGroup/protobufs.js +3 -0
  16. package/WASignalGroup/queue_job.js +69 -0
  17. package/WASignalGroup/sender_chain_key.js +50 -0
  18. package/WASignalGroup/sender_key_distribution_message.js +78 -0
  19. package/WASignalGroup/sender_key_message.js +92 -0
  20. package/WASignalGroup/sender_key_name.js +70 -0
  21. package/WASignalGroup/sender_key_record.js +56 -0
  22. package/WASignalGroup/sender_key_state.js +129 -0
  23. package/WASignalGroup/sender_message_key.js +39 -0
  24. package/lib/Defaults/baileys-version.json +3 -0
  25. package/lib/Defaults/index.d.ts +53 -0
  26. package/lib/Defaults/index.js +108 -0
  27. package/lib/Signal/libsignal.d.ts +3 -0
  28. package/lib/Signal/libsignal.js +152 -0
  29. package/lib/Socket/Client/abstract-socket-client.d.ts +17 -0
  30. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  31. package/lib/Socket/Client/index.d.ts +3 -0
  32. package/lib/Socket/Client/index.js +19 -0
  33. package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
  34. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  35. package/lib/Socket/Client/web-socket-client.d.ts +12 -0
  36. package/lib/Socket/Client/web-socket-client.js +62 -0
  37. package/lib/Socket/business.d.ts +170 -0
  38. package/lib/Socket/business.js +260 -0
  39. package/lib/Socket/chats.d.ts +81 -0
  40. package/lib/Socket/chats.js +950 -0
  41. package/lib/Socket/groups.d.ts +115 -0
  42. package/lib/Socket/groups.js +315 -0
  43. package/lib/Socket/index.d.ts +172 -0
  44. package/lib/Socket/index.js +10 -0
  45. package/lib/Socket/messages-recv.d.ts +158 -0
  46. package/lib/Socket/messages-recv.js +972 -0
  47. package/lib/Socket/messages-send.d.ts +155 -0
  48. package/lib/Socket/messages-send.js +1087 -0
  49. package/lib/Socket/newsletter.d.ts +132 -0
  50. package/lib/Socket/newsletter.js +236 -0
  51. package/lib/Socket/registration.d.ts +264 -0
  52. package/lib/Socket/registration.js +166 -0
  53. package/lib/Socket/socket.d.ts +44 -0
  54. package/lib/Socket/socket.js +643 -0
  55. package/lib/Socket/usync.d.ts +37 -0
  56. package/lib/Socket/usync.js +70 -0
  57. package/lib/Store/index.d.ts +3 -0
  58. package/lib/Store/index.js +10 -0
  59. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  60. package/lib/Store/make-cache-manager-store.js +83 -0
  61. package/lib/Store/make-in-memory-store.d.ts +118 -0
  62. package/lib/Store/make-in-memory-store.js +431 -0
  63. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  64. package/lib/Store/make-ordered-dictionary.js +81 -0
  65. package/lib/Store/object-repository.d.ts +10 -0
  66. package/lib/Store/object-repository.js +27 -0
  67. package/lib/Types/Auth.d.ts +109 -0
  68. package/lib/Types/Auth.js +2 -0
  69. package/lib/Types/Call.d.ts +13 -0
  70. package/lib/Types/Call.js +2 -0
  71. package/lib/Types/Chat.d.ts +107 -0
  72. package/lib/Types/Chat.js +4 -0
  73. package/lib/Types/Contact.d.ts +19 -0
  74. package/lib/Types/Contact.js +2 -0
  75. package/lib/Types/Events.d.ts +172 -0
  76. package/lib/Types/Events.js +2 -0
  77. package/lib/Types/GroupMetadata.d.ts +56 -0
  78. package/lib/Types/GroupMetadata.js +2 -0
  79. package/lib/Types/Label.d.ts +46 -0
  80. package/lib/Types/Label.js +27 -0
  81. package/lib/Types/LabelAssociation.d.ts +29 -0
  82. package/lib/Types/LabelAssociation.js +9 -0
  83. package/lib/Types/Message.d.ts +433 -0
  84. package/lib/Types/Message.js +9 -0
  85. package/lib/Types/Newsletter.d.ts +92 -0
  86. package/lib/Types/Newsletter.js +32 -0
  87. package/lib/Types/Product.d.ts +78 -0
  88. package/lib/Types/Product.js +2 -0
  89. package/lib/Types/Signal.d.ts +57 -0
  90. package/lib/Types/Signal.js +2 -0
  91. package/lib/Types/Socket.d.ts +116 -0
  92. package/lib/Types/Socket.js +2 -0
  93. package/lib/Types/State.d.ts +27 -0
  94. package/lib/Types/State.js +2 -0
  95. package/lib/Types/USync.d.ts +25 -0
  96. package/lib/Types/USync.js +2 -0
  97. package/lib/Types/index.d.ts +66 -0
  98. package/lib/Types/index.js +42 -0
  99. package/lib/Utils/auth-utils.d.ts +18 -0
  100. package/lib/Utils/auth-utils.js +227 -0
  101. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  102. package/lib/Utils/baileys-event-stream.js +63 -0
  103. package/lib/Utils/business.d.ts +22 -0
  104. package/lib/Utils/business.js +234 -0
  105. package/lib/Utils/chat-utils.d.ts +70 -0
  106. package/lib/Utils/chat-utils.js +745 -0
  107. package/lib/Utils/crypto.d.ts +40 -0
  108. package/lib/Utils/crypto.js +199 -0
  109. package/lib/Utils/decode-wa-message.d.ts +36 -0
  110. package/lib/Utils/decode-wa-message.js +234 -0
  111. package/lib/Utils/event-buffer.d.ts +35 -0
  112. package/lib/Utils/event-buffer.js +517 -0
  113. package/lib/Utils/generics.d.ts +88 -0
  114. package/lib/Utils/generics.js +402 -0
  115. package/lib/Utils/history.d.ts +19 -0
  116. package/lib/Utils/history.js +94 -0
  117. package/lib/Utils/index.d.ts +17 -0
  118. package/lib/Utils/index.js +33 -0
  119. package/lib/Utils/link-preview.d.ts +21 -0
  120. package/lib/Utils/link-preview.js +93 -0
  121. package/lib/Utils/logger.d.ts +2 -0
  122. package/lib/Utils/logger.js +7 -0
  123. package/lib/Utils/lt-hash.d.ts +12 -0
  124. package/lib/Utils/lt-hash.js +51 -0
  125. package/lib/Utils/make-mutex.d.ts +7 -0
  126. package/lib/Utils/make-mutex.js +43 -0
  127. package/lib/Utils/messages-media.d.ts +113 -0
  128. package/lib/Utils/messages-media.js +643 -0
  129. package/lib/Utils/messages.d.ts +77 -0
  130. package/lib/Utils/messages.js +1221 -0
  131. package/lib/Utils/noise-handler.d.ts +20 -0
  132. package/lib/Utils/noise-handler.js +160 -0
  133. package/lib/Utils/process-message.d.ts +41 -0
  134. package/lib/Utils/process-message.js +373 -0
  135. package/lib/Utils/signal.d.ts +33 -0
  136. package/lib/Utils/signal.js +159 -0
  137. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  138. package/lib/Utils/use-multi-file-auth-state.js +295 -0
  139. package/lib/Utils/use-single-file-auth-state.d.ts +12 -0
  140. package/lib/Utils/use-single-file-auth-state.js +75 -0
  141. package/lib/Utils/validate-connection.d.ts +11 -0
  142. package/lib/Utils/validate-connection.js +205 -0
  143. package/lib/WABinary/constants.d.ts +27 -0
  144. package/lib/WABinary/constants.js +40 -0
  145. package/lib/WABinary/decode.d.ts +6 -0
  146. package/lib/WABinary/decode.js +264 -0
  147. package/lib/WABinary/encode.d.ts +2 -0
  148. package/lib/WABinary/encode.js +252 -0
  149. package/lib/WABinary/generic-utils.d.ts +14 -0
  150. package/lib/WABinary/generic-utils.js +110 -0
  151. package/lib/WABinary/index.d.ts +5 -0
  152. package/lib/WABinary/index.js +21 -0
  153. package/lib/WABinary/jid-utils.d.ts +31 -0
  154. package/lib/WABinary/jid-utils.js +62 -0
  155. package/lib/WABinary/types.d.ts +18 -0
  156. package/lib/WABinary/types.js +2 -0
  157. package/lib/WAM/BinaryInfo.d.ts +8 -0
  158. package/lib/WAM/BinaryInfo.js +13 -0
  159. package/lib/WAM/constants.d.ts +38 -0
  160. package/lib/WAM/constants.js +15350 -0
  161. package/lib/WAM/encode.d.ts +2 -0
  162. package/lib/WAM/encode.js +155 -0
  163. package/lib/WAM/index.d.ts +3 -0
  164. package/lib/WAM/index.js +19 -0
  165. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  166. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  167. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  168. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  169. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  170. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  171. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  172. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  173. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +25 -0
  174. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  175. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +8 -0
  176. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
  177. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  178. package/lib/WAUSync/Protocols/index.js +20 -0
  179. package/lib/WAUSync/USyncQuery.d.ts +28 -0
  180. package/lib/WAUSync/USyncQuery.js +89 -0
  181. package/lib/WAUSync/USyncUser.d.ts +10 -0
  182. package/lib/WAUSync/USyncUser.js +26 -0
  183. package/lib/WAUSync/index.d.ts +3 -0
  184. package/lib/WAUSync/index.js +19 -0
  185. package/lib/index.js +31 -0
  186. package/package.json +51 -0
  187. package/src/Defaults/baileys-version.json +3 -0
  188. package/src/Defaults/index.ts +133 -0
  189. package/src/Signal/Group/ciphertext-message.ts +9 -0
  190. package/src/Signal/Group/group-session-builder.ts +56 -0
  191. package/src/Signal/Group/group_cipher.ts +117 -0
  192. package/src/Signal/Group/index.ts +11 -0
  193. package/src/Signal/Group/keyhelper.ts +28 -0
  194. package/src/Signal/Group/sender-chain-key.ts +34 -0
  195. package/src/Signal/Group/sender-key-distribution-message.ts +95 -0
  196. package/src/Signal/Group/sender-key-message.ts +96 -0
  197. package/src/Signal/Group/sender-key-name.ts +66 -0
  198. package/src/Signal/Group/sender-key-record.ts +69 -0
  199. package/src/Signal/Group/sender-key-state.ts +134 -0
  200. package/src/Signal/Group/sender-message-key.ts +36 -0
  201. package/src/Signal/libsignal.ts +447 -0
  202. package/src/Signal/lid-mapping.ts +209 -0
  203. package/src/Socket/Client/index.ts +2 -0
  204. package/src/Socket/Client/types.ts +22 -0
  205. package/src/Socket/Client/websocket.ts +56 -0
  206. package/src/Socket/business.ts +421 -0
  207. package/src/Socket/chats.ts +1223 -0
  208. package/src/Socket/communities.ts +477 -0
  209. package/src/Socket/groups.ts +361 -0
  210. package/src/Socket/index.ts +22 -0
  211. package/src/Socket/messages-recv.ts +1563 -0
  212. package/src/Socket/messages-send.ts +1210 -0
  213. package/src/Socket/mex.ts +58 -0
  214. package/src/Socket/newsletter.ts +229 -0
  215. package/src/Socket/socket.ts +1072 -0
  216. package/src/Types/Auth.ts +115 -0
  217. package/src/Types/Bussines.ts +20 -0
  218. package/src/Types/Call.ts +14 -0
  219. package/src/Types/Chat.ts +138 -0
  220. package/src/Types/Contact.ts +24 -0
  221. package/src/Types/Events.ts +132 -0
  222. package/src/Types/GroupMetadata.ts +70 -0
  223. package/src/Types/Label.ts +48 -0
  224. package/src/Types/LabelAssociation.ts +35 -0
  225. package/src/Types/Message.ts +424 -0
  226. package/src/Types/Newsletter.ts +98 -0
  227. package/src/Types/Product.ts +85 -0
  228. package/src/Types/Signal.ts +76 -0
  229. package/src/Types/Socket.ts +150 -0
  230. package/src/Types/State.ts +43 -0
  231. package/src/Types/USync.ts +27 -0
  232. package/src/Types/globals.d.ts +8 -0
  233. package/src/Types/index.ts +67 -0
  234. package/src/Utils/auth-utils.ts +331 -0
  235. package/src/Utils/browser-utils.ts +31 -0
  236. package/src/Utils/business.ts +286 -0
  237. package/src/Utils/chat-utils.ts +933 -0
  238. package/src/Utils/crypto.ts +184 -0
  239. package/src/Utils/decode-wa-message.ts +355 -0
  240. package/src/Utils/event-buffer.ts +662 -0
  241. package/src/Utils/generics.ts +470 -0
  242. package/src/Utils/history.ts +114 -0
  243. package/src/Utils/index.ts +18 -0
  244. package/src/Utils/link-preview.ts +111 -0
  245. package/src/Utils/logger.ts +13 -0
  246. package/src/Utils/lt-hash.ts +65 -0
  247. package/src/Utils/make-mutex.ts +45 -0
  248. package/src/Utils/message-retry-manager.ts +229 -0
  249. package/src/Utils/messages-media.ts +820 -0
  250. package/src/Utils/messages.ts +1137 -0
  251. package/src/Utils/noise-handler.ts +192 -0
  252. package/src/Utils/pre-key-manager.ts +126 -0
  253. package/src/Utils/process-message.ts +622 -0
  254. package/src/Utils/signal.ts +214 -0
  255. package/src/Utils/use-multi-file-auth-state.ts +136 -0
  256. package/src/Utils/validate-connection.ts +253 -0
  257. package/src/WABinary/constants.ts +1305 -0
  258. package/src/WABinary/decode.ts +281 -0
  259. package/src/WABinary/encode.ts +253 -0
  260. package/src/WABinary/generic-utils.ts +127 -0
  261. package/src/WABinary/index.ts +5 -0
  262. package/src/WABinary/jid-utils.ts +128 -0
  263. package/src/WABinary/types.ts +17 -0
  264. package/src/WAM/BinaryInfo.ts +12 -0
  265. package/src/WAM/constants.ts +22889 -0
  266. package/src/WAM/encode.ts +169 -0
  267. package/src/WAM/index.ts +3 -0
  268. package/src/WAUSync/Protocols/USyncContactProtocol.ts +32 -0
  269. package/src/WAUSync/Protocols/USyncDeviceProtocol.ts +78 -0
  270. package/src/WAUSync/Protocols/USyncDisappearingModeProtocol.ts +35 -0
  271. package/src/WAUSync/Protocols/USyncStatusProtocol.ts +44 -0
  272. package/src/WAUSync/Protocols/UsyncBotProfileProtocol.ts +76 -0
  273. package/src/WAUSync/Protocols/UsyncLIDProtocol.ts +33 -0
  274. package/src/WAUSync/Protocols/index.ts +4 -0
  275. package/src/WAUSync/USyncQuery.ts +133 -0
  276. package/src/WAUSync/USyncUser.ts +32 -0
  277. package/src/WAUSync/index.ts +3 -0
  278. package/src/index.ts +13 -0
@@ -0,0 +1,184 @@
1
+ import { createCipheriv, createDecipheriv, createHash, createHmac, randomBytes } from 'crypto'
2
+ import * as curve from 'libsignal/src/curve'
3
+ import { KEY_BUNDLE_TYPE } from '../Defaults'
4
+ import type { KeyPair } from '../Types'
5
+
6
+ // insure browser & node compatibility
7
+ const { subtle } = globalThis.crypto
8
+
9
+ /** prefix version byte to the pub keys, required for some curve crypto functions */
10
+ export const generateSignalPubKey = (pubKey: Uint8Array | Buffer) =>
11
+ pubKey.length === 33 ? pubKey : Buffer.concat([KEY_BUNDLE_TYPE, pubKey])
12
+
13
+ export const Curve = {
14
+ generateKeyPair: (): KeyPair => {
15
+ const { pubKey, privKey } = curve.generateKeyPair()
16
+ return {
17
+ private: Buffer.from(privKey),
18
+ // remove version byte
19
+ public: Buffer.from(pubKey.slice(1))
20
+ }
21
+ },
22
+ sharedKey: (privateKey: Uint8Array, publicKey: Uint8Array) => {
23
+ const shared = curve.calculateAgreement(generateSignalPubKey(publicKey), privateKey)
24
+ return Buffer.from(shared)
25
+ },
26
+ sign: (privateKey: Uint8Array, buf: Uint8Array) => curve.calculateSignature(privateKey, buf),
27
+ verify: (pubKey: Uint8Array, message: Uint8Array, signature: Uint8Array) => {
28
+ try {
29
+ curve.verifySignature(generateSignalPubKey(pubKey), message, signature)
30
+ return true
31
+ } catch (error) {
32
+ return false
33
+ }
34
+ }
35
+ }
36
+
37
+ export const signedKeyPair = (identityKeyPair: KeyPair, keyId: number) => {
38
+ const preKey = Curve.generateKeyPair()
39
+ const pubKey = generateSignalPubKey(preKey.public)
40
+
41
+ const signature = Curve.sign(identityKeyPair.private, pubKey)
42
+
43
+ return { keyPair: preKey, signature, keyId }
44
+ }
45
+
46
+ const GCM_TAG_LENGTH = 128 >> 3
47
+
48
+ /**
49
+ * encrypt AES 256 GCM;
50
+ * where the tag tag is suffixed to the ciphertext
51
+ * */
52
+ export function aesEncryptGCM(plaintext: Uint8Array, key: Uint8Array, iv: Uint8Array, additionalData: Uint8Array) {
53
+ const cipher = createCipheriv('aes-256-gcm', key, iv)
54
+ cipher.setAAD(additionalData)
55
+ return Buffer.concat([cipher.update(plaintext), cipher.final(), cipher.getAuthTag()])
56
+ }
57
+
58
+ /**
59
+ * decrypt AES 256 GCM;
60
+ * where the auth tag is suffixed to the ciphertext
61
+ * */
62
+ export function aesDecryptGCM(ciphertext: Uint8Array, key: Uint8Array, iv: Uint8Array, additionalData: Uint8Array) {
63
+ const decipher = createDecipheriv('aes-256-gcm', key, iv)
64
+ // decrypt additional adata
65
+ const enc = ciphertext.slice(0, ciphertext.length - GCM_TAG_LENGTH)
66
+ const tag = ciphertext.slice(ciphertext.length - GCM_TAG_LENGTH)
67
+ // set additional data
68
+ decipher.setAAD(additionalData)
69
+ decipher.setAuthTag(tag)
70
+
71
+ return Buffer.concat([decipher.update(enc), decipher.final()])
72
+ }
73
+
74
+ export function aesEncryptCTR(plaintext: Uint8Array, key: Uint8Array, iv: Uint8Array) {
75
+ const cipher = createCipheriv('aes-256-ctr', key, iv)
76
+ return Buffer.concat([cipher.update(plaintext), cipher.final()])
77
+ }
78
+
79
+ export function aesDecryptCTR(ciphertext: Uint8Array, key: Uint8Array, iv: Uint8Array) {
80
+ const decipher = createDecipheriv('aes-256-ctr', key, iv)
81
+ return Buffer.concat([decipher.update(ciphertext), decipher.final()])
82
+ }
83
+
84
+ /** decrypt AES 256 CBC; where the IV is prefixed to the buffer */
85
+ export function aesDecrypt(buffer: Buffer, key: Buffer) {
86
+ return aesDecryptWithIV(buffer.slice(16, buffer.length), key, buffer.slice(0, 16))
87
+ }
88
+
89
+ /** decrypt AES 256 CBC */
90
+ export function aesDecryptWithIV(buffer: Buffer, key: Buffer, IV: Buffer) {
91
+ const aes = createDecipheriv('aes-256-cbc', key, IV)
92
+ return Buffer.concat([aes.update(buffer), aes.final()])
93
+ }
94
+
95
+ // encrypt AES 256 CBC; where a random IV is prefixed to the buffer
96
+ export function aesEncrypt(buffer: Buffer | Uint8Array, key: Buffer) {
97
+ const IV = randomBytes(16)
98
+ const aes = createCipheriv('aes-256-cbc', key, IV)
99
+ return Buffer.concat([IV, aes.update(buffer), aes.final()]) // prefix IV to the buffer
100
+ }
101
+
102
+ // encrypt AES 256 CBC with a given IV
103
+ export function aesEncrypWithIV(buffer: Buffer, key: Buffer, IV: Buffer) {
104
+ const aes = createCipheriv('aes-256-cbc', key, IV)
105
+ return Buffer.concat([aes.update(buffer), aes.final()]) // prefix IV to the buffer
106
+ }
107
+
108
+ // sign HMAC using SHA 256
109
+ export function hmacSign(
110
+ buffer: Buffer | Uint8Array,
111
+ key: Buffer | Uint8Array,
112
+ variant: 'sha256' | 'sha512' = 'sha256'
113
+ ) {
114
+ return createHmac(variant, key).update(buffer).digest()
115
+ }
116
+
117
+ export function sha256(buffer: Buffer) {
118
+ return createHash('sha256').update(buffer).digest()
119
+ }
120
+
121
+ export function md5(buffer: Buffer) {
122
+ return createHash('md5').update(buffer).digest()
123
+ }
124
+
125
+ // HKDF key expansion
126
+ export async function hkdf(
127
+ buffer: Uint8Array | Buffer,
128
+ expandedLength: number,
129
+ info: { salt?: Buffer; info?: string }
130
+ ): Promise<Buffer> {
131
+ // Normalize to a Uint8Array whose underlying buffer is a regular ArrayBuffer (not ArrayBufferLike)
132
+ // Cloning via new Uint8Array(...) guarantees the generic parameter is ArrayBuffer which satisfies WebCrypto types.
133
+ const inputKeyMaterial = new Uint8Array(buffer instanceof Uint8Array ? buffer : new Uint8Array(buffer))
134
+
135
+ // Set default values if not provided
136
+ const salt = info.salt ? new Uint8Array(info.salt) : new Uint8Array(0)
137
+ const infoBytes = info.info ? new TextEncoder().encode(info.info) : new Uint8Array(0)
138
+
139
+ // Import the input key material (cast to BufferSource to appease TS DOM typings)
140
+ const importedKey = await subtle.importKey('raw', inputKeyMaterial as BufferSource, { name: 'HKDF' }, false, [
141
+ 'deriveBits'
142
+ ])
143
+
144
+ // Derive bits using HKDF
145
+ const derivedBits = await subtle.deriveBits(
146
+ {
147
+ name: 'HKDF',
148
+ hash: 'SHA-256',
149
+ salt: salt,
150
+ info: infoBytes
151
+ },
152
+ importedKey,
153
+ expandedLength * 8 // Convert bytes to bits
154
+ )
155
+
156
+ return Buffer.from(derivedBits)
157
+ }
158
+
159
+ export async function derivePairingCodeKey(pairingCode: string, salt: Buffer): Promise<Buffer> {
160
+ // Convert inputs to formats Web Crypto API can work with
161
+ const encoder = new TextEncoder()
162
+ const pairingCodeBuffer = encoder.encode(pairingCode)
163
+ const saltBuffer = new Uint8Array(salt instanceof Uint8Array ? salt : new Uint8Array(salt))
164
+
165
+ // Import the pairing code as key material
166
+ const keyMaterial = await subtle.importKey('raw', pairingCodeBuffer as BufferSource, { name: 'PBKDF2' }, false, [
167
+ 'deriveBits'
168
+ ])
169
+
170
+ // Derive bits using PBKDF2 with the same parameters
171
+ // 2 << 16 = 131,072 iterations
172
+ const derivedBits = await subtle.deriveBits(
173
+ {
174
+ name: 'PBKDF2',
175
+ salt: saltBuffer as BufferSource,
176
+ iterations: 2 << 16,
177
+ hash: 'SHA-256'
178
+ },
179
+ keyMaterial,
180
+ 32 * 8 // 32 bytes * 8 = 256 bits
181
+ )
182
+
183
+ return Buffer.from(derivedBits)
184
+ }
@@ -0,0 +1,355 @@
1
+ import { Boom } from '@hapi/boom'
2
+ import { proto } from '../../WAProto/index.js'
3
+ import type { WAMessage, WAMessageKey } from '../Types'
4
+ import type { SignalRepositoryWithLIDStore } from '../Types/Signal'
5
+ import {
6
+ areJidsSameUser,
7
+ type BinaryNode,
8
+ isHostedLidUser,
9
+ isHostedPnUser,
10
+ isJidBroadcast,
11
+ isJidGroup,
12
+ isJidMetaAI,
13
+ isJidNewsletter,
14
+ isJidStatusBroadcast,
15
+ isLidUser,
16
+ isPnUser
17
+ // transferDevice
18
+ } from '../WABinary'
19
+ import { unpadRandomMax16 } from './generics'
20
+ import type { ILogger } from './logger'
21
+
22
+ export const getDecryptionJid = async (sender: string, repository: SignalRepositoryWithLIDStore): Promise<string> => {
23
+ if (isLidUser(sender) || isHostedLidUser(sender)) {
24
+ return sender
25
+ }
26
+
27
+ const mapped = await repository.lidMapping.getLIDForPN(sender)
28
+ return mapped || sender
29
+ }
30
+
31
+ const storeMappingFromEnvelope = async (
32
+ stanza: BinaryNode,
33
+ sender: string,
34
+ repository: SignalRepositoryWithLIDStore,
35
+ decryptionJid: string,
36
+ logger: ILogger
37
+ ): Promise<void> => {
38
+ // TODO: Handle hosted IDs
39
+ const { senderAlt } = extractAddressingContext(stanza)
40
+
41
+ if (senderAlt && isLidUser(senderAlt) && isPnUser(sender) && decryptionJid === sender) {
42
+ try {
43
+ await repository.lidMapping.storeLIDPNMappings([{ lid: senderAlt, pn: sender }])
44
+ await repository.migrateSession(sender, senderAlt)
45
+ logger.debug({ sender, senderAlt }, 'Stored LID mapping from envelope')
46
+ } catch (error) {
47
+ logger.warn({ sender, senderAlt, error }, 'Failed to store LID mapping')
48
+ }
49
+ }
50
+ }
51
+
52
+ export const NO_MESSAGE_FOUND_ERROR_TEXT = 'Message absent from node'
53
+ export const MISSING_KEYS_ERROR_TEXT = 'Key used already or never filled'
54
+
55
+ // Retry configuration for failed decryption
56
+ export const DECRYPTION_RETRY_CONFIG = {
57
+ maxRetries: 3,
58
+ baseDelayMs: 100,
59
+ sessionRecordErrors: ['No session record', 'SessionError: No session record']
60
+ }
61
+
62
+ export const NACK_REASONS = {
63
+ ParsingError: 487,
64
+ UnrecognizedStanza: 488,
65
+ UnrecognizedStanzaClass: 489,
66
+ UnrecognizedStanzaType: 490,
67
+ InvalidProtobuf: 491,
68
+ InvalidHostedCompanionStanza: 493,
69
+ MissingMessageSecret: 495,
70
+ SignalErrorOldCounter: 496,
71
+ MessageDeletedOnPeer: 499,
72
+ UnhandledError: 500,
73
+ UnsupportedAdminRevoke: 550,
74
+ UnsupportedLIDGroup: 551,
75
+ DBOperationFailed: 552
76
+ }
77
+
78
+ type MessageType =
79
+ | 'chat'
80
+ | 'peer_broadcast'
81
+ | 'other_broadcast'
82
+ | 'group'
83
+ | 'direct_peer_status'
84
+ | 'other_status'
85
+ | 'newsletter'
86
+
87
+ export const extractAddressingContext = (stanza: BinaryNode) => {
88
+ let senderAlt: string | undefined
89
+ let recipientAlt: string | undefined
90
+
91
+ const sender = stanza.attrs.participant || stanza.attrs.from
92
+ const addressingMode = stanza.attrs.addressing_mode || (sender?.endsWith('lid') ? 'lid' : 'pn')
93
+
94
+ if (addressingMode === 'lid') {
95
+ // Message is LID-addressed: sender is LID, extract corresponding PN
96
+ // without device data
97
+ senderAlt = stanza.attrs.participant_pn || stanza.attrs.sender_pn || stanza.attrs.peer_recipient_pn
98
+ recipientAlt = stanza.attrs.recipient_pn
99
+ // with device data
100
+ //if (sender && senderAlt) senderAlt = transferDevice(sender, senderAlt)
101
+ } else {
102
+ // Message is PN-addressed: sender is PN, extract corresponding LID
103
+ // without device data
104
+ senderAlt = stanza.attrs.participant_lid || stanza.attrs.sender_lid || stanza.attrs.peer_recipient_lid
105
+ recipientAlt = stanza.attrs.recipient_lid
106
+
107
+ //with device data
108
+ //if (sender && senderAlt) senderAlt = transferDevice(sender, senderAlt)
109
+ }
110
+
111
+ return {
112
+ addressingMode,
113
+ senderAlt,
114
+ recipientAlt
115
+ }
116
+ }
117
+
118
+ /**
119
+ * Decode the received node as a message.
120
+ * @note this will only parse the message, not decrypt it
121
+ */
122
+ export function decodeMessageNode(stanza: BinaryNode, meId: string, meLid: string) {
123
+ let msgType: MessageType
124
+ let chatId: string
125
+ let author: string
126
+ let fromMe = false
127
+
128
+ const msgId = stanza.attrs.id
129
+ const from = stanza.attrs.from
130
+ const participant: string | undefined = stanza.attrs.participant
131
+ const recipient: string | undefined = stanza.attrs.recipient
132
+
133
+ const addressingContext = extractAddressingContext(stanza)
134
+
135
+ const isMe = (jid: string) => areJidsSameUser(jid, meId)
136
+ const isMeLid = (jid: string) => areJidsSameUser(jid, meLid)
137
+
138
+ if (isPnUser(from) || isLidUser(from) || isHostedLidUser(from) || isHostedPnUser(from)) {
139
+ if (recipient && !isJidMetaAI(recipient)) {
140
+ if (!isMe(from!) && !isMeLid(from!)) {
141
+ throw new Boom('receipient present, but msg not from me', { data: stanza })
142
+ }
143
+
144
+ if (isMe(from!) || isMeLid(from!)) {
145
+ fromMe = true
146
+ }
147
+
148
+ chatId = recipient
149
+ } else {
150
+ chatId = from!
151
+ }
152
+
153
+ msgType = 'chat'
154
+ author = from!
155
+ } else if (isJidGroup(from)) {
156
+ if (!participant) {
157
+ throw new Boom('No participant in group message')
158
+ }
159
+
160
+ if (isMe(participant) || isMeLid(participant)) {
161
+ fromMe = true
162
+ }
163
+
164
+ msgType = 'group'
165
+ author = participant
166
+ chatId = from!
167
+ } else if (isJidBroadcast(from)) {
168
+ if (!participant) {
169
+ throw new Boom('No participant in group message')
170
+ }
171
+
172
+ const isParticipantMe = isMe(participant)
173
+ if (isJidStatusBroadcast(from!)) {
174
+ msgType = isParticipantMe ? 'direct_peer_status' : 'other_status'
175
+ } else {
176
+ msgType = isParticipantMe ? 'peer_broadcast' : 'other_broadcast'
177
+ }
178
+
179
+ fromMe = isParticipantMe
180
+ chatId = from!
181
+ author = participant
182
+ } else if (isJidNewsletter(from)) {
183
+ msgType = 'newsletter'
184
+ chatId = from!
185
+ author = from!
186
+
187
+ if (isMe(from!) || isMeLid(from!)) {
188
+ fromMe = true
189
+ }
190
+ } else {
191
+ throw new Boom('Unknown message type', { data: stanza })
192
+ }
193
+
194
+ const pushname = stanza?.attrs?.notify
195
+
196
+ const key: WAMessageKey = {
197
+ remoteJid: chatId,
198
+ remoteJidAlt: !isJidGroup(chatId) ? addressingContext.senderAlt : undefined,
199
+ fromMe,
200
+ id: msgId,
201
+ participant,
202
+ participantAlt: isJidGroup(chatId) ? addressingContext.senderAlt : undefined,
203
+ addressingMode: addressingContext.addressingMode,
204
+ ...(msgType === 'newsletter' && stanza.attrs.server_id ? { server_id: stanza.attrs.server_id } : {})
205
+ }
206
+
207
+ const fullMessage: WAMessage = {
208
+ key,
209
+ category: stanza.attrs.category,
210
+ messageTimestamp: +stanza.attrs.t!,
211
+ pushName: pushname,
212
+ broadcast: isJidBroadcast(from)
213
+ }
214
+
215
+ if (key.fromMe) {
216
+ fullMessage.status = proto.WebMessageInfo.Status.SERVER_ACK
217
+ }
218
+
219
+ return {
220
+ fullMessage,
221
+ author,
222
+ sender: msgType === 'chat' ? author : chatId
223
+ }
224
+ }
225
+
226
+ export const decryptMessageNode = (
227
+ stanza: BinaryNode,
228
+ meId: string,
229
+ meLid: string,
230
+ repository: SignalRepositoryWithLIDStore,
231
+ logger: ILogger
232
+ ) => {
233
+ const { fullMessage, author, sender } = decodeMessageNode(stanza, meId, meLid)
234
+ return {
235
+ fullMessage,
236
+ category: stanza.attrs.category,
237
+ author,
238
+ async decrypt() {
239
+ let decryptables = 0
240
+ if (Array.isArray(stanza.content)) {
241
+ for (const { tag, attrs, content } of stanza.content) {
242
+ if (tag === 'verified_name' && content instanceof Uint8Array) {
243
+ const cert = proto.VerifiedNameCertificate.decode(content)
244
+ const details = proto.VerifiedNameCertificate.Details.decode(cert.details!)
245
+ fullMessage.verifiedBizName = details.verifiedName
246
+ }
247
+
248
+ if (tag === 'unavailable' && attrs.type === 'view_once') {
249
+ fullMessage.key.isViewOnce = true // TODO: remove from here and add a STUB TYPE
250
+ }
251
+
252
+ if (attrs.count && tag === 'enc') {
253
+ fullMessage.retryCount = Number(attrs.count)
254
+ }
255
+
256
+ if (tag !== 'enc' && tag !== 'plaintext') {
257
+ continue
258
+ }
259
+
260
+ if (!(content instanceof Uint8Array)) {
261
+ continue
262
+ }
263
+
264
+ decryptables += 1
265
+
266
+ let msgBuffer: Uint8Array
267
+
268
+ const decryptionJid = await getDecryptionJid(author, repository)
269
+
270
+ if (tag !== 'plaintext') {
271
+ // TODO: Handle hosted devices
272
+ await storeMappingFromEnvelope(stanza, author, repository, decryptionJid, logger)
273
+ }
274
+
275
+ try {
276
+ const e2eType = tag === 'plaintext' ? 'plaintext' : attrs.type
277
+
278
+ switch (e2eType) {
279
+ case 'skmsg':
280
+ msgBuffer = await repository.decryptGroupMessage({
281
+ group: sender,
282
+ authorJid: author,
283
+ msg: content
284
+ })
285
+ break
286
+ case 'pkmsg':
287
+ case 'msg':
288
+ msgBuffer = await repository.decryptMessage({
289
+ jid: decryptionJid,
290
+ type: e2eType,
291
+ ciphertext: content
292
+ })
293
+ break
294
+ case 'plaintext':
295
+ msgBuffer = content
296
+ break
297
+ default:
298
+ throw new Error(`Unknown e2e type: ${e2eType}`)
299
+ }
300
+
301
+ let msg: proto.IMessage = proto.Message.decode(
302
+ e2eType !== 'plaintext' ? unpadRandomMax16(msgBuffer) : msgBuffer
303
+ )
304
+ msg = msg.deviceSentMessage?.message || msg
305
+ if (msg.senderKeyDistributionMessage) {
306
+ //eslint-disable-next-line max-depth
307
+ try {
308
+ await repository.processSenderKeyDistributionMessage({
309
+ authorJid: author,
310
+ item: msg.senderKeyDistributionMessage
311
+ })
312
+ } catch (err) {
313
+ logger.error({ key: fullMessage.key, err }, 'failed to process sender key distribution message')
314
+ }
315
+ }
316
+
317
+ if (fullMessage.message) {
318
+ Object.assign(fullMessage.message, msg)
319
+ } else {
320
+ fullMessage.message = msg
321
+ }
322
+ } catch (err: any) {
323
+ const errorContext = {
324
+ key: fullMessage.key,
325
+ err,
326
+ messageType: tag === 'plaintext' ? 'plaintext' : attrs.type,
327
+ sender,
328
+ author,
329
+ isSessionRecordError: isSessionRecordError(err)
330
+ }
331
+
332
+ logger.error(errorContext, 'failed to decrypt message')
333
+
334
+ fullMessage.messageStubType = proto.WebMessageInfo.StubType.CIPHERTEXT
335
+ fullMessage.messageStubParameters = [err.message.toString()]
336
+ }
337
+ }
338
+ }
339
+
340
+ // if nothing was found to decrypt
341
+ if (!decryptables && !fullMessage.key?.isViewOnce) {
342
+ fullMessage.messageStubType = proto.WebMessageInfo.StubType.CIPHERTEXT
343
+ fullMessage.messageStubParameters = [NO_MESSAGE_FOUND_ERROR_TEXT]
344
+ }
345
+ }
346
+ }
347
+ }
348
+
349
+ /**
350
+ * Utility function to check if an error is related to missing session record
351
+ */
352
+ function isSessionRecordError(error: any): boolean {
353
+ const errorMessage = error?.message || error?.toString() || ''
354
+ return DECRYPTION_RETRY_CONFIG.sessionRecordErrors.some(errorPattern => errorMessage.includes(errorPattern))
355
+ }