@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.
- package/LICENSE +21 -0
- package/README.md +606 -0
- package/WAProto/GenerateStatics.sh +4 -0
- package/WAProto/WAProto.proto +4357 -0
- package/WAProto/index.d.ts +50383 -0
- package/WAProto/index.js +155693 -0
- package/WASignalGroup/GroupProtocol.js +1697 -0
- package/WASignalGroup/ciphertext_message.js +16 -0
- package/WASignalGroup/generate-proto.sh +1 -0
- package/WASignalGroup/group.proto +42 -0
- package/WASignalGroup/group_cipher.js +120 -0
- package/WASignalGroup/group_session_builder.js +46 -0
- package/WASignalGroup/index.js +5 -0
- package/WASignalGroup/keyhelper.js +21 -0
- package/WASignalGroup/protobufs.js +3 -0
- package/WASignalGroup/queue_job.js +69 -0
- package/WASignalGroup/sender_chain_key.js +50 -0
- package/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/WASignalGroup/sender_key_message.js +92 -0
- package/WASignalGroup/sender_key_name.js +70 -0
- package/WASignalGroup/sender_key_record.js +56 -0
- package/WASignalGroup/sender_key_state.js +129 -0
- package/WASignalGroup/sender_message_key.js +39 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +53 -0
- package/lib/Defaults/index.js +108 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +152 -0
- package/lib/Socket/Client/abstract-socket-client.d.ts +17 -0
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -0
- package/lib/Socket/Client/index.js +19 -0
- package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/web-socket-client.d.ts +12 -0
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +170 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +81 -0
- package/lib/Socket/chats.js +950 -0
- package/lib/Socket/groups.d.ts +115 -0
- package/lib/Socket/groups.js +315 -0
- package/lib/Socket/index.d.ts +172 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +158 -0
- package/lib/Socket/messages-recv.js +972 -0
- package/lib/Socket/messages-send.d.ts +155 -0
- package/lib/Socket/messages-send.js +1087 -0
- package/lib/Socket/newsletter.d.ts +132 -0
- package/lib/Socket/newsletter.js +236 -0
- package/lib/Socket/registration.d.ts +264 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +44 -0
- package/lib/Socket/socket.js +643 -0
- package/lib/Socket/usync.d.ts +37 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -0
- package/lib/Store/index.js +10 -0
- package/lib/Store/make-cache-manager-store.d.ts +14 -0
- package/lib/Store/make-cache-manager-store.js +83 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +431 -0
- package/lib/Store/make-ordered-dictionary.d.ts +13 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.d.ts +109 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.d.ts +13 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.d.ts +107 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +19 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +172 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +56 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +46 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.d.ts +29 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.d.ts +433 -0
- package/lib/Types/Message.js +9 -0
- package/lib/Types/Newsletter.d.ts +92 -0
- package/lib/Types/Newsletter.js +32 -0
- package/lib/Types/Product.d.ts +78 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.d.ts +57 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.d.ts +116 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.d.ts +27 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.d.ts +25 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.d.ts +66 -0
- package/lib/Types/index.js +42 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +227 -0
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +22 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chat-utils.d.ts +70 -0
- package/lib/Utils/chat-utils.js +745 -0
- package/lib/Utils/crypto.d.ts +40 -0
- package/lib/Utils/crypto.js +199 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +234 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +517 -0
- package/lib/Utils/generics.d.ts +88 -0
- package/lib/Utils/generics.js +402 -0
- package/lib/Utils/history.d.ts +19 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.d.ts +17 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.d.ts +21 -0
- package/lib/Utils/link-preview.js +93 -0
- package/lib/Utils/logger.d.ts +2 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.d.ts +7 -0
- package/lib/Utils/make-mutex.js +43 -0
- package/lib/Utils/messages-media.d.ts +113 -0
- package/lib/Utils/messages-media.js +643 -0
- package/lib/Utils/messages.d.ts +77 -0
- package/lib/Utils/messages.js +1221 -0
- package/lib/Utils/noise-handler.d.ts +20 -0
- package/lib/Utils/noise-handler.js +160 -0
- package/lib/Utils/process-message.d.ts +41 -0
- package/lib/Utils/process-message.js +373 -0
- package/lib/Utils/signal.d.ts +33 -0
- package/lib/Utils/signal.js +159 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-multi-file-auth-state.js +295 -0
- package/lib/Utils/use-single-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-single-file-auth-state.js +75 -0
- package/lib/Utils/validate-connection.d.ts +11 -0
- package/lib/Utils/validate-connection.js +205 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +40 -0
- package/lib/WABinary/decode.d.ts +6 -0
- package/lib/WABinary/decode.js +264 -0
- package/lib/WABinary/encode.d.ts +2 -0
- package/lib/WABinary/encode.js +252 -0
- package/lib/WABinary/generic-utils.d.ts +14 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.d.ts +31 -0
- package/lib/WABinary/jid-utils.js +62 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +8 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +38 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +2 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +25 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +8 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +28 -0
- package/lib/WAUSync/USyncQuery.js +89 -0
- package/lib/WAUSync/USyncUser.d.ts +10 -0
- package/lib/WAUSync/USyncUser.js +26 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.js +31 -0
- package/package.json +51 -0
- package/src/Defaults/baileys-version.json +3 -0
- package/src/Defaults/index.ts +133 -0
- package/src/Signal/Group/ciphertext-message.ts +9 -0
- package/src/Signal/Group/group-session-builder.ts +56 -0
- package/src/Signal/Group/group_cipher.ts +117 -0
- package/src/Signal/Group/index.ts +11 -0
- package/src/Signal/Group/keyhelper.ts +28 -0
- package/src/Signal/Group/sender-chain-key.ts +34 -0
- package/src/Signal/Group/sender-key-distribution-message.ts +95 -0
- package/src/Signal/Group/sender-key-message.ts +96 -0
- package/src/Signal/Group/sender-key-name.ts +66 -0
- package/src/Signal/Group/sender-key-record.ts +69 -0
- package/src/Signal/Group/sender-key-state.ts +134 -0
- package/src/Signal/Group/sender-message-key.ts +36 -0
- package/src/Signal/libsignal.ts +447 -0
- package/src/Signal/lid-mapping.ts +209 -0
- package/src/Socket/Client/index.ts +2 -0
- package/src/Socket/Client/types.ts +22 -0
- package/src/Socket/Client/websocket.ts +56 -0
- package/src/Socket/business.ts +421 -0
- package/src/Socket/chats.ts +1223 -0
- package/src/Socket/communities.ts +477 -0
- package/src/Socket/groups.ts +361 -0
- package/src/Socket/index.ts +22 -0
- package/src/Socket/messages-recv.ts +1563 -0
- package/src/Socket/messages-send.ts +1210 -0
- package/src/Socket/mex.ts +58 -0
- package/src/Socket/newsletter.ts +229 -0
- package/src/Socket/socket.ts +1072 -0
- package/src/Types/Auth.ts +115 -0
- package/src/Types/Bussines.ts +20 -0
- package/src/Types/Call.ts +14 -0
- package/src/Types/Chat.ts +138 -0
- package/src/Types/Contact.ts +24 -0
- package/src/Types/Events.ts +132 -0
- package/src/Types/GroupMetadata.ts +70 -0
- package/src/Types/Label.ts +48 -0
- package/src/Types/LabelAssociation.ts +35 -0
- package/src/Types/Message.ts +424 -0
- package/src/Types/Newsletter.ts +98 -0
- package/src/Types/Product.ts +85 -0
- package/src/Types/Signal.ts +76 -0
- package/src/Types/Socket.ts +150 -0
- package/src/Types/State.ts +43 -0
- package/src/Types/USync.ts +27 -0
- package/src/Types/globals.d.ts +8 -0
- package/src/Types/index.ts +67 -0
- package/src/Utils/auth-utils.ts +331 -0
- package/src/Utils/browser-utils.ts +31 -0
- package/src/Utils/business.ts +286 -0
- package/src/Utils/chat-utils.ts +933 -0
- package/src/Utils/crypto.ts +184 -0
- package/src/Utils/decode-wa-message.ts +355 -0
- package/src/Utils/event-buffer.ts +662 -0
- package/src/Utils/generics.ts +470 -0
- package/src/Utils/history.ts +114 -0
- package/src/Utils/index.ts +18 -0
- package/src/Utils/link-preview.ts +111 -0
- package/src/Utils/logger.ts +13 -0
- package/src/Utils/lt-hash.ts +65 -0
- package/src/Utils/make-mutex.ts +45 -0
- package/src/Utils/message-retry-manager.ts +229 -0
- package/src/Utils/messages-media.ts +820 -0
- package/src/Utils/messages.ts +1137 -0
- package/src/Utils/noise-handler.ts +192 -0
- package/src/Utils/pre-key-manager.ts +126 -0
- package/src/Utils/process-message.ts +622 -0
- package/src/Utils/signal.ts +214 -0
- package/src/Utils/use-multi-file-auth-state.ts +136 -0
- package/src/Utils/validate-connection.ts +253 -0
- package/src/WABinary/constants.ts +1305 -0
- package/src/WABinary/decode.ts +281 -0
- package/src/WABinary/encode.ts +253 -0
- package/src/WABinary/generic-utils.ts +127 -0
- package/src/WABinary/index.ts +5 -0
- package/src/WABinary/jid-utils.ts +128 -0
- package/src/WABinary/types.ts +17 -0
- package/src/WAM/BinaryInfo.ts +12 -0
- package/src/WAM/constants.ts +22889 -0
- package/src/WAM/encode.ts +169 -0
- package/src/WAM/index.ts +3 -0
- package/src/WAUSync/Protocols/USyncContactProtocol.ts +32 -0
- package/src/WAUSync/Protocols/USyncDeviceProtocol.ts +78 -0
- package/src/WAUSync/Protocols/USyncDisappearingModeProtocol.ts +35 -0
- package/src/WAUSync/Protocols/USyncStatusProtocol.ts +44 -0
- package/src/WAUSync/Protocols/UsyncBotProfileProtocol.ts +76 -0
- package/src/WAUSync/Protocols/UsyncLIDProtocol.ts +33 -0
- package/src/WAUSync/Protocols/index.ts +4 -0
- package/src/WAUSync/USyncQuery.ts +133 -0
- package/src/WAUSync/USyncUser.ts +32 -0
- package/src/WAUSync/index.ts +3 -0
- package/src/index.ts +13 -0
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { Boom } from '@hapi/boom'
|
|
2
|
+
import { proto } from '../../WAProto/index.js'
|
|
3
|
+
import { NOISE_MODE, WA_CERT_DETAILS } from '../Defaults'
|
|
4
|
+
import type { KeyPair } from '../Types'
|
|
5
|
+
import type { BinaryNode } from '../WABinary'
|
|
6
|
+
import { decodeBinaryNode } from '../WABinary'
|
|
7
|
+
import { aesDecryptGCM, aesEncryptGCM, Curve, hkdf, sha256 } from './crypto'
|
|
8
|
+
import type { ILogger } from './logger'
|
|
9
|
+
|
|
10
|
+
const generateIV = (counter: number) => {
|
|
11
|
+
const iv = new ArrayBuffer(12)
|
|
12
|
+
new DataView(iv).setUint32(8, counter)
|
|
13
|
+
|
|
14
|
+
return new Uint8Array(iv)
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const makeNoiseHandler = ({
|
|
18
|
+
keyPair: { private: privateKey, public: publicKey },
|
|
19
|
+
NOISE_HEADER,
|
|
20
|
+
logger,
|
|
21
|
+
routingInfo
|
|
22
|
+
}: {
|
|
23
|
+
keyPair: KeyPair
|
|
24
|
+
NOISE_HEADER: Uint8Array
|
|
25
|
+
logger: ILogger
|
|
26
|
+
routingInfo?: Buffer | undefined
|
|
27
|
+
}) => {
|
|
28
|
+
logger = logger.child({ class: 'ns' })
|
|
29
|
+
|
|
30
|
+
const authenticate = (data: Uint8Array) => {
|
|
31
|
+
if (!isFinished) {
|
|
32
|
+
hash = sha256(Buffer.concat([hash, data]))
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const encrypt = (plaintext: Uint8Array) => {
|
|
37
|
+
const result = aesEncryptGCM(plaintext, encKey, generateIV(writeCounter), hash)
|
|
38
|
+
|
|
39
|
+
writeCounter += 1
|
|
40
|
+
|
|
41
|
+
authenticate(result)
|
|
42
|
+
return result
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const decrypt = (ciphertext: Uint8Array) => {
|
|
46
|
+
// before the handshake is finished, we use the same counter
|
|
47
|
+
// after handshake, the counters are different
|
|
48
|
+
const iv = generateIV(isFinished ? readCounter : writeCounter)
|
|
49
|
+
const result = aesDecryptGCM(ciphertext, decKey, iv, hash)
|
|
50
|
+
|
|
51
|
+
if (isFinished) {
|
|
52
|
+
readCounter += 1
|
|
53
|
+
} else {
|
|
54
|
+
writeCounter += 1
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
authenticate(ciphertext)
|
|
58
|
+
return result
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const localHKDF = async (data: Uint8Array) => {
|
|
62
|
+
const key = await hkdf(Buffer.from(data), 64, { salt, info: '' })
|
|
63
|
+
return [key.slice(0, 32), key.slice(32)]
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const mixIntoKey = async (data: Uint8Array) => {
|
|
67
|
+
const [write, read] = await localHKDF(data)
|
|
68
|
+
salt = write!
|
|
69
|
+
encKey = read!
|
|
70
|
+
decKey = read!
|
|
71
|
+
readCounter = 0
|
|
72
|
+
writeCounter = 0
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const finishInit = async () => {
|
|
76
|
+
const [write, read] = await localHKDF(new Uint8Array(0))
|
|
77
|
+
encKey = write!
|
|
78
|
+
decKey = read!
|
|
79
|
+
hash = Buffer.from([])
|
|
80
|
+
readCounter = 0
|
|
81
|
+
writeCounter = 0
|
|
82
|
+
isFinished = true
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const data = Buffer.from(NOISE_MODE)
|
|
86
|
+
let hash = data.byteLength === 32 ? data : sha256(data)
|
|
87
|
+
let salt = hash
|
|
88
|
+
let encKey = hash
|
|
89
|
+
let decKey = hash
|
|
90
|
+
let readCounter = 0
|
|
91
|
+
let writeCounter = 0
|
|
92
|
+
let isFinished = false
|
|
93
|
+
let sentIntro = false
|
|
94
|
+
|
|
95
|
+
let inBytes = Buffer.alloc(0)
|
|
96
|
+
|
|
97
|
+
authenticate(NOISE_HEADER)
|
|
98
|
+
authenticate(publicKey)
|
|
99
|
+
|
|
100
|
+
return {
|
|
101
|
+
encrypt,
|
|
102
|
+
decrypt,
|
|
103
|
+
authenticate,
|
|
104
|
+
mixIntoKey,
|
|
105
|
+
finishInit,
|
|
106
|
+
processHandshake: async ({ serverHello }: proto.HandshakeMessage, noiseKey: KeyPair) => {
|
|
107
|
+
authenticate(serverHello!.ephemeral!)
|
|
108
|
+
await mixIntoKey(Curve.sharedKey(privateKey, serverHello!.ephemeral!))
|
|
109
|
+
|
|
110
|
+
const decStaticContent = decrypt(serverHello!.static!)
|
|
111
|
+
await mixIntoKey(Curve.sharedKey(privateKey, decStaticContent))
|
|
112
|
+
|
|
113
|
+
const certDecoded = decrypt(serverHello!.payload!)
|
|
114
|
+
|
|
115
|
+
const { intermediate: certIntermediate /*leaf*/ } = proto.CertChain.decode(certDecoded)
|
|
116
|
+
// TODO: handle this leaf stuff
|
|
117
|
+
const { issuerSerial } = proto.CertChain.NoiseCertificate.Details.decode(certIntermediate!.details!)
|
|
118
|
+
|
|
119
|
+
if (issuerSerial !== WA_CERT_DETAILS.SERIAL) {
|
|
120
|
+
throw new Boom('certification match failed', { statusCode: 400 })
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const keyEnc = encrypt(noiseKey.public)
|
|
124
|
+
await mixIntoKey(Curve.sharedKey(noiseKey.private, serverHello!.ephemeral!))
|
|
125
|
+
|
|
126
|
+
return keyEnc
|
|
127
|
+
},
|
|
128
|
+
encodeFrame: (data: Buffer | Uint8Array) => {
|
|
129
|
+
if (isFinished) {
|
|
130
|
+
data = encrypt(data)
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
let header: Buffer
|
|
134
|
+
|
|
135
|
+
if (routingInfo) {
|
|
136
|
+
header = Buffer.alloc(7)
|
|
137
|
+
header.write('ED', 0, 'utf8')
|
|
138
|
+
header.writeUint8(0, 2)
|
|
139
|
+
header.writeUint8(1, 3)
|
|
140
|
+
header.writeUint8(routingInfo.byteLength >> 16, 4)
|
|
141
|
+
header.writeUint16BE(routingInfo.byteLength & 65535, 5)
|
|
142
|
+
header = Buffer.concat([header, routingInfo, NOISE_HEADER])
|
|
143
|
+
} else {
|
|
144
|
+
header = Buffer.from(NOISE_HEADER)
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
const introSize = sentIntro ? 0 : header.length
|
|
148
|
+
const frame = Buffer.alloc(introSize + 3 + data.byteLength)
|
|
149
|
+
|
|
150
|
+
if (!sentIntro) {
|
|
151
|
+
frame.set(header)
|
|
152
|
+
sentIntro = true
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
frame.writeUInt8(data.byteLength >> 16, introSize)
|
|
156
|
+
frame.writeUInt16BE(65535 & data.byteLength, introSize + 1)
|
|
157
|
+
frame.set(data, introSize + 3)
|
|
158
|
+
|
|
159
|
+
return frame
|
|
160
|
+
},
|
|
161
|
+
decodeFrame: async (newData: Buffer | Uint8Array, onFrame: (buff: Uint8Array | BinaryNode) => void) => {
|
|
162
|
+
// the binary protocol uses its own framing mechanism
|
|
163
|
+
// on top of the WS frames
|
|
164
|
+
// so we get this data and separate out the frames
|
|
165
|
+
const getBytesSize = () => {
|
|
166
|
+
if (inBytes.length >= 3) {
|
|
167
|
+
return (inBytes.readUInt8() << 16) | inBytes.readUInt16BE(1)
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
inBytes = Buffer.concat([inBytes, newData])
|
|
172
|
+
|
|
173
|
+
logger.trace(`recv ${newData.length} bytes, total recv ${inBytes.length} bytes`)
|
|
174
|
+
|
|
175
|
+
let size = getBytesSize()
|
|
176
|
+
while (size && inBytes.length >= size + 3) {
|
|
177
|
+
let frame: Uint8Array | BinaryNode = inBytes.slice(3, size + 3)
|
|
178
|
+
inBytes = inBytes.slice(size + 3)
|
|
179
|
+
|
|
180
|
+
if (isFinished) {
|
|
181
|
+
const result = decrypt(frame)
|
|
182
|
+
frame = await decodeBinaryNode(result)
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
logger.trace({ msg: (frame as BinaryNode)?.attrs?.id }, 'recv frame')
|
|
186
|
+
|
|
187
|
+
onFrame(frame)
|
|
188
|
+
size = getBytesSize()
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import PQueue from 'p-queue'
|
|
2
|
+
import type { SignalDataSet, SignalDataTypeMap, SignalKeyStore } from '../Types'
|
|
3
|
+
import type { ILogger } from './logger'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Manages pre-key operations with proper concurrency control
|
|
7
|
+
*/
|
|
8
|
+
export class PreKeyManager {
|
|
9
|
+
private readonly queues = new Map<string, PQueue>()
|
|
10
|
+
|
|
11
|
+
constructor(
|
|
12
|
+
private readonly store: SignalKeyStore,
|
|
13
|
+
private readonly logger: ILogger
|
|
14
|
+
) {}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Get or create a queue for a specific key type
|
|
18
|
+
*/
|
|
19
|
+
private getQueue(keyType: string): PQueue {
|
|
20
|
+
if (!this.queues.has(keyType)) {
|
|
21
|
+
this.queues.set(keyType, new PQueue({ concurrency: 1 }))
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return this.queues.get(keyType)!
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Process pre-key operations (updates and deletions)
|
|
29
|
+
*/
|
|
30
|
+
async processOperations(
|
|
31
|
+
data: SignalDataSet,
|
|
32
|
+
keyType: keyof SignalDataTypeMap,
|
|
33
|
+
transactionCache: SignalDataSet,
|
|
34
|
+
mutations: SignalDataSet,
|
|
35
|
+
isInTransaction: boolean
|
|
36
|
+
): Promise<void> {
|
|
37
|
+
const keyData = data[keyType]
|
|
38
|
+
if (!keyData) return
|
|
39
|
+
|
|
40
|
+
return this.getQueue(keyType).add(async () => {
|
|
41
|
+
// Ensure structures exist
|
|
42
|
+
transactionCache[keyType] = transactionCache[keyType] || ({} as any)
|
|
43
|
+
mutations[keyType] = mutations[keyType] || ({} as any)
|
|
44
|
+
|
|
45
|
+
// Separate deletions from updates
|
|
46
|
+
const deletions: string[] = []
|
|
47
|
+
const updates: Record<string, any> = {}
|
|
48
|
+
|
|
49
|
+
for (const keyId in keyData) {
|
|
50
|
+
if (keyData[keyId] === null) {
|
|
51
|
+
deletions.push(keyId)
|
|
52
|
+
} else {
|
|
53
|
+
updates[keyId] = keyData[keyId]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Process updates (no validation needed)
|
|
58
|
+
if (Object.keys(updates).length > 0) {
|
|
59
|
+
Object.assign(transactionCache[keyType]!, updates)
|
|
60
|
+
Object.assign(mutations[keyType]!, updates)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Process deletions with validation
|
|
64
|
+
if (deletions.length > 0) {
|
|
65
|
+
await this.processDeletions(keyType, deletions, transactionCache, mutations, isInTransaction)
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Process deletions with validation
|
|
72
|
+
*/
|
|
73
|
+
private async processDeletions(
|
|
74
|
+
keyType: keyof SignalDataTypeMap,
|
|
75
|
+
ids: string[],
|
|
76
|
+
transactionCache: SignalDataSet,
|
|
77
|
+
mutations: SignalDataSet,
|
|
78
|
+
isInTransaction: boolean
|
|
79
|
+
): Promise<void> {
|
|
80
|
+
if (isInTransaction) {
|
|
81
|
+
// In transaction, only allow deletion if key exists in cache
|
|
82
|
+
for (const keyId of ids) {
|
|
83
|
+
if (transactionCache[keyType]?.[keyId]) {
|
|
84
|
+
transactionCache[keyType][keyId] = null
|
|
85
|
+
mutations[keyType]![keyId] = null
|
|
86
|
+
} else {
|
|
87
|
+
this.logger.warn(`Skipping deletion of non-existent ${keyType} in transaction: ${keyId}`)
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
} else {
|
|
91
|
+
// Outside transaction, validate against store
|
|
92
|
+
const existingKeys = await this.store.get(keyType, ids)
|
|
93
|
+
for (const keyId of ids) {
|
|
94
|
+
if (existingKeys[keyId]) {
|
|
95
|
+
transactionCache[keyType]![keyId] = null
|
|
96
|
+
mutations[keyType]![keyId] = null
|
|
97
|
+
} else {
|
|
98
|
+
this.logger.warn(`Skipping deletion of non-existent ${keyType}: ${keyId}`)
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Validate and process pre-key deletions outside transactions
|
|
106
|
+
*/
|
|
107
|
+
async validateDeletions(data: SignalDataSet, keyType: keyof SignalDataTypeMap): Promise<void> {
|
|
108
|
+
const keyData = data[keyType]
|
|
109
|
+
if (!keyData) return
|
|
110
|
+
|
|
111
|
+
return this.getQueue(keyType).add(async () => {
|
|
112
|
+
// Find all deletion requests
|
|
113
|
+
const deletionIds = Object.keys(keyData).filter(id => keyData[id] === null)
|
|
114
|
+
if (deletionIds.length === 0) return
|
|
115
|
+
|
|
116
|
+
// Validate deletions
|
|
117
|
+
const existingKeys = await this.store.get(keyType, deletionIds)
|
|
118
|
+
for (const keyId of deletionIds) {
|
|
119
|
+
if (!existingKeys[keyId]) {
|
|
120
|
+
this.logger.warn(`Skipping deletion of non-existent ${keyType}: ${keyId}`)
|
|
121
|
+
delete data[keyType]![keyId]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
})
|
|
125
|
+
}
|
|
126
|
+
}
|