@vex-chat/libvex 1.1.0 → 4.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/README.md +104 -41
- package/dist/Client.d.ts +473 -560
- package/dist/Client.d.ts.map +1 -0
- package/dist/Client.js +1486 -1551
- package/dist/Client.js.map +1 -1
- package/dist/Storage.d.ts +111 -0
- package/dist/Storage.d.ts.map +1 -0
- package/dist/Storage.js +2 -0
- package/dist/Storage.js.map +1 -0
- package/dist/__tests__/harness/memory-storage.d.ts +29 -27
- package/dist/__tests__/harness/memory-storage.d.ts.map +1 -0
- package/dist/__tests__/harness/memory-storage.js +120 -109
- package/dist/__tests__/harness/memory-storage.js.map +1 -1
- package/dist/codec.d.ts +44 -0
- package/dist/codec.d.ts.map +1 -0
- package/dist/codec.js +51 -0
- package/dist/codec.js.map +1 -0
- package/dist/codecs.d.ts +201 -0
- package/dist/codecs.d.ts.map +1 -0
- package/dist/codecs.js +67 -0
- package/dist/codecs.js.map +1 -0
- package/dist/index.d.ts +6 -5
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/keystore/memory.d.ts +5 -4
- package/dist/keystore/memory.d.ts.map +1 -0
- package/dist/keystore/memory.js +9 -7
- package/dist/keystore/memory.js.map +1 -1
- package/dist/keystore/node.d.ts +8 -6
- package/dist/keystore/node.d.ts.map +1 -0
- package/dist/keystore/node.js +47 -22
- package/dist/keystore/node.js.map +1 -1
- package/dist/preset/common.d.ts +7 -0
- package/dist/preset/common.d.ts.map +1 -0
- package/dist/preset/common.js +2 -0
- package/dist/preset/common.js.map +1 -0
- package/dist/preset/node.d.ts +4 -7
- package/dist/preset/node.d.ts.map +1 -0
- package/dist/preset/node.js +4 -11
- package/dist/preset/node.js.map +1 -1
- package/dist/preset/test.d.ts +4 -5
- package/dist/preset/test.d.ts.map +1 -0
- package/dist/preset/test.js +3 -20
- package/dist/preset/test.js.map +1 -1
- package/dist/storage/node.d.ts +3 -3
- package/dist/storage/node.d.ts.map +1 -0
- package/dist/storage/node.js +4 -10
- package/dist/storage/node.js.map +1 -1
- package/dist/storage/schema.d.ts +55 -54
- package/dist/storage/schema.d.ts.map +1 -0
- package/dist/storage/sqlite.d.ts +41 -28
- package/dist/storage/sqlite.d.ts.map +1 -0
- package/dist/storage/sqlite.js +339 -297
- package/dist/storage/sqlite.js.map +1 -1
- package/dist/transport/types.d.ts +17 -16
- package/dist/transport/types.d.ts.map +1 -0
- package/dist/transport/websocket.d.ts +26 -0
- package/dist/transport/websocket.d.ts.map +1 -0
- package/dist/transport/websocket.js +83 -0
- package/dist/transport/websocket.js.map +1 -0
- package/dist/types/crypto.d.ts +38 -0
- package/dist/types/crypto.d.ts.map +1 -0
- package/dist/types/crypto.js +9 -0
- package/dist/types/crypto.js.map +1 -0
- package/dist/types/identity.d.ts +22 -0
- package/dist/types/identity.d.ts.map +1 -0
- package/dist/types/identity.js +6 -0
- package/dist/types/identity.js.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/dist/utils/capitalize.d.ts +1 -0
- package/dist/utils/capitalize.d.ts.map +1 -0
- package/dist/utils/formatBytes.d.ts +1 -0
- package/dist/utils/formatBytes.d.ts.map +1 -0
- package/dist/utils/formatBytes.js +3 -1
- package/dist/utils/formatBytes.js.map +1 -1
- package/dist/utils/sqlSessionToCrypto.d.ts +4 -2
- package/dist/utils/sqlSessionToCrypto.d.ts.map +1 -0
- package/dist/utils/sqlSessionToCrypto.js +5 -5
- package/dist/utils/sqlSessionToCrypto.js.map +1 -1
- package/dist/utils/uint8uuid.d.ts +1 -4
- package/dist/utils/uint8uuid.d.ts.map +1 -0
- package/dist/utils/uint8uuid.js +1 -7
- package/dist/utils/uint8uuid.js.map +1 -1
- package/package.json +74 -91
- package/src/Client.ts +3086 -0
- package/{dist/IStorage.d.ts → src/Storage.ts} +70 -62
- package/src/__tests__/codec.test.ts +256 -0
- package/src/__tests__/ghost.png +0 -0
- package/src/__tests__/harness/fixtures.ts +22 -0
- package/src/__tests__/harness/memory-storage.ts +254 -0
- package/src/__tests__/harness/platform-transports.ts +4 -0
- package/src/__tests__/harness/poison-node-imports.ts +107 -0
- package/src/__tests__/harness/shared-suite.ts +426 -0
- package/src/__tests__/platform-browser.test.ts +14 -0
- package/src/__tests__/platform-node.test.ts +9 -0
- package/src/__tests__/triggered.png +0 -0
- package/src/codec.ts +68 -0
- package/src/codecs.ts +101 -0
- package/src/index.ts +40 -0
- package/src/keystore/memory.ts +30 -0
- package/src/keystore/node.ts +102 -0
- package/src/preset/common.ts +7 -0
- package/src/preset/node.ts +18 -0
- package/src/preset/test.ts +20 -0
- package/src/storage/node.ts +22 -0
- package/src/storage/schema.ts +94 -0
- package/src/storage/sqlite.ts +655 -0
- package/src/transport/types.ts +22 -0
- package/src/transport/websocket.ts +106 -0
- package/src/types/crypto.ts +42 -0
- package/src/types/identity.ts +23 -0
- package/src/types/index.ts +9 -0
- package/src/utils/capitalize.ts +6 -0
- package/src/utils/formatBytes.ts +15 -0
- package/src/utils/sqlSessionToCrypto.ts +16 -0
- package/src/utils/uint8uuid.ts +7 -0
- package/dist/IStorage.js +0 -2
- package/dist/IStorage.js.map +0 -1
- package/dist/keystore/types.d.ts +0 -4
- package/dist/keystore/types.js +0 -2
- package/dist/keystore/types.js.map +0 -1
- package/dist/preset/expo.d.ts +0 -2
- package/dist/preset/expo.js +0 -39
- package/dist/preset/expo.js.map +0 -1
- package/dist/preset/tauri.d.ts +0 -2
- package/dist/preset/tauri.js +0 -36
- package/dist/preset/tauri.js.map +0 -1
- package/dist/preset/types.d.ts +0 -14
- package/dist/preset/types.js +0 -2
- package/dist/preset/types.js.map +0 -1
- package/dist/storage/expo.d.ts +0 -3
- package/dist/storage/expo.js +0 -18
- package/dist/storage/expo.js.map +0 -1
- package/dist/storage/tauri.d.ts +0 -3
- package/dist/storage/tauri.js +0 -21
- package/dist/storage/tauri.js.map +0 -1
- package/dist/transport/browser.d.ts +0 -17
- package/dist/transport/browser.js +0 -56
- package/dist/transport/browser.js.map +0 -1
- package/dist/utils/constants.d.ts +0 -8
- package/dist/utils/constants.js +0 -9
- package/dist/utils/constants.js.map +0 -1
- package/dist/utils/createLogger.d.ts +0 -5
- package/dist/utils/createLogger.js +0 -27
- package/dist/utils/createLogger.js.map +0 -1
package/src/Client.ts
ADDED
|
@@ -0,0 +1,3086 @@
|
|
|
1
|
+
import type { Storage } from "./Storage.js";
|
|
2
|
+
import type { WebSocketLike } from "./transport/types.js";
|
|
3
|
+
import type {
|
|
4
|
+
PreKeysCrypto,
|
|
5
|
+
SessionCrypto,
|
|
6
|
+
UnsavedPreKey,
|
|
7
|
+
XKeyRing,
|
|
8
|
+
} from "./types/index.js";
|
|
9
|
+
import type { KeyPair } from "@vex-chat/crypto";
|
|
10
|
+
import type {
|
|
11
|
+
ActionToken,
|
|
12
|
+
ChallMsg,
|
|
13
|
+
Channel,
|
|
14
|
+
Device,
|
|
15
|
+
DevicePayload,
|
|
16
|
+
Emoji,
|
|
17
|
+
FileResponse,
|
|
18
|
+
FileSQL,
|
|
19
|
+
Invite,
|
|
20
|
+
KeyBundle,
|
|
21
|
+
MailWS,
|
|
22
|
+
NotifyMsg,
|
|
23
|
+
Permission,
|
|
24
|
+
PreKeysSQL,
|
|
25
|
+
PreKeysWS,
|
|
26
|
+
ReceiptMsg,
|
|
27
|
+
RegistrationPayload,
|
|
28
|
+
ResourceMsg,
|
|
29
|
+
RespMsg,
|
|
30
|
+
Server,
|
|
31
|
+
SessionSQL,
|
|
32
|
+
} from "@vex-chat/types";
|
|
33
|
+
import type { ClientMessage } from "@vex-chat/types";
|
|
34
|
+
import type { AxiosInstance } from "axios";
|
|
35
|
+
|
|
36
|
+
import {
|
|
37
|
+
xBoxKeyPair,
|
|
38
|
+
xBoxKeyPairFromSecret,
|
|
39
|
+
xConcat,
|
|
40
|
+
xConstants,
|
|
41
|
+
xDH,
|
|
42
|
+
xEncode,
|
|
43
|
+
xHMAC,
|
|
44
|
+
xKDF,
|
|
45
|
+
XKeyConvert,
|
|
46
|
+
xMakeNonce,
|
|
47
|
+
xMnemonic,
|
|
48
|
+
xRandomBytes,
|
|
49
|
+
xSecretbox,
|
|
50
|
+
xSecretboxOpen,
|
|
51
|
+
xSign,
|
|
52
|
+
xSignKeyPair,
|
|
53
|
+
xSignKeyPairFromSecret,
|
|
54
|
+
XUtils,
|
|
55
|
+
} from "@vex-chat/crypto";
|
|
56
|
+
import {
|
|
57
|
+
MailType,
|
|
58
|
+
MailWSSchema,
|
|
59
|
+
PermissionSchema,
|
|
60
|
+
WSMessageSchema,
|
|
61
|
+
} from "@vex-chat/types";
|
|
62
|
+
|
|
63
|
+
import axios, { type AxiosError, isAxiosError } from "axios";
|
|
64
|
+
import { EventEmitter } from "eventemitter3";
|
|
65
|
+
import * as uuid from "uuid";
|
|
66
|
+
import { z } from "zod/v4";
|
|
67
|
+
|
|
68
|
+
import { WebSocketAdapter } from "./transport/websocket.js";
|
|
69
|
+
|
|
70
|
+
function sleep(ms: number): Promise<void> {
|
|
71
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
import { msgpack } from "./codec.js";
|
|
75
|
+
import {
|
|
76
|
+
ActionTokenCodec,
|
|
77
|
+
AuthResponseCodec,
|
|
78
|
+
ChannelArrayCodec,
|
|
79
|
+
ChannelCodec,
|
|
80
|
+
ConnectResponseCodec,
|
|
81
|
+
decodeAxios,
|
|
82
|
+
DeviceArrayCodec,
|
|
83
|
+
DeviceChallengeCodec,
|
|
84
|
+
DeviceCodec,
|
|
85
|
+
EmojiArrayCodec,
|
|
86
|
+
EmojiCodec,
|
|
87
|
+
FileSQLCodec,
|
|
88
|
+
InviteArrayCodec,
|
|
89
|
+
InviteCodec,
|
|
90
|
+
KeyBundleCodec,
|
|
91
|
+
OtkCountCodec,
|
|
92
|
+
PermissionArrayCodec,
|
|
93
|
+
PermissionCodec,
|
|
94
|
+
ServerArrayCodec,
|
|
95
|
+
ServerCodec,
|
|
96
|
+
UserArrayCodec,
|
|
97
|
+
UserCodec,
|
|
98
|
+
WhoamiCodec,
|
|
99
|
+
} from "./codecs.js";
|
|
100
|
+
import { capitalize } from "./utils/capitalize.js";
|
|
101
|
+
import { sqlSessionToCrypto } from "./utils/sqlSessionToCrypto.js";
|
|
102
|
+
import { uuidToUint8 } from "./utils/uint8uuid.js";
|
|
103
|
+
|
|
104
|
+
const _protocolMsgRegex = /��\w+:\w+��/g;
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Permission is a permission to a resource.
|
|
108
|
+
*
|
|
109
|
+
* Common fields:
|
|
110
|
+
* - `permissionID`: unique permission row ID
|
|
111
|
+
* - `userID`: user receiving this grant
|
|
112
|
+
* - `resourceID`: target server/channel/etc.
|
|
113
|
+
* - `resourceType`: type string for the resource
|
|
114
|
+
* - `powerLevel`: authorization level
|
|
115
|
+
*/
|
|
116
|
+
export type { Permission } from "@vex-chat/types";
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @ignore
|
|
120
|
+
*/
|
|
121
|
+
export interface Channels {
|
|
122
|
+
/** Creates a channel in a server. */
|
|
123
|
+
create: (name: string, serverID: string) => Promise<Channel>;
|
|
124
|
+
/** Deletes a channel. */
|
|
125
|
+
delete: (channelID: string) => Promise<void>;
|
|
126
|
+
/** Lists channels in a server. */
|
|
127
|
+
retrieve: (serverID: string) => Promise<Channel[]>;
|
|
128
|
+
/** Gets one channel by ID. */
|
|
129
|
+
retrieveByID: (channelID: string) => Promise<Channel | null>;
|
|
130
|
+
/** Lists users currently visible in a channel. */
|
|
131
|
+
userList: (channelID: string) => Promise<User[]>;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Device record associated with a user account.
|
|
136
|
+
*
|
|
137
|
+
* Common fields:
|
|
138
|
+
* - `deviceID`: unique device identifier
|
|
139
|
+
* - `owner`: owning user ID
|
|
140
|
+
* - `signKey`: signing public key
|
|
141
|
+
* - `name`: user-facing device name
|
|
142
|
+
* - `lastLogin`: last login timestamp string
|
|
143
|
+
* - `deleted`: soft-delete flag
|
|
144
|
+
*/
|
|
145
|
+
export type { Device } from "@vex-chat/types";
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* ClientOptions are the options you can pass into the client.
|
|
149
|
+
*/
|
|
150
|
+
export interface ClientOptions {
|
|
151
|
+
/** Folder path where the sqlite file is created. */
|
|
152
|
+
dbFolder?: string;
|
|
153
|
+
/** Platform label for device registration (e.g. "ios", "macos", "linux"). */
|
|
154
|
+
deviceName?: string;
|
|
155
|
+
/** API host without protocol. Defaults to `api.vex.wtf`. */
|
|
156
|
+
host?: string;
|
|
157
|
+
/** Use sqlite in-memory mode (`:memory:`) instead of a file. */
|
|
158
|
+
inMemoryDb?: boolean;
|
|
159
|
+
/** Whether local message history should be persisted by default storage. */
|
|
160
|
+
saveHistory?: boolean;
|
|
161
|
+
/** Use `http/ws` instead of `https/wss`. Intended for local/dev environments. */
|
|
162
|
+
unsafeHttp?: boolean;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* @ignore
|
|
167
|
+
*/
|
|
168
|
+
export interface Devices {
|
|
169
|
+
/** Deletes one of the account's devices (except the currently active one). */
|
|
170
|
+
delete: (deviceID: string) => Promise<void>;
|
|
171
|
+
/** Registers the current key material as a new device. */
|
|
172
|
+
register: () => Promise<Device | null>;
|
|
173
|
+
/** Fetches one device by ID. */
|
|
174
|
+
retrieve: (deviceIdentifier: string) => Promise<Device | null>;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Channel is a chat channel on a server.
|
|
179
|
+
*
|
|
180
|
+
* Common fields:
|
|
181
|
+
* - `channelID`
|
|
182
|
+
* - `serverID`
|
|
183
|
+
* - `name`
|
|
184
|
+
*/
|
|
185
|
+
export type { Channel } from "@vex-chat/types";
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Server is a single chat server.
|
|
189
|
+
*
|
|
190
|
+
* Common fields:
|
|
191
|
+
* - `serverID`
|
|
192
|
+
* - `name`
|
|
193
|
+
* - `icon` (optional URL/data)
|
|
194
|
+
*/
|
|
195
|
+
export type { Server } from "@vex-chat/types";
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* @ignore
|
|
199
|
+
*/
|
|
200
|
+
export interface Emojis {
|
|
201
|
+
/** Uploads a custom emoji to a server. */
|
|
202
|
+
create: (
|
|
203
|
+
emoji: Uint8Array,
|
|
204
|
+
name: string,
|
|
205
|
+
serverID: string,
|
|
206
|
+
) => Promise<Emoji | null>;
|
|
207
|
+
/** Fetches one emoji's metadata by ID. */
|
|
208
|
+
retrieve: (emojiID: string) => Promise<Emoji | null>;
|
|
209
|
+
/** Lists emojis available on a server. */
|
|
210
|
+
retrieveList: (serverID: string) => Promise<Emoji[]>;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Progress payload emitted by the `fileProgress` event.
|
|
215
|
+
*/
|
|
216
|
+
export interface FileProgress {
|
|
217
|
+
/** Whether this progress event is for upload or download. */
|
|
218
|
+
direction: "download" | "upload";
|
|
219
|
+
/** Bytes transferred so far. */
|
|
220
|
+
loaded: number;
|
|
221
|
+
/** Integer percentage from `0` to `100`. */
|
|
222
|
+
progress: number;
|
|
223
|
+
/** Correlation token (file ID, nonce, or label depending on operation). */
|
|
224
|
+
token: string;
|
|
225
|
+
/** Total expected bytes when available, otherwise `0`. */
|
|
226
|
+
total: number;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* FileRes is a server response to a file retrieval request.
|
|
231
|
+
*
|
|
232
|
+
* Structure:
|
|
233
|
+
* - `details`: metadata (`VexFile`)
|
|
234
|
+
* - `data`: decrypted binary bytes
|
|
235
|
+
*
|
|
236
|
+
* @example
|
|
237
|
+
* ```ts
|
|
238
|
+
* const response: FileRes = {
|
|
239
|
+
* details: {
|
|
240
|
+
* fileID: "bb1c3fd1-4928-48ab-9d09-3ea0972fbd9d",
|
|
241
|
+
* owner: "9b0f3f46-06ad-4bc4-8adf-4de10e13cb9c",
|
|
242
|
+
* nonce: "aa6c8d42f3fdd032a1e9fced4be379582d26ce8f69822d64",
|
|
243
|
+
* },
|
|
244
|
+
* data: Buffer.from("hello"),
|
|
245
|
+
* };
|
|
246
|
+
* ```
|
|
247
|
+
*/
|
|
248
|
+
export type FileRes = FileResponse;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* @ignore
|
|
252
|
+
*/
|
|
253
|
+
export interface Files {
|
|
254
|
+
/** Uploads and encrypts a file. */
|
|
255
|
+
create: (file: Uint8Array) => Promise<[FileSQL, string]>;
|
|
256
|
+
/** Downloads and decrypts a file using a file ID and key. */
|
|
257
|
+
retrieve: (fileID: string, key: string) => Promise<FileResponse | null>;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* @ignore
|
|
262
|
+
*/
|
|
263
|
+
export interface Invites {
|
|
264
|
+
/** Creates an invite for a server and duration. */
|
|
265
|
+
create: (serverID: string, duration: string) => Promise<Invite>;
|
|
266
|
+
/** Redeems an invite and returns the created permission grant. */
|
|
267
|
+
redeem: (inviteID: string) => Promise<Permission>;
|
|
268
|
+
/** Lists active invites for a server. */
|
|
269
|
+
retrieve: (serverID: string) => Promise<Invite[]>;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Keys are a pair of ed25519 public and private keys,
|
|
274
|
+
* encoded as hex strings.
|
|
275
|
+
*/
|
|
276
|
+
export interface Keys {
|
|
277
|
+
/** Secret Ed25519 key as hex. Store securely. */
|
|
278
|
+
private: string;
|
|
279
|
+
/** Public Ed25519 key as hex. */
|
|
280
|
+
public: string;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* @ignore
|
|
285
|
+
*/
|
|
286
|
+
export interface Me {
|
|
287
|
+
/** Returns metadata for the currently authenticated device. */
|
|
288
|
+
device: () => Device;
|
|
289
|
+
/** Uploads and sets a new avatar image for the current user. */
|
|
290
|
+
setAvatar: (avatar: Uint8Array) => Promise<void>;
|
|
291
|
+
/** Returns the currently authenticated user profile. */
|
|
292
|
+
user: () => User;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Message is a chat message.
|
|
297
|
+
*/
|
|
298
|
+
export interface Message {
|
|
299
|
+
/** User ID of the original author. */
|
|
300
|
+
authorID: string;
|
|
301
|
+
/** Whether payload decryption succeeded. */
|
|
302
|
+
decrypted: boolean;
|
|
303
|
+
/** Whether this message was received or sent by the current client. */
|
|
304
|
+
direction: "incoming" | "outgoing";
|
|
305
|
+
/** `true` when this message was forwarded to another owned device. */
|
|
306
|
+
forward: boolean;
|
|
307
|
+
/** Channel ID for group messages; `null` for direct messages. */
|
|
308
|
+
group: null | string;
|
|
309
|
+
/** Globally unique message identifier. */
|
|
310
|
+
mailID: string;
|
|
311
|
+
/** Plaintext message content (or empty string when decryption failed). */
|
|
312
|
+
message: string;
|
|
313
|
+
/** Hex-encoded nonce used for message encryption. */
|
|
314
|
+
nonce: string;
|
|
315
|
+
/** User ID of the intended reader. */
|
|
316
|
+
readerID: string;
|
|
317
|
+
/** Recipient device ID. */
|
|
318
|
+
recipient: string;
|
|
319
|
+
/** Sender device ID. */
|
|
320
|
+
sender: string;
|
|
321
|
+
/** Time the message was created/received. */
|
|
322
|
+
timestamp: string;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/** Zod schema matching the {@link Message} interface for forwarded-message decode. */
|
|
326
|
+
const messageSchema: z.ZodType<Message> = z.object({
|
|
327
|
+
authorID: z.string(),
|
|
328
|
+
decrypted: z.boolean(),
|
|
329
|
+
direction: z.enum(["incoming", "outgoing"]),
|
|
330
|
+
forward: z.boolean(),
|
|
331
|
+
group: z.string().nullable(),
|
|
332
|
+
mailID: z.string(),
|
|
333
|
+
message: z.string(),
|
|
334
|
+
nonce: z.string(),
|
|
335
|
+
readerID: z.string(),
|
|
336
|
+
recipient: z.string(),
|
|
337
|
+
sender: z.string(),
|
|
338
|
+
timestamp: z.string(),
|
|
339
|
+
});
|
|
340
|
+
|
|
341
|
+
/** Zod schema for a single inbox entry from getMail: [header, mailBody, timestamp]. */
|
|
342
|
+
const mailInboxEntry = z.tuple([
|
|
343
|
+
z.custom<Uint8Array>((val) => val instanceof Uint8Array),
|
|
344
|
+
MailWSSchema,
|
|
345
|
+
z.string(),
|
|
346
|
+
]);
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Event signatures emitted by {@link Client}.
|
|
350
|
+
*
|
|
351
|
+
* Used as the type parameter for {@link Client.on}, {@link Client.off},
|
|
352
|
+
* and {@link Client.once}.
|
|
353
|
+
*/
|
|
354
|
+
export interface ClientEvents {
|
|
355
|
+
/** The client has been shut down (via {@link Client.close}). */
|
|
356
|
+
closed: () => void;
|
|
357
|
+
/** WebSocket authorized by the server; pre-auth setup begins. */
|
|
358
|
+
connected: () => void;
|
|
359
|
+
/** Mail decryption pass is in progress. */
|
|
360
|
+
decryptingMail: () => void;
|
|
361
|
+
/** WebSocket connection lost. */
|
|
362
|
+
disconnect: () => void;
|
|
363
|
+
/** Progress update for a file upload or download. */
|
|
364
|
+
fileProgress: (progress: FileProgress) => void;
|
|
365
|
+
/** A direct or group message was sent or received. */
|
|
366
|
+
message: (message: Message) => void;
|
|
367
|
+
/** A permission grant was created or modified. */
|
|
368
|
+
permission: (permission: Permission) => void;
|
|
369
|
+
/** Post-auth setup complete — safe to call messaging/user APIs. */
|
|
370
|
+
ready: () => void;
|
|
371
|
+
/** A new encryption session was established with a peer device. */
|
|
372
|
+
session: (session: Session, user: User) => void;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* @ignore
|
|
377
|
+
*/
|
|
378
|
+
export interface Messages {
|
|
379
|
+
/** Deletes local history for a user/channel. */
|
|
380
|
+
delete: (userOrChannelID: string) => Promise<void>;
|
|
381
|
+
/** Sends an encrypted message to all members of a channel. */
|
|
382
|
+
group: (channelID: string, message: string) => Promise<void>;
|
|
383
|
+
/** Deletes all locally stored message history. */
|
|
384
|
+
purge: () => Promise<void>;
|
|
385
|
+
/** Returns local direct-message history with one user. */
|
|
386
|
+
retrieve: (userID: string) => Promise<Message[]>;
|
|
387
|
+
/** Returns local group-message history for one channel. */
|
|
388
|
+
retrieveGroup: (channelID: string) => Promise<Message[]>;
|
|
389
|
+
/** Sends an encrypted direct message to one user. */
|
|
390
|
+
send: (userID: string, message: string) => Promise<void>;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* @ignore
|
|
395
|
+
*/
|
|
396
|
+
export interface Moderation {
|
|
397
|
+
/** Returns all permission entries for a server. */
|
|
398
|
+
fetchPermissionList: (serverID: string) => Promise<Permission[]>;
|
|
399
|
+
/** Removes a user from a server by revoking their server permission(s). */
|
|
400
|
+
kick: (userID: string, serverID: string) => Promise<void>;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* @ignore
|
|
405
|
+
*/
|
|
406
|
+
export interface Permissions {
|
|
407
|
+
/** Deletes one permission grant. */
|
|
408
|
+
delete: (permissionID: string) => Promise<void>;
|
|
409
|
+
/** Lists permissions granted to the authenticated user. */
|
|
410
|
+
retrieve: () => Promise<Permission[]>;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* @ignore
|
|
415
|
+
*/
|
|
416
|
+
export interface Servers {
|
|
417
|
+
/** Creates a server. */
|
|
418
|
+
create: (name: string) => Promise<Server>;
|
|
419
|
+
/** Deletes a server. */
|
|
420
|
+
delete: (serverID: string) => Promise<void>;
|
|
421
|
+
/** Leaves a server by removing the user's permission entry. */
|
|
422
|
+
leave: (serverID: string) => Promise<void>;
|
|
423
|
+
/** Lists servers available to the authenticated user. */
|
|
424
|
+
retrieve: () => Promise<Server[]>;
|
|
425
|
+
/** Gets one server by ID. */
|
|
426
|
+
retrieveByID: (serverID: string) => Promise<null | Server>;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Session is an end to end encryption session with another peer.
|
|
431
|
+
*
|
|
432
|
+
* Key fields include:
|
|
433
|
+
* - `sessionID`
|
|
434
|
+
* - `userID`
|
|
435
|
+
* - `deviceID`
|
|
436
|
+
* - `mode` (`initiator` or `receiver`)
|
|
437
|
+
* - `publicKey` and `fingerprint`
|
|
438
|
+
* - `lastUsed`
|
|
439
|
+
* - `verified`
|
|
440
|
+
*
|
|
441
|
+
* @example
|
|
442
|
+
* ```ts
|
|
443
|
+
* const session: Session = {
|
|
444
|
+
* sessionID: "f6e4fbd0-7222-4ba8-b799-c227faf5c8de",
|
|
445
|
+
* userID: "f34f5e37-616f-4d3a-a437-e7c27c31cb73",
|
|
446
|
+
* deviceID: "9b0f3f46-06ad-4bc4-8adf-4de10e13cb9c",
|
|
447
|
+
* mode: "initiator",
|
|
448
|
+
* SK: "7d9afde6683ecc2d1f55e34e1b95de9d4042dfd4e8cda7fdf3f0f7e02fef8f9a",
|
|
449
|
+
* publicKey: "d58f39dc4bcfe4e8ef022f34e8b6f4f6ddc9c4acee30c0d58f126aa5db3f61b0",
|
|
450
|
+
* fingerprint: "05294b9aa81d0fd0ca12a4b585f531d8ef1f53f8ea3d0200a0df3f9c44a7d8b1",
|
|
451
|
+
* lastUsed: new Date(),
|
|
452
|
+
* verified: false,
|
|
453
|
+
* };
|
|
454
|
+
* ```
|
|
455
|
+
*/
|
|
456
|
+
export type Session = SessionSQL;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* @ignore
|
|
460
|
+
*/
|
|
461
|
+
export interface Sessions {
|
|
462
|
+
/** Marks one session as verification-confirmed. */
|
|
463
|
+
markVerified: (fingerprint: string) => Promise<void>;
|
|
464
|
+
/** Returns all locally known sessions. */
|
|
465
|
+
retrieve: () => Promise<SessionSQL[]>;
|
|
466
|
+
/** Builds a human-readable verification phrase from a session fingerprint. */
|
|
467
|
+
verify: (session: SessionSQL) => string;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* User is a single user on the vex platform.
|
|
472
|
+
*
|
|
473
|
+
* This is intentionally a censored user shape for client use, containing:
|
|
474
|
+
* - `userID`
|
|
475
|
+
* - `username`
|
|
476
|
+
* - `lastSeen`
|
|
477
|
+
*/
|
|
478
|
+
export interface User {
|
|
479
|
+
/** Last-seen timestamp (ISO 8601 string). */
|
|
480
|
+
lastSeen: string;
|
|
481
|
+
/** User identifier. */
|
|
482
|
+
userID: string;
|
|
483
|
+
/** Public username. */
|
|
484
|
+
username: string;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* @ignore
|
|
489
|
+
*/
|
|
490
|
+
export interface Users {
|
|
491
|
+
/** Returns users with whom the current device has active sessions. */
|
|
492
|
+
familiars: () => Promise<User[]>;
|
|
493
|
+
/**
|
|
494
|
+
* Looks up a user by user ID, username, or signing key.
|
|
495
|
+
*/
|
|
496
|
+
retrieve: (userID: string) => Promise<[null | User, AxiosError | null]>;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* Client provides an interface for you to use a vex chat server and
|
|
501
|
+
* send end to end encrypted messages to other users.
|
|
502
|
+
*
|
|
503
|
+
* @example
|
|
504
|
+
* ```ts
|
|
505
|
+
* import { Client } from "@vex-chat/libvex";
|
|
506
|
+
*
|
|
507
|
+
* async function main() {
|
|
508
|
+
* // generate a secret key to use, save this somewhere permanent
|
|
509
|
+
* const privateKey = Client.generateSecretKey();
|
|
510
|
+
*
|
|
511
|
+
* const client = await Client.create(privateKey);
|
|
512
|
+
*
|
|
513
|
+
* // you must register once before you can log in
|
|
514
|
+
* await client.register(Client.randomUsername());
|
|
515
|
+
* await client.login();
|
|
516
|
+
*
|
|
517
|
+
* // The ready event fires after connect() finishes post-auth setup.
|
|
518
|
+
* // Wait for it before performing messaging or user operations.
|
|
519
|
+
* client.on("ready", async () => {
|
|
520
|
+
* const me = client.me.user();
|
|
521
|
+
*
|
|
522
|
+
* // send a message
|
|
523
|
+
* await client.messages.send(me.userID, "Hello world!");
|
|
524
|
+
* })
|
|
525
|
+
*
|
|
526
|
+
* // Outgoing and incoming messages are emitted here.
|
|
527
|
+
* client.on("message", (message) => {
|
|
528
|
+
* console.log("message:", message);
|
|
529
|
+
* })
|
|
530
|
+
* }
|
|
531
|
+
*
|
|
532
|
+
* main();
|
|
533
|
+
* ```
|
|
534
|
+
*/
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* VexFile is an uploaded encrypted file.
|
|
538
|
+
*
|
|
539
|
+
* Common fields:
|
|
540
|
+
* - `fileID`: file identifier
|
|
541
|
+
* - `owner`: owner device/user ID
|
|
542
|
+
* - `nonce`: file encryption nonce (hex)
|
|
543
|
+
*
|
|
544
|
+
* @example
|
|
545
|
+
* ```ts
|
|
546
|
+
* const file: VexFile = {
|
|
547
|
+
* fileID: "bb1c3fd1-4928-48ab-9d09-3ea0972fbd9d",
|
|
548
|
+
* owner: "9b0f3f46-06ad-4bc4-8adf-4de10e13cb9c",
|
|
549
|
+
* nonce: "aa6c8d42f3fdd032a1e9fced4be379582d26ce8f69822d64",
|
|
550
|
+
* };
|
|
551
|
+
* ```
|
|
552
|
+
*/
|
|
553
|
+
export type VexFile = FileSQL;
|
|
554
|
+
|
|
555
|
+
export class Client {
|
|
556
|
+
/**
|
|
557
|
+
* Decrypts a secret key from encrypted data produced by encryptKeyData().
|
|
558
|
+
*
|
|
559
|
+
* Pass-through utility from `@vex-chat/crypto`.
|
|
560
|
+
*/
|
|
561
|
+
public static decryptKeyData = XUtils.decryptKeyData;
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* Encrypts a secret key with a password.
|
|
565
|
+
*
|
|
566
|
+
* Pass-through utility from `@vex-chat/crypto`.
|
|
567
|
+
*/
|
|
568
|
+
public static encryptKeyData = XUtils.encryptKeyData;
|
|
569
|
+
|
|
570
|
+
private static readonly NOT_FOUND_TTL = 30 * 60 * 1000;
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Browser-safe NODE_ENV accessor.
|
|
574
|
+
* Uses indirect lookup so the bare `process` global never appears in
|
|
575
|
+
* source that the platform-guard plugin scans.
|
|
576
|
+
*/
|
|
577
|
+
/**
|
|
578
|
+
* Channel operations.
|
|
579
|
+
*/
|
|
580
|
+
public channels: Channels = {
|
|
581
|
+
/**
|
|
582
|
+
* Creates a new channel in a server.
|
|
583
|
+
* @param name - The channel name.
|
|
584
|
+
* @param serverID - The server to create the channel in.
|
|
585
|
+
*
|
|
586
|
+
* @returns The created Channel object.
|
|
587
|
+
*/
|
|
588
|
+
create: this.createChannel.bind(this),
|
|
589
|
+
/**
|
|
590
|
+
* Deletes a channel.
|
|
591
|
+
* @param channelID - The channel to delete.
|
|
592
|
+
*/
|
|
593
|
+
delete: this.deleteChannel.bind(this),
|
|
594
|
+
/**
|
|
595
|
+
* Retrieves all channels in a server.
|
|
596
|
+
*
|
|
597
|
+
* @returns The list of Channel objects.
|
|
598
|
+
*/
|
|
599
|
+
retrieve: this.getChannelList.bind(this),
|
|
600
|
+
/**
|
|
601
|
+
* Retrieves channel details by its unique channelID.
|
|
602
|
+
*
|
|
603
|
+
* @returns The Channel object, or null.
|
|
604
|
+
*/
|
|
605
|
+
retrieveByID: this.getChannelByID.bind(this),
|
|
606
|
+
/**
|
|
607
|
+
* Retrieves a channel's userlist.
|
|
608
|
+
* @param channelID - The channel to retrieve the userlist for.
|
|
609
|
+
*/
|
|
610
|
+
userList: this.getUserList.bind(this),
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* Device management methods.
|
|
615
|
+
*/
|
|
616
|
+
public devices: Devices = {
|
|
617
|
+
delete: this.deleteDevice.bind(this),
|
|
618
|
+
register: this.registerDevice.bind(this),
|
|
619
|
+
retrieve: this.getDeviceByID.bind(this),
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* Emoji operations.
|
|
624
|
+
*
|
|
625
|
+
* @example
|
|
626
|
+
* ```ts
|
|
627
|
+
* const emoji = await client.emoji.create(imageBuffer, "party", serverID);
|
|
628
|
+
* const list = await client.emoji.retrieveList(serverID);
|
|
629
|
+
* ```
|
|
630
|
+
*/
|
|
631
|
+
public emoji: Emojis = {
|
|
632
|
+
create: this.uploadEmoji.bind(this),
|
|
633
|
+
retrieve: this.retrieveEmojiByID.bind(this),
|
|
634
|
+
retrieveList: this.retrieveEmojiList.bind(this),
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
/** File upload/download methods. */
|
|
638
|
+
public files: Files = {
|
|
639
|
+
/**
|
|
640
|
+
* Uploads an encrypted file and returns the details and the secret key.
|
|
641
|
+
* @param file - The file bytes.
|
|
642
|
+
*
|
|
643
|
+
* @returns `[details, key]` — file metadata and the encryption key.
|
|
644
|
+
*/
|
|
645
|
+
create: this.createFile.bind(this),
|
|
646
|
+
retrieve: this.retrieveFile.bind(this),
|
|
647
|
+
};
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* This is true if the client has ever been initialized. You can only initialize
|
|
651
|
+
* a client once.
|
|
652
|
+
*/
|
|
653
|
+
public hasInit: boolean = false;
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* This is true if the client has ever logged in before. You can only login a client once.
|
|
657
|
+
*/
|
|
658
|
+
public hasLoggedIn: boolean = false;
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* Invite-management methods.
|
|
662
|
+
*/
|
|
663
|
+
public invites: Invites = {
|
|
664
|
+
create: this.createInvite.bind(this),
|
|
665
|
+
redeem: this.redeemInvite.bind(this),
|
|
666
|
+
retrieve: this.retrieveInvites.bind(this),
|
|
667
|
+
};
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* Helpers for information/actions related to the currently authenticated account.
|
|
671
|
+
*/
|
|
672
|
+
public me: Me = {
|
|
673
|
+
/**
|
|
674
|
+
* Retrieves current device details.
|
|
675
|
+
*
|
|
676
|
+
* @returns The logged in device's Device object.
|
|
677
|
+
*/
|
|
678
|
+
device: this.getDevice.bind(this),
|
|
679
|
+
/** Changes your avatar. */
|
|
680
|
+
setAvatar: this.uploadAvatar.bind(this),
|
|
681
|
+
/**
|
|
682
|
+
* Retrieves your user information.
|
|
683
|
+
*
|
|
684
|
+
* @returns The logged in user's User object.
|
|
685
|
+
*/
|
|
686
|
+
user: this.getUser.bind(this),
|
|
687
|
+
};
|
|
688
|
+
/**
|
|
689
|
+
* Message operations (direct and group).
|
|
690
|
+
*
|
|
691
|
+
* @example
|
|
692
|
+
* ```ts
|
|
693
|
+
* await client.messages.send(userID, "Hello!");
|
|
694
|
+
* await client.messages.group(channelID, "Hello channel!");
|
|
695
|
+
* const dmHistory = await client.messages.retrieve(userID);
|
|
696
|
+
* ```
|
|
697
|
+
*/
|
|
698
|
+
public messages: Messages = {
|
|
699
|
+
delete: this.deleteHistory.bind(this),
|
|
700
|
+
/**
|
|
701
|
+
* Send a group message to a channel.
|
|
702
|
+
* @param channelID - The channel to send a message to.
|
|
703
|
+
* @param message - The message to send.
|
|
704
|
+
*/
|
|
705
|
+
group: this.sendGroupMessage.bind(this),
|
|
706
|
+
purge: this.purgeHistory.bind(this),
|
|
707
|
+
/**
|
|
708
|
+
* Gets the message history with a specific userID.
|
|
709
|
+
* @param userID - The user to retrieve message history for.
|
|
710
|
+
*
|
|
711
|
+
* @returns The list of Message objects.
|
|
712
|
+
*/
|
|
713
|
+
retrieve: this.getMessageHistory.bind(this),
|
|
714
|
+
/**
|
|
715
|
+
* Gets the group message history for a channel.
|
|
716
|
+
* @param channelID - The channel to retrieve message history for.
|
|
717
|
+
*
|
|
718
|
+
* @returns The list of Message objects.
|
|
719
|
+
*/
|
|
720
|
+
retrieveGroup: this.getGroupHistory.bind(this),
|
|
721
|
+
/**
|
|
722
|
+
* Send a direct message.
|
|
723
|
+
* @param userID - The user to send a message to.
|
|
724
|
+
* @param message - The message to send.
|
|
725
|
+
*/
|
|
726
|
+
send: this.sendMessage.bind(this),
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* Server moderation helper methods.
|
|
731
|
+
*/
|
|
732
|
+
public moderation: Moderation = {
|
|
733
|
+
fetchPermissionList: this.fetchPermissionList.bind(this),
|
|
734
|
+
kick: this.kickUser.bind(this),
|
|
735
|
+
};
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* Permission-management methods for the current user.
|
|
739
|
+
*/
|
|
740
|
+
public permissions: Permissions = {
|
|
741
|
+
delete: this.deletePermission.bind(this),
|
|
742
|
+
retrieve: this.getPermissions.bind(this),
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
public sending = new Map<string, Device>();
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* Server operations.
|
|
749
|
+
*
|
|
750
|
+
* @example
|
|
751
|
+
* ```ts
|
|
752
|
+
* const servers = await client.servers.retrieve();
|
|
753
|
+
* const created = await client.servers.create("Team Space");
|
|
754
|
+
* ```
|
|
755
|
+
*/
|
|
756
|
+
public servers: Servers = {
|
|
757
|
+
/**
|
|
758
|
+
* Creates a new server.
|
|
759
|
+
* @param name - The server name.
|
|
760
|
+
*
|
|
761
|
+
* @returns The created Server object.
|
|
762
|
+
*/
|
|
763
|
+
create: this.createServer.bind(this),
|
|
764
|
+
/**
|
|
765
|
+
* Deletes a server.
|
|
766
|
+
* @param serverID - The server to delete.
|
|
767
|
+
*/
|
|
768
|
+
delete: this.deleteServer.bind(this),
|
|
769
|
+
leave: this.leaveServer.bind(this),
|
|
770
|
+
/**
|
|
771
|
+
* Retrieves all servers the logged in user has access to.
|
|
772
|
+
*
|
|
773
|
+
* @returns The list of Server objects.
|
|
774
|
+
*/
|
|
775
|
+
retrieve: this.getServerList.bind(this),
|
|
776
|
+
/**
|
|
777
|
+
* Retrieves server details by its unique serverID.
|
|
778
|
+
*
|
|
779
|
+
* @returns The requested Server object, or null if the id does not exist.
|
|
780
|
+
*/
|
|
781
|
+
retrieveByID: this.getServerByID.bind(this),
|
|
782
|
+
};
|
|
783
|
+
|
|
784
|
+
/**
|
|
785
|
+
* Encryption-session helpers.
|
|
786
|
+
*/
|
|
787
|
+
public sessions: Sessions = {
|
|
788
|
+
/**
|
|
789
|
+
* Marks a session as verified, implying that the user has confirmed
|
|
790
|
+
* that the session mnemonic matches with the other user.
|
|
791
|
+
* @param sessionID - The session to mark.
|
|
792
|
+
*/
|
|
793
|
+
markVerified: this.markSessionVerified.bind(this),
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* Gets all encryption sessions.
|
|
797
|
+
*
|
|
798
|
+
* @returns The list of Session encryption sessions.
|
|
799
|
+
*/
|
|
800
|
+
retrieve: this.getSessionList.bind(this),
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
* Returns a mnemonic for the session, to verify with the other user.
|
|
804
|
+
* @param session - The session to get the mnemonic for.
|
|
805
|
+
*
|
|
806
|
+
* @returns The mnemonic representation of the session.
|
|
807
|
+
*/
|
|
808
|
+
verify: (session: SessionSQL) => Client.getMnemonic(session),
|
|
809
|
+
};
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* User operations.
|
|
813
|
+
*
|
|
814
|
+
* @example
|
|
815
|
+
* ```ts
|
|
816
|
+
* const [user] = await client.users.retrieve("alice");
|
|
817
|
+
* const familiarUsers = await client.users.familiars();
|
|
818
|
+
* ```
|
|
819
|
+
*/
|
|
820
|
+
public users: Users = {
|
|
821
|
+
/**
|
|
822
|
+
* Retrieves the list of users you can currently access, or are already familiar with.
|
|
823
|
+
*
|
|
824
|
+
* @returns The list of User objects.
|
|
825
|
+
*/
|
|
826
|
+
familiars: this.getFamiliars.bind(this),
|
|
827
|
+
/**
|
|
828
|
+
* Retrieves a user's information by a string identifier.
|
|
829
|
+
* @param identifier - A userID, hex string public key, or a username.
|
|
830
|
+
*
|
|
831
|
+
* @returns The user's User object, or null if the user does not exist.
|
|
832
|
+
*/
|
|
833
|
+
retrieve: this.fetchUser.bind(this),
|
|
834
|
+
};
|
|
835
|
+
|
|
836
|
+
private readonly database: Storage;
|
|
837
|
+
|
|
838
|
+
private readonly dbPath: string;
|
|
839
|
+
|
|
840
|
+
private device?: Device;
|
|
841
|
+
|
|
842
|
+
private deviceRecords: Record<string, Device> = {};
|
|
843
|
+
|
|
844
|
+
// ── Event subscription (composition over inheritance) ───────────────
|
|
845
|
+
private readonly emitter = new EventEmitter<ClientEvents>();
|
|
846
|
+
|
|
847
|
+
private fetchingMail: boolean = false;
|
|
848
|
+
private firstMailFetch = true;
|
|
849
|
+
|
|
850
|
+
private readonly forwarded = new Set<string>();
|
|
851
|
+
|
|
852
|
+
private readonly host: string;
|
|
853
|
+
private readonly http: AxiosInstance;
|
|
854
|
+
private readonly idKeys: KeyPair | null;
|
|
855
|
+
private isAlive: boolean = true;
|
|
856
|
+
private readonly mailInterval?: NodeJS.Timeout;
|
|
857
|
+
|
|
858
|
+
private manuallyClosing: boolean = false;
|
|
859
|
+
/* Retrieves the userID with the user identifier.
|
|
860
|
+
user identifier is checked for userID, then signkey,
|
|
861
|
+
and finally falls back to username. */
|
|
862
|
+
/** Negative cache for user lookups that returned 404. TTL = 30 minutes. */
|
|
863
|
+
private readonly notFoundUsers = new Map<string, number>();
|
|
864
|
+
|
|
865
|
+
private readonly options?: ClientOptions | undefined;
|
|
866
|
+
|
|
867
|
+
private pingInterval: null | ReturnType<typeof setTimeout> = null;
|
|
868
|
+
private readonly prefixes:
|
|
869
|
+
| { HTTP: "http://"; WS: "ws://" }
|
|
870
|
+
| { HTTP: "https://"; WS: "wss://" };
|
|
871
|
+
|
|
872
|
+
private reading: boolean = false;
|
|
873
|
+
private readonly seenMailIDs: Set<string> = new Set();
|
|
874
|
+
private sessionRecords: Record<string, SessionCrypto> = {};
|
|
875
|
+
// these are created from one set of sign keys
|
|
876
|
+
private readonly signKeys: KeyPair;
|
|
877
|
+
|
|
878
|
+
private socket: WebSocketLike;
|
|
879
|
+
private token: null | string = null;
|
|
880
|
+
private user?: User;
|
|
881
|
+
|
|
882
|
+
private userRecords: Record<string, User> = {};
|
|
883
|
+
|
|
884
|
+
private xKeyRing?: XKeyRing;
|
|
885
|
+
|
|
886
|
+
private constructor(
|
|
887
|
+
privateKey?: string,
|
|
888
|
+
options?: ClientOptions,
|
|
889
|
+
storage?: Storage,
|
|
890
|
+
) {
|
|
891
|
+
// (no super — composition, not inheritance)
|
|
892
|
+
this.options = options;
|
|
893
|
+
|
|
894
|
+
if (options?.unsafeHttp) {
|
|
895
|
+
const env = Client.getNodeEnv();
|
|
896
|
+
if (env !== "development" && env !== "test") {
|
|
897
|
+
throw new Error(
|
|
898
|
+
"unsafeHttp is only allowed when NODE_ENV is 'development' or 'test'. " +
|
|
899
|
+
"Set NODE_ENV=development to use unencrypted transport.",
|
|
900
|
+
);
|
|
901
|
+
}
|
|
902
|
+
this.prefixes = { HTTP: "http://", WS: "ws://" };
|
|
903
|
+
} else {
|
|
904
|
+
this.prefixes = { HTTP: "https://", WS: "wss://" };
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
this.signKeys = privateKey
|
|
908
|
+
? xSignKeyPairFromSecret(XUtils.decodeHex(privateKey))
|
|
909
|
+
: xSignKeyPair();
|
|
910
|
+
this.idKeys = XKeyConvert.convertKeyPair(this.signKeys);
|
|
911
|
+
|
|
912
|
+
if (!this.idKeys) {
|
|
913
|
+
throw new Error("Could not convert key to X25519!");
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
this.host = options?.host || "api.vex.wtf";
|
|
917
|
+
const dbFileName = options?.inMemoryDb
|
|
918
|
+
? ":memory:"
|
|
919
|
+
: XUtils.encodeHex(this.signKeys.publicKey) + ".sqlite";
|
|
920
|
+
this.dbPath = options?.dbFolder
|
|
921
|
+
? options.dbFolder + "/" + dbFileName
|
|
922
|
+
: dbFileName;
|
|
923
|
+
|
|
924
|
+
if (!storage) {
|
|
925
|
+
throw new Error(
|
|
926
|
+
"No storage provided. Use Client.create() which resolves storage automatically.",
|
|
927
|
+
);
|
|
928
|
+
}
|
|
929
|
+
this.database = storage;
|
|
930
|
+
|
|
931
|
+
this.database.on("error", (_error: Error) => {
|
|
932
|
+
void this.close(true);
|
|
933
|
+
});
|
|
934
|
+
|
|
935
|
+
this.http = axios.create({ responseType: "arraybuffer" });
|
|
936
|
+
|
|
937
|
+
this.socket = new WebSocketAdapter(this.prefixes.WS + this.host);
|
|
938
|
+
this.socket.onerror = () => {};
|
|
939
|
+
}
|
|
940
|
+
/**
|
|
941
|
+
* Creates and initializes a client in one step.
|
|
942
|
+
*
|
|
943
|
+
* @param privateKey - Hex secret key. When omitted, a fresh key is generated.
|
|
944
|
+
* @param options - Runtime options.
|
|
945
|
+
* @param storage - Custom storage backend implementing {@link Storage}.
|
|
946
|
+
*
|
|
947
|
+
* @example
|
|
948
|
+
* ```ts
|
|
949
|
+
* const client = await Client.create(privateKey, { host: "api.vex.wtf" });
|
|
950
|
+
* ```
|
|
951
|
+
*/
|
|
952
|
+
public static create = async (
|
|
953
|
+
privateKey?: string,
|
|
954
|
+
options?: ClientOptions,
|
|
955
|
+
storage?: Storage,
|
|
956
|
+
): Promise<Client> => {
|
|
957
|
+
const opts = options;
|
|
958
|
+
const sk = privateKey ?? XUtils.encodeHex(xSignKeyPair().secretKey);
|
|
959
|
+
let resolvedStorage = storage;
|
|
960
|
+
if (!resolvedStorage) {
|
|
961
|
+
const { createNodeStorage } = await import("./storage/node.js");
|
|
962
|
+
const dbFileName = opts?.inMemoryDb
|
|
963
|
+
? ":memory:"
|
|
964
|
+
: XUtils.encodeHex(
|
|
965
|
+
xSignKeyPairFromSecret(XUtils.decodeHex(sk)).publicKey,
|
|
966
|
+
) + ".sqlite";
|
|
967
|
+
const dbPath = opts?.dbFolder
|
|
968
|
+
? opts.dbFolder + "/" + dbFileName
|
|
969
|
+
: dbFileName;
|
|
970
|
+
resolvedStorage = createNodeStorage(dbPath, sk);
|
|
971
|
+
}
|
|
972
|
+
const client = new Client(sk, opts, resolvedStorage);
|
|
973
|
+
await client.init();
|
|
974
|
+
return client;
|
|
975
|
+
};
|
|
976
|
+
|
|
977
|
+
/**
|
|
978
|
+
* Generates an ed25519 secret key as a hex string.
|
|
979
|
+
*
|
|
980
|
+
* @returns A secret key to use for the client. Save it permanently somewhere safe.
|
|
981
|
+
*/
|
|
982
|
+
public static generateSecretKey(): string {
|
|
983
|
+
return XUtils.encodeHex(xSignKeyPair().secretKey);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* Generates a random username using bip39.
|
|
988
|
+
*
|
|
989
|
+
* @returns The username.
|
|
990
|
+
*/
|
|
991
|
+
public static randomUsername() {
|
|
992
|
+
const IKM = XUtils.decodeHex(XUtils.encodeHex(xRandomBytes(16)));
|
|
993
|
+
const mnemonic = xMnemonic(IKM).split(" ");
|
|
994
|
+
const addendum = XUtils.uint8ArrToNumber(xRandomBytes(1));
|
|
995
|
+
|
|
996
|
+
const word0 = mnemonic[0] ?? "";
|
|
997
|
+
const word1 = mnemonic[1] ?? "";
|
|
998
|
+
return capitalize(word0) + capitalize(word1) + addendum.toString();
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
private static deserializeExtra(
|
|
1002
|
+
type: MailType,
|
|
1003
|
+
extra: Uint8Array,
|
|
1004
|
+
): Uint8Array[] {
|
|
1005
|
+
switch (type) {
|
|
1006
|
+
case MailType.initial:
|
|
1007
|
+
/* 32 bytes for signkey, 32 bytes for ephemeral key,
|
|
1008
|
+
68 bytes for AD, 6 bytes for otk index (empty for no otk) */
|
|
1009
|
+
const signKey = extra.slice(0, 32);
|
|
1010
|
+
const ephKey = extra.slice(32, 64);
|
|
1011
|
+
const ad = extra.slice(96, 164);
|
|
1012
|
+
const index = extra.slice(164, 170);
|
|
1013
|
+
return [signKey, ephKey, ad, index];
|
|
1014
|
+
case MailType.subsequent:
|
|
1015
|
+
const publicKey = extra;
|
|
1016
|
+
return [publicKey];
|
|
1017
|
+
default:
|
|
1018
|
+
return [];
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
private static getMnemonic(session: SessionSQL): string {
|
|
1023
|
+
return xMnemonic(xKDF(XUtils.decodeHex(session.fingerprint)));
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
/**
|
|
1027
|
+
* Browser-safe NODE_ENV accessor.
|
|
1028
|
+
* Uses indirect lookup so the bare `process` global never appears in
|
|
1029
|
+
* source that the platform-guard plugin scans.
|
|
1030
|
+
*/
|
|
1031
|
+
private static getNodeEnv(): string | undefined {
|
|
1032
|
+
try {
|
|
1033
|
+
const g = Object.getOwnPropertyDescriptor(
|
|
1034
|
+
globalThis,
|
|
1035
|
+
"\u0070rocess",
|
|
1036
|
+
);
|
|
1037
|
+
if (!g || typeof g.value !== "object" || g.value === null) {
|
|
1038
|
+
return undefined;
|
|
1039
|
+
}
|
|
1040
|
+
const env: unknown = Object.getOwnPropertyDescriptor(
|
|
1041
|
+
g.value,
|
|
1042
|
+
"env",
|
|
1043
|
+
)?.value;
|
|
1044
|
+
if (typeof env !== "object" || env === null) {
|
|
1045
|
+
return undefined;
|
|
1046
|
+
}
|
|
1047
|
+
const val: unknown = Object.getOwnPropertyDescriptor(
|
|
1048
|
+
env,
|
|
1049
|
+
"NODE_ENV",
|
|
1050
|
+
)?.value;
|
|
1051
|
+
return typeof val === "string" ? val : undefined;
|
|
1052
|
+
} catch {
|
|
1053
|
+
return undefined;
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* Closes the client — disconnects the WebSocket, shuts down storage,
|
|
1059
|
+
* and emits `closed` unless `muteEvent` is `true`.
|
|
1060
|
+
*
|
|
1061
|
+
* @param muteEvent - When `true`, suppresses the `closed` event.
|
|
1062
|
+
*/
|
|
1063
|
+
public async close(muteEvent = false): Promise<void> {
|
|
1064
|
+
this.manuallyClosing = true;
|
|
1065
|
+
this.socket.close();
|
|
1066
|
+
await this.database.close();
|
|
1067
|
+
|
|
1068
|
+
if (this.pingInterval) {
|
|
1069
|
+
clearInterval(this.pingInterval);
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
if (this.mailInterval) {
|
|
1073
|
+
clearInterval(this.mailInterval);
|
|
1074
|
+
}
|
|
1075
|
+
delete this.xKeyRing;
|
|
1076
|
+
|
|
1077
|
+
if (!muteEvent) {
|
|
1078
|
+
this.emitter.emit("closed");
|
|
1079
|
+
}
|
|
1080
|
+
return;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* Connects your device to the chat. You must have a valid Bearer token.
|
|
1085
|
+
* You can check whoami() to see before calling connect().
|
|
1086
|
+
*/
|
|
1087
|
+
public async connect(): Promise<void> {
|
|
1088
|
+
const { token, user } = await this.whoami();
|
|
1089
|
+
this.token = token;
|
|
1090
|
+
this.http.defaults.headers.common.Authorization = `Bearer ${token}`;
|
|
1091
|
+
this.setUser(user);
|
|
1092
|
+
|
|
1093
|
+
this.device = await this.retrieveOrCreateDevice();
|
|
1094
|
+
|
|
1095
|
+
const connectToken = await this.getToken("connect");
|
|
1096
|
+
if (!connectToken) {
|
|
1097
|
+
throw new Error("Couldn't get connect token.");
|
|
1098
|
+
}
|
|
1099
|
+
const signed = xSign(
|
|
1100
|
+
Uint8Array.from(uuid.parse(connectToken.key)),
|
|
1101
|
+
this.signKeys.secretKey,
|
|
1102
|
+
);
|
|
1103
|
+
|
|
1104
|
+
const res = await this.http.post(
|
|
1105
|
+
this.getHost() + "/device/" + this.device.deviceID + "/connect",
|
|
1106
|
+
msgpack.encode({ signed }),
|
|
1107
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1108
|
+
);
|
|
1109
|
+
const { deviceToken } = decodeAxios(ConnectResponseCodec, res.data);
|
|
1110
|
+
this.http.defaults.headers.common["X-Device-Token"] = deviceToken;
|
|
1111
|
+
|
|
1112
|
+
this.initSocket();
|
|
1113
|
+
// Yield the event loop so the WS open callback fires and sends the
|
|
1114
|
+
// auth message before OTK generation blocks for ~5s on mobile.
|
|
1115
|
+
await new Promise((r) => setTimeout(r, 0));
|
|
1116
|
+
await this.negotiateOTK();
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
/**
|
|
1120
|
+
* Delete all local data — message history, encryption sessions, and prekeys.
|
|
1121
|
+
* Closes the client afterward. Credentials (keychain) must be cleared by the consumer.
|
|
1122
|
+
*/
|
|
1123
|
+
public async deleteAllData(): Promise<void> {
|
|
1124
|
+
await this.database.purgeHistory();
|
|
1125
|
+
await this.database.purgeKeyData();
|
|
1126
|
+
await this.close(true);
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
/**
|
|
1130
|
+
* Returns the current HTTP API origin with protocol.
|
|
1131
|
+
*
|
|
1132
|
+
* @example
|
|
1133
|
+
* ```ts
|
|
1134
|
+
* console.log(client.getHost()); // "https://api.vex.wtf"
|
|
1135
|
+
* ```
|
|
1136
|
+
*/
|
|
1137
|
+
public getHost() {
|
|
1138
|
+
return this.prefixes.HTTP + this.host;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
/**
|
|
1142
|
+
* Gets the hex string representations of the public and private keys.
|
|
1143
|
+
*/
|
|
1144
|
+
public getKeys(): Keys {
|
|
1145
|
+
return {
|
|
1146
|
+
private: XUtils.encodeHex(this.signKeys.secretKey),
|
|
1147
|
+
public: XUtils.encodeHex(this.signKeys.publicKey),
|
|
1148
|
+
};
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* Authenticates with username/password and stores the Bearer auth token.
|
|
1153
|
+
*
|
|
1154
|
+
* @param username - Account username.
|
|
1155
|
+
* @param password - Account password.
|
|
1156
|
+
* @returns `{ ok: true }` on success, `{ ok: false, error }` on failure.
|
|
1157
|
+
*
|
|
1158
|
+
* @example
|
|
1159
|
+
* ```ts
|
|
1160
|
+
* const result = await client.login("alice", "correct horse battery staple");
|
|
1161
|
+
* if (!result.ok) console.error(result.error);
|
|
1162
|
+
* ```
|
|
1163
|
+
*/
|
|
1164
|
+
public async login(
|
|
1165
|
+
username: string,
|
|
1166
|
+
password: string,
|
|
1167
|
+
): Promise<{ error?: string; ok: boolean }> {
|
|
1168
|
+
try {
|
|
1169
|
+
const res = await this.http.post(
|
|
1170
|
+
this.getHost() + "/auth",
|
|
1171
|
+
msgpack.encode({
|
|
1172
|
+
password,
|
|
1173
|
+
username,
|
|
1174
|
+
}),
|
|
1175
|
+
{
|
|
1176
|
+
headers: { "Content-Type": "application/msgpack" },
|
|
1177
|
+
},
|
|
1178
|
+
);
|
|
1179
|
+
const { token, user } = decodeAxios(AuthResponseCodec, res.data);
|
|
1180
|
+
|
|
1181
|
+
this.setUser(user);
|
|
1182
|
+
this.token = token;
|
|
1183
|
+
this.http.defaults.headers.common.Authorization = `Bearer ${token}`;
|
|
1184
|
+
return { ok: true };
|
|
1185
|
+
} catch (err: unknown) {
|
|
1186
|
+
const error = err instanceof Error ? err.message : String(err);
|
|
1187
|
+
return { error, ok: false };
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
/**
|
|
1192
|
+
* Authenticates using the device's Ed25519 signing key.
|
|
1193
|
+
* No password needed — proves possession of the private key via
|
|
1194
|
+
* challenge-response. Issues a short-lived (1-hour) JWT.
|
|
1195
|
+
*
|
|
1196
|
+
* Used by auto-login when stored credentials have a deviceKey
|
|
1197
|
+
* but no valid session.
|
|
1198
|
+
*/
|
|
1199
|
+
public async loginWithDeviceKey(deviceID?: string): Promise<Error | null> {
|
|
1200
|
+
try {
|
|
1201
|
+
const id = deviceID ?? this.device?.deviceID;
|
|
1202
|
+
if (!id) {
|
|
1203
|
+
return new Error("No deviceID — pass it or connect first.");
|
|
1204
|
+
}
|
|
1205
|
+
const signKeyHex = XUtils.encodeHex(this.signKeys.publicKey);
|
|
1206
|
+
|
|
1207
|
+
const challengeRes = await this.http.post(
|
|
1208
|
+
this.getHost() + "/auth/device",
|
|
1209
|
+
msgpack.encode({
|
|
1210
|
+
deviceID: id,
|
|
1211
|
+
signKey: signKeyHex,
|
|
1212
|
+
}),
|
|
1213
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1214
|
+
);
|
|
1215
|
+
const { challenge, challengeID } = decodeAxios(
|
|
1216
|
+
DeviceChallengeCodec,
|
|
1217
|
+
challengeRes.data,
|
|
1218
|
+
);
|
|
1219
|
+
|
|
1220
|
+
const signed = XUtils.encodeHex(
|
|
1221
|
+
xSign(XUtils.decodeHex(challenge), this.signKeys.secretKey),
|
|
1222
|
+
);
|
|
1223
|
+
|
|
1224
|
+
const verifyRes = await this.http.post(
|
|
1225
|
+
this.getHost() + "/auth/device/verify",
|
|
1226
|
+
msgpack.encode({ challengeID, signed }),
|
|
1227
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1228
|
+
);
|
|
1229
|
+
const { token, user } = decodeAxios(
|
|
1230
|
+
AuthResponseCodec,
|
|
1231
|
+
verifyRes.data,
|
|
1232
|
+
);
|
|
1233
|
+
|
|
1234
|
+
this.setUser(user);
|
|
1235
|
+
this.token = token;
|
|
1236
|
+
this.http.defaults.headers.common.Authorization = `Bearer ${token}`;
|
|
1237
|
+
} catch (err: unknown) {
|
|
1238
|
+
const error = err instanceof Error ? err : new Error(String(err));
|
|
1239
|
+
return error;
|
|
1240
|
+
}
|
|
1241
|
+
return null;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* Logs out the current authenticated session from the server.
|
|
1246
|
+
*/
|
|
1247
|
+
public async logout(): Promise<void> {
|
|
1248
|
+
await this.http.post(this.getHost() + "/goodbye");
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
/** Removes an event listener. See {@link ClientEvents} for available events. */
|
|
1252
|
+
off<E extends keyof ClientEvents>(
|
|
1253
|
+
event: E,
|
|
1254
|
+
fn?: ClientEvents[E],
|
|
1255
|
+
context?: unknown,
|
|
1256
|
+
): this {
|
|
1257
|
+
this.emitter.off(
|
|
1258
|
+
event,
|
|
1259
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- ee3 requires generic listener type; E constraint guarantees safety
|
|
1260
|
+
fn as ((...args: unknown[]) => void) | undefined,
|
|
1261
|
+
context,
|
|
1262
|
+
);
|
|
1263
|
+
return this;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
/** Subscribes to an event. See {@link ClientEvents} for available events. */
|
|
1267
|
+
on<E extends keyof ClientEvents>(
|
|
1268
|
+
event: E,
|
|
1269
|
+
fn: ClientEvents[E],
|
|
1270
|
+
context?: unknown,
|
|
1271
|
+
): this {
|
|
1272
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- EventEmitter requires a generic listener type; the generic constraint on E guarantees type safety
|
|
1273
|
+
this.emitter.on(event, fn as (...args: unknown[]) => void, context);
|
|
1274
|
+
return this;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
/** Subscribes to an event for a single firing, then auto-removes. */
|
|
1278
|
+
once<E extends keyof ClientEvents>(
|
|
1279
|
+
event: E,
|
|
1280
|
+
fn: ClientEvents[E],
|
|
1281
|
+
context?: unknown,
|
|
1282
|
+
): this {
|
|
1283
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion -- EventEmitter requires a generic listener type; the generic constraint on E guarantees type safety
|
|
1284
|
+
this.emitter.once(event, fn as (...args: unknown[]) => void, context);
|
|
1285
|
+
return this;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
/**
|
|
1289
|
+
* Registers a new account on the server.
|
|
1290
|
+
*
|
|
1291
|
+
* @param username - The username to register. Must be unique.
|
|
1292
|
+
* @param password - Account password.
|
|
1293
|
+
* @returns `[user, null]` on success, `[null, error]` on failure.
|
|
1294
|
+
*
|
|
1295
|
+
* @example
|
|
1296
|
+
* ```ts
|
|
1297
|
+
* const [user, err] = await client.register("MyUsername", "hunter2");
|
|
1298
|
+
* ```
|
|
1299
|
+
*/
|
|
1300
|
+
public async register(
|
|
1301
|
+
username: string,
|
|
1302
|
+
password: string,
|
|
1303
|
+
): Promise<[null | User, Error | null]> {
|
|
1304
|
+
while (!this.xKeyRing) {
|
|
1305
|
+
await sleep(100);
|
|
1306
|
+
}
|
|
1307
|
+
const regKey = await this.getToken("register");
|
|
1308
|
+
if (regKey) {
|
|
1309
|
+
const signKey = XUtils.encodeHex(this.signKeys.publicKey);
|
|
1310
|
+
const signed = XUtils.encodeHex(
|
|
1311
|
+
xSign(
|
|
1312
|
+
Uint8Array.from(uuid.parse(regKey.key)),
|
|
1313
|
+
this.signKeys.secretKey,
|
|
1314
|
+
),
|
|
1315
|
+
);
|
|
1316
|
+
const preKeyIndex = this.xKeyRing.preKeys.index;
|
|
1317
|
+
const regMsg: RegistrationPayload = {
|
|
1318
|
+
deviceName: this.options?.deviceName ?? "unknown",
|
|
1319
|
+
password,
|
|
1320
|
+
preKey: XUtils.encodeHex(
|
|
1321
|
+
this.xKeyRing.preKeys.keyPair.publicKey,
|
|
1322
|
+
),
|
|
1323
|
+
preKeyIndex,
|
|
1324
|
+
preKeySignature: XUtils.encodeHex(
|
|
1325
|
+
this.xKeyRing.preKeys.signature,
|
|
1326
|
+
),
|
|
1327
|
+
signed,
|
|
1328
|
+
signKey,
|
|
1329
|
+
username,
|
|
1330
|
+
};
|
|
1331
|
+
try {
|
|
1332
|
+
const res = await this.http.post(
|
|
1333
|
+
this.getHost() + "/register",
|
|
1334
|
+
msgpack.encode(regMsg),
|
|
1335
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1336
|
+
);
|
|
1337
|
+
this.setUser(decodeAxios(UserCodec, res.data));
|
|
1338
|
+
return [this.getUser(), null];
|
|
1339
|
+
} catch (err: unknown) {
|
|
1340
|
+
if (isAxiosError(err) && err.response) {
|
|
1341
|
+
const raw: unknown = err.response.data;
|
|
1342
|
+
const msg =
|
|
1343
|
+
raw instanceof ArrayBuffer || raw instanceof Uint8Array
|
|
1344
|
+
? new TextDecoder().decode(raw)
|
|
1345
|
+
: String(raw);
|
|
1346
|
+
return [null, new Error(msg)];
|
|
1347
|
+
}
|
|
1348
|
+
return [
|
|
1349
|
+
null,
|
|
1350
|
+
err instanceof Error ? err : new Error(String(err)),
|
|
1351
|
+
];
|
|
1352
|
+
}
|
|
1353
|
+
} else {
|
|
1354
|
+
return [null, new Error("Couldn't get regkey from server.")];
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
removeAllListeners(event?: keyof ClientEvents): this {
|
|
1359
|
+
this.emitter.removeAllListeners(event);
|
|
1360
|
+
return this;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
/**
|
|
1364
|
+
* Returns a compact `<username><deviceID>` debug label.
|
|
1365
|
+
*/
|
|
1366
|
+
public toString(): string {
|
|
1367
|
+
return (
|
|
1368
|
+
(this.user?.username ?? "") +
|
|
1369
|
+
"<" +
|
|
1370
|
+
(this.device?.deviceID ?? "") +
|
|
1371
|
+
">"
|
|
1372
|
+
);
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
/**
|
|
1376
|
+
* Returns details about the currently authenticated session.
|
|
1377
|
+
*
|
|
1378
|
+
* @returns The authenticated user, token expiry, and active token.
|
|
1379
|
+
*
|
|
1380
|
+
* @example
|
|
1381
|
+
* ```ts
|
|
1382
|
+
* const auth = await client.whoami();
|
|
1383
|
+
* console.log(auth.user.username, new Date(auth.exp));
|
|
1384
|
+
* ```
|
|
1385
|
+
*/
|
|
1386
|
+
public async whoami(): Promise<{
|
|
1387
|
+
exp: number;
|
|
1388
|
+
token: string;
|
|
1389
|
+
user: User;
|
|
1390
|
+
}> {
|
|
1391
|
+
const res = await this.http.post(this.getHost() + "/whoami");
|
|
1392
|
+
|
|
1393
|
+
const whoami = decodeAxios(WhoamiCodec, res.data);
|
|
1394
|
+
return whoami;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
private censorPreKey(preKey: PreKeysSQL): PreKeysWS {
|
|
1398
|
+
if (!preKey.index) {
|
|
1399
|
+
throw new Error("Key index is required.");
|
|
1400
|
+
}
|
|
1401
|
+
return {
|
|
1402
|
+
deviceID: this.getDevice().deviceID,
|
|
1403
|
+
index: preKey.index,
|
|
1404
|
+
publicKey: XUtils.decodeHex(preKey.publicKey),
|
|
1405
|
+
signature: XUtils.decodeHex(preKey.signature),
|
|
1406
|
+
};
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
private async createChannel(
|
|
1410
|
+
name: string,
|
|
1411
|
+
serverID: string,
|
|
1412
|
+
): Promise<Channel> {
|
|
1413
|
+
const body = { name };
|
|
1414
|
+
const res = await this.http.post(
|
|
1415
|
+
this.getHost() + "/server/" + serverID + "/channels",
|
|
1416
|
+
msgpack.encode(body),
|
|
1417
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1418
|
+
);
|
|
1419
|
+
return decodeAxios(ChannelCodec, res.data);
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
// returns the file details and the encryption key
|
|
1423
|
+
private async createFile(file: Uint8Array): Promise<[FileSQL, string]> {
|
|
1424
|
+
const nonce = xMakeNonce();
|
|
1425
|
+
const key = xBoxKeyPair();
|
|
1426
|
+
const box = xSecretbox(Uint8Array.from(file), nonce, key.secretKey);
|
|
1427
|
+
|
|
1428
|
+
if (typeof FormData !== "undefined") {
|
|
1429
|
+
const fpayload = new FormData();
|
|
1430
|
+
fpayload.set("owner", this.getDevice().deviceID);
|
|
1431
|
+
fpayload.set("nonce", XUtils.encodeHex(nonce));
|
|
1432
|
+
fpayload.set("file", new Blob([new Uint8Array(box)]));
|
|
1433
|
+
|
|
1434
|
+
const fres = await this.http.post(
|
|
1435
|
+
this.getHost() + "/file",
|
|
1436
|
+
fpayload,
|
|
1437
|
+
{
|
|
1438
|
+
headers: { "Content-Type": "multipart/form-data" },
|
|
1439
|
+
onUploadProgress: (progressEvent) => {
|
|
1440
|
+
const percentCompleted = Math.round(
|
|
1441
|
+
(progressEvent.loaded * 100) /
|
|
1442
|
+
(progressEvent.total ?? 1),
|
|
1443
|
+
);
|
|
1444
|
+
const { loaded, total = 0 } = progressEvent;
|
|
1445
|
+
const progress: FileProgress = {
|
|
1446
|
+
direction: "upload",
|
|
1447
|
+
loaded,
|
|
1448
|
+
progress: percentCompleted,
|
|
1449
|
+
token: XUtils.encodeHex(nonce),
|
|
1450
|
+
total,
|
|
1451
|
+
};
|
|
1452
|
+
this.emitter.emit("fileProgress", progress);
|
|
1453
|
+
},
|
|
1454
|
+
},
|
|
1455
|
+
);
|
|
1456
|
+
const fcreatedFile = decodeAxios(FileSQLCodec, fres.data);
|
|
1457
|
+
|
|
1458
|
+
return [fcreatedFile, XUtils.encodeHex(key.secretKey)];
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
const payload: {
|
|
1462
|
+
file: string;
|
|
1463
|
+
nonce: string;
|
|
1464
|
+
owner: string;
|
|
1465
|
+
} = {
|
|
1466
|
+
file: XUtils.encodeBase64(box),
|
|
1467
|
+
nonce: XUtils.encodeHex(nonce),
|
|
1468
|
+
owner: this.getDevice().deviceID,
|
|
1469
|
+
};
|
|
1470
|
+
const res = await this.http.post(
|
|
1471
|
+
this.getHost() + "/file/json",
|
|
1472
|
+
msgpack.encode(payload),
|
|
1473
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1474
|
+
);
|
|
1475
|
+
const createdFile = decodeAxios(FileSQLCodec, res.data);
|
|
1476
|
+
|
|
1477
|
+
return [createdFile, XUtils.encodeHex(key.secretKey)];
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
private async createInvite(serverID: string, duration: string) {
|
|
1481
|
+
const payload = {
|
|
1482
|
+
duration,
|
|
1483
|
+
serverID,
|
|
1484
|
+
};
|
|
1485
|
+
|
|
1486
|
+
const res = await this.http.post(
|
|
1487
|
+
this.getHost() + "/server/" + serverID + "/invites",
|
|
1488
|
+
msgpack.encode(payload),
|
|
1489
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1490
|
+
);
|
|
1491
|
+
|
|
1492
|
+
return decodeAxios(InviteCodec, res.data);
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
private createPreKey(): UnsavedPreKey {
|
|
1496
|
+
const preKeyPair = xBoxKeyPair();
|
|
1497
|
+
return {
|
|
1498
|
+
keyPair: preKeyPair,
|
|
1499
|
+
signature: xSign(
|
|
1500
|
+
xEncode(xConstants.CURVE, preKeyPair.publicKey),
|
|
1501
|
+
this.signKeys.secretKey,
|
|
1502
|
+
),
|
|
1503
|
+
};
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
private async createServer(name: string): Promise<Server> {
|
|
1507
|
+
const res = await this.http.post(
|
|
1508
|
+
this.getHost() + "/server/" + globalThis.btoa(name),
|
|
1509
|
+
);
|
|
1510
|
+
return decodeAxios(ServerCodec, res.data);
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
private async createSession(
|
|
1514
|
+
device: Device,
|
|
1515
|
+
user: User,
|
|
1516
|
+
message: Uint8Array,
|
|
1517
|
+
group: null | Uint8Array,
|
|
1518
|
+
/* this is passed through if the first message is
|
|
1519
|
+
part of a group message */
|
|
1520
|
+
mailID: null | string,
|
|
1521
|
+
forward: boolean,
|
|
1522
|
+
): Promise<void> {
|
|
1523
|
+
let keyBundle: KeyBundle;
|
|
1524
|
+
|
|
1525
|
+
try {
|
|
1526
|
+
keyBundle = await this.retrieveKeyBundle(device.deviceID);
|
|
1527
|
+
} catch {
|
|
1528
|
+
return;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
if (!this.xKeyRing) {
|
|
1532
|
+
throw new Error("Key ring not initialized.");
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
// my keys
|
|
1536
|
+
const IK_A = this.xKeyRing.identityKeys.secretKey;
|
|
1537
|
+
const IK_AP = this.xKeyRing.identityKeys.publicKey;
|
|
1538
|
+
const EK_A = this.xKeyRing.ephemeralKeys.secretKey;
|
|
1539
|
+
|
|
1540
|
+
// their keys
|
|
1541
|
+
const IK_B_raw = XKeyConvert.convertPublicKey(
|
|
1542
|
+
new Uint8Array(keyBundle.signKey),
|
|
1543
|
+
);
|
|
1544
|
+
if (!IK_B_raw) {
|
|
1545
|
+
throw new Error("Could not convert sign key to X25519.");
|
|
1546
|
+
}
|
|
1547
|
+
const IK_B = IK_B_raw;
|
|
1548
|
+
const SPK_B = new Uint8Array(keyBundle.preKey.publicKey);
|
|
1549
|
+
const OPK_B = keyBundle.otk
|
|
1550
|
+
? new Uint8Array(keyBundle.otk.publicKey)
|
|
1551
|
+
: null;
|
|
1552
|
+
|
|
1553
|
+
// diffie hellman functions
|
|
1554
|
+
const DH1 = xDH(new Uint8Array(IK_A), SPK_B);
|
|
1555
|
+
const DH2 = xDH(new Uint8Array(EK_A), IK_B);
|
|
1556
|
+
const DH3 = xDH(new Uint8Array(EK_A), SPK_B);
|
|
1557
|
+
const DH4 = OPK_B ? xDH(new Uint8Array(EK_A), OPK_B) : null;
|
|
1558
|
+
|
|
1559
|
+
// initial key material
|
|
1560
|
+
const IKM = DH4 ? xConcat(DH1, DH2, DH3, DH4) : xConcat(DH1, DH2, DH3);
|
|
1561
|
+
|
|
1562
|
+
// one time key index
|
|
1563
|
+
const IDX = keyBundle.otk
|
|
1564
|
+
? XUtils.numberToUint8Arr(keyBundle.otk.index ?? 0)
|
|
1565
|
+
: XUtils.numberToUint8Arr(0);
|
|
1566
|
+
|
|
1567
|
+
// shared secret key
|
|
1568
|
+
const SK = xKDF(IKM);
|
|
1569
|
+
const PK = xBoxKeyPairFromSecret(SK).publicKey;
|
|
1570
|
+
|
|
1571
|
+
const AD = xConcat(
|
|
1572
|
+
xEncode(xConstants.CURVE, IK_AP),
|
|
1573
|
+
xEncode(xConstants.CURVE, IK_B),
|
|
1574
|
+
);
|
|
1575
|
+
|
|
1576
|
+
const nonce = xMakeNonce();
|
|
1577
|
+
const cipher = xSecretbox(message, nonce, SK);
|
|
1578
|
+
|
|
1579
|
+
/* 32 bytes for signkey, 32 bytes for ephemeral key,
|
|
1580
|
+
68 bytes for AD, 6 bytes for otk index (empty for no otk) */
|
|
1581
|
+
const extra = xConcat(
|
|
1582
|
+
this.signKeys.publicKey,
|
|
1583
|
+
this.xKeyRing.ephemeralKeys.publicKey,
|
|
1584
|
+
PK,
|
|
1585
|
+
AD,
|
|
1586
|
+
IDX,
|
|
1587
|
+
);
|
|
1588
|
+
|
|
1589
|
+
const mail: MailWS = {
|
|
1590
|
+
authorID: this.getUser().userID,
|
|
1591
|
+
cipher,
|
|
1592
|
+
extra,
|
|
1593
|
+
forward,
|
|
1594
|
+
group,
|
|
1595
|
+
mailID: mailID || uuid.v4(),
|
|
1596
|
+
mailType: MailType.initial,
|
|
1597
|
+
nonce,
|
|
1598
|
+
readerID: user.userID,
|
|
1599
|
+
recipient: device.deviceID,
|
|
1600
|
+
sender: this.getDevice().deviceID,
|
|
1601
|
+
};
|
|
1602
|
+
|
|
1603
|
+
const hmac = xHMAC(mail, SK);
|
|
1604
|
+
|
|
1605
|
+
const msg: ResourceMsg = {
|
|
1606
|
+
action: "CREATE",
|
|
1607
|
+
data: mail,
|
|
1608
|
+
resourceType: "mail",
|
|
1609
|
+
transmissionID: uuid.v4(),
|
|
1610
|
+
type: "resource",
|
|
1611
|
+
};
|
|
1612
|
+
|
|
1613
|
+
// discard the ephemeral keys
|
|
1614
|
+
this.newEphemeralKeys();
|
|
1615
|
+
|
|
1616
|
+
const sessionEntry: SessionSQL = {
|
|
1617
|
+
deviceID: device.deviceID,
|
|
1618
|
+
fingerprint: XUtils.encodeHex(AD),
|
|
1619
|
+
lastUsed: new Date().toISOString(),
|
|
1620
|
+
mode: "initiator",
|
|
1621
|
+
publicKey: XUtils.encodeHex(PK),
|
|
1622
|
+
sessionID: uuid.v4(),
|
|
1623
|
+
SK: XUtils.encodeHex(SK),
|
|
1624
|
+
userID: user.userID,
|
|
1625
|
+
verified: false,
|
|
1626
|
+
};
|
|
1627
|
+
|
|
1628
|
+
await this.database.saveSession(sessionEntry);
|
|
1629
|
+
|
|
1630
|
+
this.emitter.emit("session", sessionEntry, user);
|
|
1631
|
+
|
|
1632
|
+
// emit the message
|
|
1633
|
+
const forwardedMsg = forward
|
|
1634
|
+
? messageSchema.parse(msgpack.decode(message))
|
|
1635
|
+
: null;
|
|
1636
|
+
const emitMsg: Message = forwardedMsg
|
|
1637
|
+
? { ...forwardedMsg, forward: true }
|
|
1638
|
+
: {
|
|
1639
|
+
authorID: mail.authorID,
|
|
1640
|
+
decrypted: true,
|
|
1641
|
+
direction: "outgoing",
|
|
1642
|
+
forward: mail.forward,
|
|
1643
|
+
group: mail.group ? uuid.stringify(mail.group) : null,
|
|
1644
|
+
mailID: mail.mailID,
|
|
1645
|
+
message: XUtils.encodeUTF8(message),
|
|
1646
|
+
nonce: XUtils.encodeHex(new Uint8Array(mail.nonce)),
|
|
1647
|
+
readerID: mail.readerID,
|
|
1648
|
+
recipient: mail.recipient,
|
|
1649
|
+
sender: mail.sender,
|
|
1650
|
+
timestamp: new Date().toISOString(),
|
|
1651
|
+
};
|
|
1652
|
+
this.emitter.emit("message", emitMsg);
|
|
1653
|
+
|
|
1654
|
+
// send mail and wait for response
|
|
1655
|
+
await new Promise((res, rej) => {
|
|
1656
|
+
const callback = (packedMsg: Uint8Array) => {
|
|
1657
|
+
const [_header, receivedMsg] = XUtils.unpackMessage(packedMsg);
|
|
1658
|
+
if (receivedMsg.transmissionID === msg.transmissionID) {
|
|
1659
|
+
this.socket.off("message", callback);
|
|
1660
|
+
const parsed = WSMessageSchema.safeParse(receivedMsg);
|
|
1661
|
+
if (parsed.success && parsed.data.type === "success") {
|
|
1662
|
+
res(parsed.data.data);
|
|
1663
|
+
} else {
|
|
1664
|
+
rej(
|
|
1665
|
+
new Error(
|
|
1666
|
+
"Mail delivery failed: " +
|
|
1667
|
+
JSON.stringify(receivedMsg),
|
|
1668
|
+
),
|
|
1669
|
+
);
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
};
|
|
1673
|
+
this.socket.on("message", callback);
|
|
1674
|
+
void this.send(msg, hmac);
|
|
1675
|
+
});
|
|
1676
|
+
this.sending.delete(device.deviceID);
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
private async deleteChannel(channelID: string): Promise<void> {
|
|
1680
|
+
await this.http.delete(this.getHost() + "/channel/" + channelID);
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
private async deleteDevice(deviceID: string): Promise<void> {
|
|
1684
|
+
if (deviceID === this.getDevice().deviceID) {
|
|
1685
|
+
throw new Error("You can't delete the device you're logged in to.");
|
|
1686
|
+
}
|
|
1687
|
+
await this.http.delete(
|
|
1688
|
+
this.prefixes.HTTP +
|
|
1689
|
+
this.host +
|
|
1690
|
+
"/user/" +
|
|
1691
|
+
this.getUser().userID +
|
|
1692
|
+
"/devices/" +
|
|
1693
|
+
deviceID,
|
|
1694
|
+
);
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
private async deleteHistory(channelOrUserID: string): Promise<void> {
|
|
1698
|
+
await this.database.deleteHistory(channelOrUserID);
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
private async deletePermission(permissionID: string): Promise<void> {
|
|
1702
|
+
await this.http.delete(this.getHost() + "/permission/" + permissionID);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
private async deleteServer(serverID: string): Promise<void> {
|
|
1706
|
+
await this.http.delete(this.getHost() + "/server/" + serverID);
|
|
1707
|
+
}
|
|
1708
|
+
/**
|
|
1709
|
+
* Gets a list of permissions for a server.
|
|
1710
|
+
*
|
|
1711
|
+
* @returns The list of Permission objects.
|
|
1712
|
+
*/
|
|
1713
|
+
private async fetchPermissionList(serverID: string): Promise<Permission[]> {
|
|
1714
|
+
const res = await this.http.get(
|
|
1715
|
+
this.prefixes.HTTP +
|
|
1716
|
+
this.host +
|
|
1717
|
+
"/server/" +
|
|
1718
|
+
serverID +
|
|
1719
|
+
"/permissions",
|
|
1720
|
+
);
|
|
1721
|
+
return decodeAxios(PermissionArrayCodec, res.data);
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
private async fetchUser(
|
|
1725
|
+
userIdentifier: string,
|
|
1726
|
+
): Promise<[null | User, AxiosError | null]> {
|
|
1727
|
+
// Positive cache
|
|
1728
|
+
if (userIdentifier in this.userRecords) {
|
|
1729
|
+
return [this.userRecords[userIdentifier] ?? null, null];
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
// Negative cache — skip users we know don't exist (TTL-based)
|
|
1733
|
+
const notFoundAt = this.notFoundUsers.get(userIdentifier);
|
|
1734
|
+
if (notFoundAt && Date.now() - notFoundAt < Client.NOT_FOUND_TTL) {
|
|
1735
|
+
return [null, null];
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
try {
|
|
1739
|
+
const res = await this.http.get(
|
|
1740
|
+
this.getHost() + "/user/" + userIdentifier,
|
|
1741
|
+
);
|
|
1742
|
+
const userRecord = decodeAxios(UserCodec, res.data);
|
|
1743
|
+
this.userRecords[userIdentifier] = userRecord;
|
|
1744
|
+
this.notFoundUsers.delete(userIdentifier);
|
|
1745
|
+
return [userRecord, null];
|
|
1746
|
+
} catch (err: unknown) {
|
|
1747
|
+
if (isAxiosError(err) && err.response?.status === 404) {
|
|
1748
|
+
// Definitive: user doesn't exist — cache and don't retry
|
|
1749
|
+
this.notFoundUsers.set(userIdentifier, Date.now());
|
|
1750
|
+
return [null, err];
|
|
1751
|
+
}
|
|
1752
|
+
// Transient (5xx, network error) — don't cache, caller can retry
|
|
1753
|
+
return [null, isAxiosError(err) ? err : null];
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
private async forward(message: Message) {
|
|
1758
|
+
const copy = { ...message };
|
|
1759
|
+
|
|
1760
|
+
if (this.forwarded.has(copy.mailID)) {
|
|
1761
|
+
return;
|
|
1762
|
+
}
|
|
1763
|
+
this.forwarded.add(copy.mailID);
|
|
1764
|
+
if (this.forwarded.size > 1000) {
|
|
1765
|
+
// Remove oldest entry
|
|
1766
|
+
const first = this.forwarded.values().next().value;
|
|
1767
|
+
if (first !== undefined) this.forwarded.delete(first);
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
const msgBytes = Uint8Array.from(msgpack.encode(copy));
|
|
1771
|
+
|
|
1772
|
+
const devices = await this.getUserDeviceList(this.getUser().userID);
|
|
1773
|
+
|
|
1774
|
+
if (!devices) {
|
|
1775
|
+
throw new Error("Couldn't get own devices.");
|
|
1776
|
+
}
|
|
1777
|
+
const promises = [];
|
|
1778
|
+
for (const device of devices) {
|
|
1779
|
+
if (device.deviceID !== this.getDevice().deviceID) {
|
|
1780
|
+
promises.push(
|
|
1781
|
+
this.sendMail(
|
|
1782
|
+
device,
|
|
1783
|
+
this.getUser(),
|
|
1784
|
+
msgBytes,
|
|
1785
|
+
null,
|
|
1786
|
+
copy.mailID,
|
|
1787
|
+
true,
|
|
1788
|
+
),
|
|
1789
|
+
);
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
void Promise.allSettled(promises).then((results) => {
|
|
1793
|
+
for (const result of results) {
|
|
1794
|
+
const { status } = result;
|
|
1795
|
+
if (status === "rejected") {
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
});
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
private async getChannelByID(channelID: string): Promise<Channel | null> {
|
|
1802
|
+
try {
|
|
1803
|
+
const res = await this.http.get(
|
|
1804
|
+
this.getHost() + "/channel/" + channelID,
|
|
1805
|
+
);
|
|
1806
|
+
return decodeAxios(ChannelCodec, res.data);
|
|
1807
|
+
} catch (_err: unknown) {
|
|
1808
|
+
return null;
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
private async getChannelList(serverID: string): Promise<Channel[]> {
|
|
1813
|
+
const res = await this.http.get(
|
|
1814
|
+
this.getHost() + "/server/" + serverID + "/channels",
|
|
1815
|
+
);
|
|
1816
|
+
return decodeAxios(ChannelArrayCodec, res.data);
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
private getDevice(): Device {
|
|
1820
|
+
if (!this.device) {
|
|
1821
|
+
throw new Error(
|
|
1822
|
+
"You must wait until the auth event is emitted before fetching device details.",
|
|
1823
|
+
);
|
|
1824
|
+
}
|
|
1825
|
+
return this.device;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
private async getDeviceByID(deviceID: string): Promise<Device | null> {
|
|
1829
|
+
if (deviceID in this.deviceRecords) {
|
|
1830
|
+
return this.deviceRecords[deviceID] ?? null;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
const device = await this.database.getDevice(deviceID);
|
|
1834
|
+
if (device) {
|
|
1835
|
+
this.deviceRecords[deviceID] = device;
|
|
1836
|
+
return device;
|
|
1837
|
+
}
|
|
1838
|
+
try {
|
|
1839
|
+
const res = await this.http.get(
|
|
1840
|
+
this.getHost() + "/device/" + deviceID,
|
|
1841
|
+
);
|
|
1842
|
+
const fetchedDevice = decodeAxios(DeviceCodec, res.data);
|
|
1843
|
+
this.deviceRecords[deviceID] = fetchedDevice;
|
|
1844
|
+
await this.database.saveDevice(fetchedDevice);
|
|
1845
|
+
return fetchedDevice;
|
|
1846
|
+
} catch (_err: unknown) {
|
|
1847
|
+
return null;
|
|
1848
|
+
}
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
/* Retrieves the current list of users you have sessions with. */
|
|
1852
|
+
private async getFamiliars(): Promise<User[]> {
|
|
1853
|
+
const sessions = await this.database.getAllSessions();
|
|
1854
|
+
const familiars: User[] = [];
|
|
1855
|
+
|
|
1856
|
+
for (const session of sessions) {
|
|
1857
|
+
const [user, _err] = await this.fetchUser(session.userID);
|
|
1858
|
+
if (user) {
|
|
1859
|
+
familiars.push(user);
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
return familiars;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
private async getGroupHistory(channelID: string): Promise<Message[]> {
|
|
1867
|
+
const messages: Message[] =
|
|
1868
|
+
await this.database.getGroupHistory(channelID);
|
|
1869
|
+
|
|
1870
|
+
return messages;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
private async getMail(): Promise<void> {
|
|
1874
|
+
while (this.fetchingMail) {
|
|
1875
|
+
await sleep(500);
|
|
1876
|
+
}
|
|
1877
|
+
this.fetchingMail = true;
|
|
1878
|
+
let firstFetch = false;
|
|
1879
|
+
if (this.firstMailFetch) {
|
|
1880
|
+
firstFetch = true;
|
|
1881
|
+
this.firstMailFetch = false;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
if (firstFetch) {
|
|
1885
|
+
this.emitter.emit("decryptingMail");
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
try {
|
|
1889
|
+
const res = await this.http.post<ArrayBuffer>(
|
|
1890
|
+
this.getHost() +
|
|
1891
|
+
"/device/" +
|
|
1892
|
+
this.getDevice().deviceID +
|
|
1893
|
+
"/mail",
|
|
1894
|
+
);
|
|
1895
|
+
const mailBuffer = new Uint8Array(res.data);
|
|
1896
|
+
const rawInbox = z
|
|
1897
|
+
.array(mailInboxEntry)
|
|
1898
|
+
.parse(msgpack.decode(mailBuffer));
|
|
1899
|
+
const inbox = rawInbox.sort((a, b) => b[2].localeCompare(a[2]));
|
|
1900
|
+
|
|
1901
|
+
for (const mailDetails of inbox) {
|
|
1902
|
+
const [mailHeader, mailBody, timestamp] = mailDetails;
|
|
1903
|
+
try {
|
|
1904
|
+
await this.readMail(mailHeader, mailBody, timestamp);
|
|
1905
|
+
} catch (_readMailErr) {
|
|
1906
|
+
// non-fatal — inspect _readMailErr in a debugger
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
} catch (_fetchErr) {
|
|
1910
|
+
// non-fatal — inspect _fetchErr in a debugger
|
|
1911
|
+
}
|
|
1912
|
+
this.fetchingMail = false;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
private async getMessageHistory(userID: string): Promise<Message[]> {
|
|
1916
|
+
const messages: Message[] =
|
|
1917
|
+
await this.database.getMessageHistory(userID);
|
|
1918
|
+
|
|
1919
|
+
return messages;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
private async getMultiUserDeviceList(userIDs: string[]): Promise<Device[]> {
|
|
1923
|
+
try {
|
|
1924
|
+
const res = await this.http.post(
|
|
1925
|
+
this.getHost() + "/deviceList",
|
|
1926
|
+
msgpack.encode(userIDs),
|
|
1927
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
1928
|
+
);
|
|
1929
|
+
const devices = decodeAxios(DeviceArrayCodec, res.data);
|
|
1930
|
+
for (const device of devices) {
|
|
1931
|
+
this.deviceRecords[device.deviceID] = device;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
return devices;
|
|
1935
|
+
} catch (_err: unknown) {
|
|
1936
|
+
return [];
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
private async getOTKCount(): Promise<number> {
|
|
1941
|
+
const res = await this.http.get(
|
|
1942
|
+
this.getHost() +
|
|
1943
|
+
"/device/" +
|
|
1944
|
+
this.getDevice().deviceID +
|
|
1945
|
+
"/otk/count",
|
|
1946
|
+
);
|
|
1947
|
+
return decodeAxios(OtkCountCodec, res.data).count;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
/**
|
|
1951
|
+
* Gets all permissions for the logged in user.
|
|
1952
|
+
*
|
|
1953
|
+
* @returns The list of Permission objects.
|
|
1954
|
+
*/
|
|
1955
|
+
private async getPermissions(): Promise<Permission[]> {
|
|
1956
|
+
const res = await this.http.get(
|
|
1957
|
+
this.getHost() + "/user/" + this.getUser().userID + "/permissions",
|
|
1958
|
+
);
|
|
1959
|
+
return decodeAxios(PermissionArrayCodec, res.data);
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
private async getServerByID(serverID: string): Promise<null | Server> {
|
|
1963
|
+
try {
|
|
1964
|
+
const res = await this.http.get(
|
|
1965
|
+
this.getHost() + "/server/" + serverID,
|
|
1966
|
+
);
|
|
1967
|
+
return decodeAxios(ServerCodec, res.data);
|
|
1968
|
+
} catch (_err: unknown) {
|
|
1969
|
+
return null;
|
|
1970
|
+
}
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
private async getServerList(): Promise<Server[]> {
|
|
1974
|
+
const res = await this.http.get(
|
|
1975
|
+
this.getHost() + "/user/" + this.getUser().userID + "/servers",
|
|
1976
|
+
);
|
|
1977
|
+
return decodeAxios(ServerArrayCodec, res.data);
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
private async getSessionByPubkey(publicKey: Uint8Array) {
|
|
1981
|
+
const strPubKey = XUtils.encodeHex(publicKey);
|
|
1982
|
+
if (strPubKey in this.sessionRecords) {
|
|
1983
|
+
return this.sessionRecords[strPubKey];
|
|
1984
|
+
}
|
|
1985
|
+
const session = await this.database.getSessionByPublicKey(publicKey);
|
|
1986
|
+
if (session) {
|
|
1987
|
+
this.sessionRecords[strPubKey] = session;
|
|
1988
|
+
}
|
|
1989
|
+
return session;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
private async getSessionList() {
|
|
1993
|
+
return this.database.getAllSessions();
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
private async getToken(
|
|
1997
|
+
type:
|
|
1998
|
+
| "avatar"
|
|
1999
|
+
| "connect"
|
|
2000
|
+
| "device"
|
|
2001
|
+
| "emoji"
|
|
2002
|
+
| "file"
|
|
2003
|
+
| "invite"
|
|
2004
|
+
| "register",
|
|
2005
|
+
): Promise<ActionToken | null> {
|
|
2006
|
+
try {
|
|
2007
|
+
const res = await this.http.get(this.getHost() + "/token/" + type, {
|
|
2008
|
+
responseType: "arraybuffer",
|
|
2009
|
+
});
|
|
2010
|
+
return decodeAxios(ActionTokenCodec, res.data);
|
|
2011
|
+
} catch {
|
|
2012
|
+
return null;
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
/* Get the currently logged in user. You cannot call this until
|
|
2017
|
+
after the auth event is emitted. */
|
|
2018
|
+
private getUser(): User {
|
|
2019
|
+
if (!this.user) {
|
|
2020
|
+
throw new Error(
|
|
2021
|
+
"You must wait until the auth event is emitted before fetching user details.",
|
|
2022
|
+
);
|
|
2023
|
+
}
|
|
2024
|
+
return this.user;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
private async getUserDeviceList(userID: string): Promise<Device[] | null> {
|
|
2028
|
+
try {
|
|
2029
|
+
const res = await this.http.get(
|
|
2030
|
+
this.getHost() + "/user/" + userID + "/devices",
|
|
2031
|
+
);
|
|
2032
|
+
const devices = decodeAxios(DeviceArrayCodec, res.data);
|
|
2033
|
+
for (const device of devices) {
|
|
2034
|
+
this.deviceRecords[device.deviceID] = device;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
return devices;
|
|
2038
|
+
} catch (_err: unknown) {
|
|
2039
|
+
return null;
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
private async getUserList(channelID: string): Promise<User[]> {
|
|
2044
|
+
const res = await this.http.post(
|
|
2045
|
+
this.getHost() + "/userList/" + channelID,
|
|
2046
|
+
);
|
|
2047
|
+
return decodeAxios(UserArrayCodec, res.data);
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
private async handleNotify(msg: NotifyMsg) {
|
|
2051
|
+
switch (msg.event) {
|
|
2052
|
+
case "mail":
|
|
2053
|
+
await this.getMail();
|
|
2054
|
+
this.fetchingMail = false;
|
|
2055
|
+
break;
|
|
2056
|
+
case "permission":
|
|
2057
|
+
this.emitter.emit(
|
|
2058
|
+
"permission",
|
|
2059
|
+
PermissionSchema.parse(msg.data),
|
|
2060
|
+
);
|
|
2061
|
+
break;
|
|
2062
|
+
case "retryRequest":
|
|
2063
|
+
// msg.data is the messageID for retry
|
|
2064
|
+
break;
|
|
2065
|
+
default:
|
|
2066
|
+
break;
|
|
2067
|
+
}
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
/**
|
|
2071
|
+
* Initializes the keyring. This must be called before anything else.
|
|
2072
|
+
*/
|
|
2073
|
+
private async init(): Promise<void> {
|
|
2074
|
+
if (this.hasInit) {
|
|
2075
|
+
throw new Error("You should only call init() once.");
|
|
2076
|
+
}
|
|
2077
|
+
this.hasInit = true;
|
|
2078
|
+
|
|
2079
|
+
await this.populateKeyRing();
|
|
2080
|
+
this.emitter.on("message", (message) => {
|
|
2081
|
+
if (message.direction === "outgoing" && !message.forward) {
|
|
2082
|
+
void this.forward(message);
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
if (
|
|
2086
|
+
message.direction === "incoming" &&
|
|
2087
|
+
message.recipient === message.sender
|
|
2088
|
+
) {
|
|
2089
|
+
return;
|
|
2090
|
+
}
|
|
2091
|
+
void this.database.saveMessage(message);
|
|
2092
|
+
});
|
|
2093
|
+
this.emitter.emit("ready");
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
private initSocket() {
|
|
2097
|
+
try {
|
|
2098
|
+
if (!this.token) {
|
|
2099
|
+
throw new Error("No token found, did you call login()?");
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
const wsUrl = this.prefixes.WS + this.host + "/socket";
|
|
2103
|
+
// Auth sent as first message after open
|
|
2104
|
+
this.socket = new WebSocketAdapter(wsUrl);
|
|
2105
|
+
this.socket.on("open", () => {
|
|
2106
|
+
const authMsg = JSON.stringify({
|
|
2107
|
+
token: this.token,
|
|
2108
|
+
type: "auth",
|
|
2109
|
+
});
|
|
2110
|
+
this.socket.send(new TextEncoder().encode(authMsg));
|
|
2111
|
+
this.pingInterval = setInterval(this.ping.bind(this), 15000);
|
|
2112
|
+
});
|
|
2113
|
+
|
|
2114
|
+
this.socket.on("close", () => {
|
|
2115
|
+
if (this.pingInterval) {
|
|
2116
|
+
clearInterval(this.pingInterval);
|
|
2117
|
+
this.pingInterval = null;
|
|
2118
|
+
}
|
|
2119
|
+
if (!this.manuallyClosing) {
|
|
2120
|
+
this.emitter.emit("disconnect");
|
|
2121
|
+
}
|
|
2122
|
+
});
|
|
2123
|
+
|
|
2124
|
+
this.socket.on("error", (_error: Error) => {
|
|
2125
|
+
if (!this.manuallyClosing) {
|
|
2126
|
+
this.emitter.emit("disconnect");
|
|
2127
|
+
}
|
|
2128
|
+
});
|
|
2129
|
+
|
|
2130
|
+
this.socket.on("message", (message: Uint8Array) => {
|
|
2131
|
+
const [_header, raw] = XUtils.unpackMessage(message);
|
|
2132
|
+
|
|
2133
|
+
const parseResult = WSMessageSchema.safeParse(raw);
|
|
2134
|
+
if (!parseResult.success) {
|
|
2135
|
+
return;
|
|
2136
|
+
}
|
|
2137
|
+
const msg = parseResult.data;
|
|
2138
|
+
|
|
2139
|
+
switch (msg.type) {
|
|
2140
|
+
case "challenge":
|
|
2141
|
+
this.respond(msg);
|
|
2142
|
+
break;
|
|
2143
|
+
case "error":
|
|
2144
|
+
break;
|
|
2145
|
+
case "notify":
|
|
2146
|
+
void this.handleNotify(msg);
|
|
2147
|
+
break;
|
|
2148
|
+
case "ping":
|
|
2149
|
+
this.pong(msg.transmissionID);
|
|
2150
|
+
break;
|
|
2151
|
+
case "pong":
|
|
2152
|
+
this.setAlive(true);
|
|
2153
|
+
break;
|
|
2154
|
+
case "success":
|
|
2155
|
+
break;
|
|
2156
|
+
case "unauthorized":
|
|
2157
|
+
throw new Error(
|
|
2158
|
+
"Received unauthorized message from server.",
|
|
2159
|
+
);
|
|
2160
|
+
case "authorized":
|
|
2161
|
+
this.emitter.emit("connected");
|
|
2162
|
+
void this.postAuth();
|
|
2163
|
+
break;
|
|
2164
|
+
default:
|
|
2165
|
+
break;
|
|
2166
|
+
}
|
|
2167
|
+
});
|
|
2168
|
+
} catch (err: unknown) {
|
|
2169
|
+
throw new Error(
|
|
2170
|
+
"Error initiating websocket connection " + String(err),
|
|
2171
|
+
);
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
private async kickUser(userID: string, serverID: string): Promise<void> {
|
|
2176
|
+
const permissionList = await this.fetchPermissionList(serverID);
|
|
2177
|
+
for (const permission of permissionList) {
|
|
2178
|
+
if (userID === permission.userID) {
|
|
2179
|
+
await this.deletePermission(permission.permissionID);
|
|
2180
|
+
return;
|
|
2181
|
+
}
|
|
2182
|
+
}
|
|
2183
|
+
throw new Error("Couldn't kick user.");
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
private async leaveServer(serverID: string): Promise<void> {
|
|
2187
|
+
const permissionList = await this.permissions.retrieve();
|
|
2188
|
+
for (const permission of permissionList) {
|
|
2189
|
+
if (permission.resourceID === serverID) {
|
|
2190
|
+
await this.deletePermission(permission.permissionID);
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
private async markSessionVerified(sessionID: string) {
|
|
2196
|
+
return this.database.markSessionVerified(sessionID);
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
private async negotiateOTK() {
|
|
2200
|
+
const otkCount = await this.getOTKCount();
|
|
2201
|
+
const needs = xConstants.MIN_OTK_SUPPLY - otkCount;
|
|
2202
|
+
if (needs === 0) {
|
|
2203
|
+
return;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
await this.submitOTK(needs);
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
private newEphemeralKeys() {
|
|
2210
|
+
if (!this.xKeyRing) {
|
|
2211
|
+
throw new Error("Key ring not initialized.");
|
|
2212
|
+
}
|
|
2213
|
+
this.xKeyRing.ephemeralKeys = xBoxKeyPair();
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
private ping() {
|
|
2217
|
+
if (!this.isAlive) {
|
|
2218
|
+
}
|
|
2219
|
+
this.setAlive(false);
|
|
2220
|
+
void this.send({ transmissionID: uuid.v4(), type: "ping" });
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
private pong(transmissionID: string) {
|
|
2224
|
+
void this.send({ transmissionID, type: "pong" });
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
private async populateKeyRing() {
|
|
2228
|
+
// we've checked in the constructor that these exist
|
|
2229
|
+
if (!this.idKeys) {
|
|
2230
|
+
throw new Error("Identity keys are missing.");
|
|
2231
|
+
}
|
|
2232
|
+
const identityKeys = this.idKeys;
|
|
2233
|
+
|
|
2234
|
+
const existingPreKeys = await this.database.getPreKeys();
|
|
2235
|
+
const preKeys: PreKeysCrypto =
|
|
2236
|
+
existingPreKeys ??
|
|
2237
|
+
(await (async () => {
|
|
2238
|
+
const unsaved = this.createPreKey();
|
|
2239
|
+
const [saved] = await this.database.savePreKeys(
|
|
2240
|
+
[unsaved],
|
|
2241
|
+
false,
|
|
2242
|
+
);
|
|
2243
|
+
if (!saved || saved.index == null)
|
|
2244
|
+
throw new Error(
|
|
2245
|
+
"Failed to save prekey — no index returned.",
|
|
2246
|
+
);
|
|
2247
|
+
return { ...unsaved, index: saved.index };
|
|
2248
|
+
})());
|
|
2249
|
+
|
|
2250
|
+
const sessions = await this.database.getAllSessions();
|
|
2251
|
+
for (const session of sessions) {
|
|
2252
|
+
this.sessionRecords[session.publicKey] =
|
|
2253
|
+
sqlSessionToCrypto(session);
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
const ephemeralKeys = xBoxKeyPair();
|
|
2257
|
+
|
|
2258
|
+
this.xKeyRing = {
|
|
2259
|
+
ephemeralKeys,
|
|
2260
|
+
identityKeys,
|
|
2261
|
+
preKeys,
|
|
2262
|
+
};
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
private async postAuth() {
|
|
2266
|
+
let count = 0;
|
|
2267
|
+
for (;;) {
|
|
2268
|
+
try {
|
|
2269
|
+
await this.getMail();
|
|
2270
|
+
count++;
|
|
2271
|
+
this.fetchingMail = false;
|
|
2272
|
+
|
|
2273
|
+
if (count > 10) {
|
|
2274
|
+
void this.negotiateOTK();
|
|
2275
|
+
count = 0;
|
|
2276
|
+
}
|
|
2277
|
+
} catch {}
|
|
2278
|
+
await sleep(1000 * 60);
|
|
2279
|
+
}
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
private async purgeHistory(): Promise<void> {
|
|
2283
|
+
await this.database.purgeHistory();
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
private async readMail(
|
|
2287
|
+
header: Uint8Array,
|
|
2288
|
+
mail: MailWS,
|
|
2289
|
+
timestamp: string,
|
|
2290
|
+
) {
|
|
2291
|
+
if (this.seenMailIDs.has(mail.mailID)) {
|
|
2292
|
+
return;
|
|
2293
|
+
}
|
|
2294
|
+
this.seenMailIDs.add(mail.mailID);
|
|
2295
|
+
|
|
2296
|
+
this.sendReceipt(new Uint8Array(mail.nonce));
|
|
2297
|
+
let timeout = 1;
|
|
2298
|
+
while (this.reading) {
|
|
2299
|
+
await sleep(timeout);
|
|
2300
|
+
timeout *= 2;
|
|
2301
|
+
}
|
|
2302
|
+
this.reading = true;
|
|
2303
|
+
|
|
2304
|
+
try {
|
|
2305
|
+
const healSession = async () => {
|
|
2306
|
+
const deviceEntry = await this.getDeviceByID(mail.sender);
|
|
2307
|
+
const [user, _err] = await this.fetchUser(mail.authorID);
|
|
2308
|
+
if (deviceEntry && user) {
|
|
2309
|
+
void this.createSession(
|
|
2310
|
+
deviceEntry,
|
|
2311
|
+
user,
|
|
2312
|
+
XUtils.decodeUTF8(`��RETRY_REQUEST:${mail.mailID}��`),
|
|
2313
|
+
mail.group,
|
|
2314
|
+
uuid.v4(),
|
|
2315
|
+
false,
|
|
2316
|
+
);
|
|
2317
|
+
}
|
|
2318
|
+
};
|
|
2319
|
+
|
|
2320
|
+
switch (mail.mailType) {
|
|
2321
|
+
case MailType.initial:
|
|
2322
|
+
const extraParts = Client.deserializeExtra(
|
|
2323
|
+
MailType.initial,
|
|
2324
|
+
new Uint8Array(mail.extra),
|
|
2325
|
+
);
|
|
2326
|
+
const signKey = extraParts[0];
|
|
2327
|
+
const ephKey = extraParts[1];
|
|
2328
|
+
const indexBytes = extraParts[3];
|
|
2329
|
+
if (!signKey || !ephKey || !indexBytes) {
|
|
2330
|
+
throw new Error(
|
|
2331
|
+
"Malformed initial mail extra: missing signKey, ephKey, or indexBytes",
|
|
2332
|
+
);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
const preKeyIndex = XUtils.uint8ArrToNumber(indexBytes);
|
|
2336
|
+
|
|
2337
|
+
const otk =
|
|
2338
|
+
preKeyIndex === 0
|
|
2339
|
+
? null
|
|
2340
|
+
: await this.database.getOneTimeKey(preKeyIndex);
|
|
2341
|
+
|
|
2342
|
+
if (otk?.index !== preKeyIndex && preKeyIndex !== 0) {
|
|
2343
|
+
return;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
// their public keys
|
|
2347
|
+
const IK_A_raw = XKeyConvert.convertPublicKey(signKey);
|
|
2348
|
+
if (!IK_A_raw) {
|
|
2349
|
+
return;
|
|
2350
|
+
}
|
|
2351
|
+
const IK_A = IK_A_raw;
|
|
2352
|
+
const EK_A = ephKey;
|
|
2353
|
+
|
|
2354
|
+
if (!this.xKeyRing) {
|
|
2355
|
+
throw new Error("Key ring not initialized.");
|
|
2356
|
+
}
|
|
2357
|
+
// my private keys
|
|
2358
|
+
const IK_B = this.xKeyRing.identityKeys.secretKey;
|
|
2359
|
+
const IK_BP = this.xKeyRing.identityKeys.publicKey;
|
|
2360
|
+
const SPK_B = this.xKeyRing.preKeys.keyPair.secretKey;
|
|
2361
|
+
const OPK_B = otk ? otk.keyPair.secretKey : null;
|
|
2362
|
+
|
|
2363
|
+
// diffie hellman functions
|
|
2364
|
+
const DH1 = xDH(SPK_B, IK_A);
|
|
2365
|
+
const DH2 = xDH(IK_B, EK_A);
|
|
2366
|
+
const DH3 = xDH(SPK_B, EK_A);
|
|
2367
|
+
const DH4 = OPK_B ? xDH(OPK_B, EK_A) : null;
|
|
2368
|
+
|
|
2369
|
+
// initial key material
|
|
2370
|
+
const IKM = DH4
|
|
2371
|
+
? xConcat(DH1, DH2, DH3, DH4)
|
|
2372
|
+
: xConcat(DH1, DH2, DH3);
|
|
2373
|
+
|
|
2374
|
+
// shared secret key
|
|
2375
|
+
const SK = xKDF(IKM);
|
|
2376
|
+
const PK = xBoxKeyPairFromSecret(SK).publicKey;
|
|
2377
|
+
|
|
2378
|
+
const hmac = xHMAC(mail, SK);
|
|
2379
|
+
|
|
2380
|
+
// associated data
|
|
2381
|
+
const AD = xConcat(
|
|
2382
|
+
xEncode(xConstants.CURVE, IK_A),
|
|
2383
|
+
xEncode(xConstants.CURVE, IK_BP),
|
|
2384
|
+
);
|
|
2385
|
+
|
|
2386
|
+
if (!XUtils.bytesEqual(hmac, header)) {
|
|
2387
|
+
return;
|
|
2388
|
+
}
|
|
2389
|
+
const unsealed = xSecretboxOpen(
|
|
2390
|
+
new Uint8Array(mail.cipher),
|
|
2391
|
+
new Uint8Array(mail.nonce),
|
|
2392
|
+
SK,
|
|
2393
|
+
);
|
|
2394
|
+
if (unsealed) {
|
|
2395
|
+
let plaintext = "";
|
|
2396
|
+
if (!mail.forward) {
|
|
2397
|
+
plaintext = XUtils.encodeUTF8(unsealed);
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
// emit the message
|
|
2401
|
+
const fwdMsg1 = mail.forward
|
|
2402
|
+
? messageSchema.parse(msgpack.decode(unsealed))
|
|
2403
|
+
: null;
|
|
2404
|
+
const message: Message = fwdMsg1
|
|
2405
|
+
? { ...fwdMsg1, forward: true }
|
|
2406
|
+
: {
|
|
2407
|
+
authorID: mail.authorID,
|
|
2408
|
+
decrypted: true,
|
|
2409
|
+
direction: "incoming",
|
|
2410
|
+
forward: mail.forward,
|
|
2411
|
+
group: mail.group
|
|
2412
|
+
? uuid.stringify(mail.group)
|
|
2413
|
+
: null,
|
|
2414
|
+
mailID: mail.mailID,
|
|
2415
|
+
message: plaintext,
|
|
2416
|
+
nonce: XUtils.encodeHex(
|
|
2417
|
+
new Uint8Array(mail.nonce),
|
|
2418
|
+
),
|
|
2419
|
+
readerID: mail.readerID,
|
|
2420
|
+
recipient: mail.recipient,
|
|
2421
|
+
sender: mail.sender,
|
|
2422
|
+
timestamp: timestamp,
|
|
2423
|
+
};
|
|
2424
|
+
|
|
2425
|
+
this.emitter.emit("message", message);
|
|
2426
|
+
|
|
2427
|
+
// discard onetimekey
|
|
2428
|
+
await this.database.deleteOneTimeKey(preKeyIndex);
|
|
2429
|
+
|
|
2430
|
+
const deviceEntry = await this.getDeviceByID(
|
|
2431
|
+
mail.sender,
|
|
2432
|
+
);
|
|
2433
|
+
if (!deviceEntry) {
|
|
2434
|
+
throw new Error("Couldn't get device entry.");
|
|
2435
|
+
}
|
|
2436
|
+
const [userEntry, _userErr] = await this.fetchUser(
|
|
2437
|
+
deviceEntry.owner,
|
|
2438
|
+
);
|
|
2439
|
+
if (!userEntry) {
|
|
2440
|
+
throw new Error("Couldn't get user entry.");
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2443
|
+
this.userRecords[userEntry.userID] = userEntry;
|
|
2444
|
+
this.deviceRecords[deviceEntry.deviceID] = deviceEntry;
|
|
2445
|
+
|
|
2446
|
+
// save session
|
|
2447
|
+
const newSession: SessionSQL = {
|
|
2448
|
+
deviceID: mail.sender,
|
|
2449
|
+
fingerprint: XUtils.encodeHex(AD),
|
|
2450
|
+
lastUsed: new Date().toISOString(),
|
|
2451
|
+
mode: "receiver",
|
|
2452
|
+
publicKey: XUtils.encodeHex(PK),
|
|
2453
|
+
sessionID: uuid.v4(),
|
|
2454
|
+
SK: XUtils.encodeHex(SK),
|
|
2455
|
+
userID: userEntry.userID,
|
|
2456
|
+
verified: false,
|
|
2457
|
+
};
|
|
2458
|
+
await this.database.saveSession(newSession);
|
|
2459
|
+
|
|
2460
|
+
const [user] = await this.fetchUser(newSession.userID);
|
|
2461
|
+
|
|
2462
|
+
if (user) {
|
|
2463
|
+
this.emitter.emit("session", newSession, user);
|
|
2464
|
+
} else {
|
|
2465
|
+
}
|
|
2466
|
+
} else {
|
|
2467
|
+
}
|
|
2468
|
+
break;
|
|
2469
|
+
case MailType.subsequent:
|
|
2470
|
+
const publicKey = Client.deserializeExtra(
|
|
2471
|
+
mail.mailType,
|
|
2472
|
+
new Uint8Array(mail.extra),
|
|
2473
|
+
)[0];
|
|
2474
|
+
if (!publicKey) {
|
|
2475
|
+
throw new Error(
|
|
2476
|
+
"Malformed subsequent mail extra: missing publicKey",
|
|
2477
|
+
);
|
|
2478
|
+
}
|
|
2479
|
+
let session = await this.getSessionByPubkey(publicKey);
|
|
2480
|
+
let retries = 0;
|
|
2481
|
+
while (!session) {
|
|
2482
|
+
if (retries >= 3) {
|
|
2483
|
+
break;
|
|
2484
|
+
}
|
|
2485
|
+
await sleep(100 * 2 ** retries);
|
|
2486
|
+
retries++;
|
|
2487
|
+
session = await this.getSessionByPubkey(publicKey);
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
if (!session) {
|
|
2491
|
+
void healSession();
|
|
2492
|
+
return;
|
|
2493
|
+
}
|
|
2494
|
+
const HMAC = xHMAC(mail, session.SK);
|
|
2495
|
+
|
|
2496
|
+
if (!XUtils.bytesEqual(HMAC, header)) {
|
|
2497
|
+
void healSession();
|
|
2498
|
+
return;
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
const decrypted = xSecretboxOpen(
|
|
2502
|
+
new Uint8Array(mail.cipher),
|
|
2503
|
+
new Uint8Array(mail.nonce),
|
|
2504
|
+
session.SK,
|
|
2505
|
+
);
|
|
2506
|
+
|
|
2507
|
+
if (decrypted) {
|
|
2508
|
+
const fwdMsg2 = mail.forward
|
|
2509
|
+
? messageSchema.parse(msgpack.decode(decrypted))
|
|
2510
|
+
: null;
|
|
2511
|
+
const message: Message = fwdMsg2
|
|
2512
|
+
? {
|
|
2513
|
+
...fwdMsg2,
|
|
2514
|
+
forward: true,
|
|
2515
|
+
}
|
|
2516
|
+
: {
|
|
2517
|
+
authorID: mail.authorID,
|
|
2518
|
+
decrypted: true,
|
|
2519
|
+
direction: "incoming",
|
|
2520
|
+
forward: mail.forward,
|
|
2521
|
+
group: mail.group
|
|
2522
|
+
? uuid.stringify(mail.group)
|
|
2523
|
+
: null,
|
|
2524
|
+
mailID: mail.mailID,
|
|
2525
|
+
message: XUtils.encodeUTF8(decrypted),
|
|
2526
|
+
nonce: XUtils.encodeHex(
|
|
2527
|
+
new Uint8Array(mail.nonce),
|
|
2528
|
+
),
|
|
2529
|
+
readerID: mail.readerID,
|
|
2530
|
+
recipient: mail.recipient,
|
|
2531
|
+
sender: mail.sender,
|
|
2532
|
+
timestamp: timestamp,
|
|
2533
|
+
};
|
|
2534
|
+
this.emitter.emit("message", message);
|
|
2535
|
+
|
|
2536
|
+
void this.database.markSessionUsed(session.sessionID);
|
|
2537
|
+
} else {
|
|
2538
|
+
void healSession();
|
|
2539
|
+
|
|
2540
|
+
// emit the message
|
|
2541
|
+
const message: Message = {
|
|
2542
|
+
authorID: mail.authorID,
|
|
2543
|
+
decrypted: false,
|
|
2544
|
+
direction: "incoming",
|
|
2545
|
+
forward: mail.forward,
|
|
2546
|
+
group: mail.group
|
|
2547
|
+
? uuid.stringify(mail.group)
|
|
2548
|
+
: null,
|
|
2549
|
+
mailID: mail.mailID,
|
|
2550
|
+
message: "",
|
|
2551
|
+
nonce: XUtils.encodeHex(new Uint8Array(mail.nonce)),
|
|
2552
|
+
readerID: mail.readerID,
|
|
2553
|
+
recipient: mail.recipient,
|
|
2554
|
+
sender: mail.sender,
|
|
2555
|
+
timestamp: timestamp,
|
|
2556
|
+
};
|
|
2557
|
+
this.emitter.emit("message", message);
|
|
2558
|
+
}
|
|
2559
|
+
break;
|
|
2560
|
+
default:
|
|
2561
|
+
break;
|
|
2562
|
+
}
|
|
2563
|
+
} finally {
|
|
2564
|
+
this.reading = false;
|
|
2565
|
+
}
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
private async redeemInvite(inviteID: string): Promise<Permission> {
|
|
2569
|
+
const res = await this.http.patch(
|
|
2570
|
+
this.getHost() + "/invite/" + inviteID,
|
|
2571
|
+
);
|
|
2572
|
+
return decodeAxios(PermissionCodec, res.data);
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
private async registerDevice(): Promise<Device | null> {
|
|
2576
|
+
while (!this.xKeyRing) {
|
|
2577
|
+
await sleep(100);
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
const token = await this.getToken("device");
|
|
2581
|
+
|
|
2582
|
+
const username = this.user?.username;
|
|
2583
|
+
if (!username) {
|
|
2584
|
+
throw new Error("No user set — log in first.");
|
|
2585
|
+
}
|
|
2586
|
+
const [userDetails, err] = await this.fetchUser(username);
|
|
2587
|
+
if (!userDetails) {
|
|
2588
|
+
throw new Error("Username not found " + username);
|
|
2589
|
+
}
|
|
2590
|
+
if (err) {
|
|
2591
|
+
throw err;
|
|
2592
|
+
}
|
|
2593
|
+
if (!token) {
|
|
2594
|
+
throw new Error("Couldn't fetch token.");
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
const signKey = this.getKeys().public;
|
|
2598
|
+
const signed = XUtils.encodeHex(
|
|
2599
|
+
xSign(
|
|
2600
|
+
Uint8Array.from(uuid.parse(token.key)),
|
|
2601
|
+
this.signKeys.secretKey,
|
|
2602
|
+
),
|
|
2603
|
+
);
|
|
2604
|
+
|
|
2605
|
+
const devPreKeyIndex = this.xKeyRing.preKeys.index;
|
|
2606
|
+
const devMsg: DevicePayload = {
|
|
2607
|
+
deviceName: this.options?.deviceName ?? "unknown",
|
|
2608
|
+
preKey: XUtils.encodeHex(this.xKeyRing.preKeys.keyPair.publicKey),
|
|
2609
|
+
preKeyIndex: devPreKeyIndex,
|
|
2610
|
+
preKeySignature: XUtils.encodeHex(this.xKeyRing.preKeys.signature),
|
|
2611
|
+
signed,
|
|
2612
|
+
signKey,
|
|
2613
|
+
username: userDetails.username,
|
|
2614
|
+
};
|
|
2615
|
+
|
|
2616
|
+
const res = await this.http.post(
|
|
2617
|
+
this.prefixes.HTTP +
|
|
2618
|
+
this.host +
|
|
2619
|
+
"/user/" +
|
|
2620
|
+
userDetails.userID +
|
|
2621
|
+
"/devices",
|
|
2622
|
+
msgpack.encode(devMsg),
|
|
2623
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
2624
|
+
);
|
|
2625
|
+
return decodeAxios(DeviceCodec, res.data);
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
private respond(msg: ChallMsg) {
|
|
2629
|
+
const response: RespMsg = {
|
|
2630
|
+
signed: xSign(
|
|
2631
|
+
new Uint8Array(msg.challenge),
|
|
2632
|
+
this.signKeys.secretKey,
|
|
2633
|
+
),
|
|
2634
|
+
transmissionID: msg.transmissionID,
|
|
2635
|
+
type: "response",
|
|
2636
|
+
};
|
|
2637
|
+
void this.send(response);
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
private async retrieveEmojiByID(emojiID: string): Promise<Emoji | null> {
|
|
2641
|
+
const res = await this.http.get(
|
|
2642
|
+
this.getHost() + "/emoji/" + emojiID + "/details",
|
|
2643
|
+
);
|
|
2644
|
+
if (!res.data) {
|
|
2645
|
+
return null;
|
|
2646
|
+
}
|
|
2647
|
+
return decodeAxios(EmojiCodec, res.data);
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
private async retrieveEmojiList(serverID: string): Promise<Emoji[]> {
|
|
2651
|
+
const res = await this.http.get(
|
|
2652
|
+
this.getHost() + "/server/" + serverID + "/emoji",
|
|
2653
|
+
);
|
|
2654
|
+
return decodeAxios(EmojiArrayCodec, res.data);
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
private async retrieveFile(
|
|
2658
|
+
fileID: string,
|
|
2659
|
+
key: string,
|
|
2660
|
+
): Promise<FileResponse | null> {
|
|
2661
|
+
const detailsRes = await this.http.get(
|
|
2662
|
+
this.getHost() + "/file/" + fileID + "/details",
|
|
2663
|
+
);
|
|
2664
|
+
const details = decodeAxios(FileSQLCodec, detailsRes.data);
|
|
2665
|
+
|
|
2666
|
+
const res = await this.http.get<ArrayBuffer>(
|
|
2667
|
+
this.getHost() + "/file/" + fileID,
|
|
2668
|
+
{
|
|
2669
|
+
onDownloadProgress: (progressEvent) => {
|
|
2670
|
+
const percentCompleted = Math.round(
|
|
2671
|
+
(progressEvent.loaded * 100) /
|
|
2672
|
+
(progressEvent.total ?? 1),
|
|
2673
|
+
);
|
|
2674
|
+
const { loaded, total = 0 } = progressEvent;
|
|
2675
|
+
const progress: FileProgress = {
|
|
2676
|
+
direction: "download",
|
|
2677
|
+
loaded,
|
|
2678
|
+
progress: percentCompleted,
|
|
2679
|
+
token: fileID,
|
|
2680
|
+
total,
|
|
2681
|
+
};
|
|
2682
|
+
this.emitter.emit("fileProgress", progress);
|
|
2683
|
+
},
|
|
2684
|
+
},
|
|
2685
|
+
);
|
|
2686
|
+
const fileData = res.data;
|
|
2687
|
+
|
|
2688
|
+
const decrypted = xSecretboxOpen(
|
|
2689
|
+
new Uint8Array(fileData),
|
|
2690
|
+
XUtils.decodeHex(details.nonce),
|
|
2691
|
+
XUtils.decodeHex(key),
|
|
2692
|
+
);
|
|
2693
|
+
|
|
2694
|
+
if (decrypted) {
|
|
2695
|
+
return {
|
|
2696
|
+
data: new Uint8Array(decrypted),
|
|
2697
|
+
details,
|
|
2698
|
+
};
|
|
2699
|
+
}
|
|
2700
|
+
throw new Error("Decryption failed.");
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
private async retrieveInvites(serverID: string): Promise<Invite[]> {
|
|
2704
|
+
const res = await this.http.get(
|
|
2705
|
+
this.getHost() + "/server/" + serverID + "/invites",
|
|
2706
|
+
);
|
|
2707
|
+
return decodeAxios(InviteArrayCodec, res.data);
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
private async retrieveKeyBundle(deviceID: string): Promise<KeyBundle> {
|
|
2711
|
+
const res = await this.http.post(
|
|
2712
|
+
this.getHost() + "/device/" + deviceID + "/keyBundle",
|
|
2713
|
+
);
|
|
2714
|
+
return decodeAxios(KeyBundleCodec, res.data);
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
private async retrieveOrCreateDevice(): Promise<Device> {
|
|
2718
|
+
let device: Device;
|
|
2719
|
+
try {
|
|
2720
|
+
const res = await this.http.get(
|
|
2721
|
+
this.prefixes.HTTP +
|
|
2722
|
+
this.host +
|
|
2723
|
+
"/device/" +
|
|
2724
|
+
XUtils.encodeHex(this.signKeys.publicKey),
|
|
2725
|
+
);
|
|
2726
|
+
device = decodeAxios(DeviceCodec, res.data);
|
|
2727
|
+
} catch (err: unknown) {
|
|
2728
|
+
if (isAxiosError(err) && err.response?.status === 404) {
|
|
2729
|
+
await this.database.purgeKeyData();
|
|
2730
|
+
await this.populateKeyRing();
|
|
2731
|
+
|
|
2732
|
+
const newDevice = await this.registerDevice();
|
|
2733
|
+
if (newDevice) {
|
|
2734
|
+
device = newDevice;
|
|
2735
|
+
} else {
|
|
2736
|
+
throw new Error("Error registering device.");
|
|
2737
|
+
}
|
|
2738
|
+
} else {
|
|
2739
|
+
throw err;
|
|
2740
|
+
}
|
|
2741
|
+
}
|
|
2742
|
+
return device;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
/* header is 32 bytes and is either empty
|
|
2746
|
+
or contains an HMAC of the message with
|
|
2747
|
+
a derived SK */
|
|
2748
|
+
private async send(msg: ClientMessage, header?: Uint8Array) {
|
|
2749
|
+
const maxWaitMs = 30_000;
|
|
2750
|
+
let elapsed = 0;
|
|
2751
|
+
let backoff = 50;
|
|
2752
|
+
while (this.socket.readyState !== 1) {
|
|
2753
|
+
if (elapsed >= maxWaitMs) {
|
|
2754
|
+
throw new Error(
|
|
2755
|
+
"WebSocket did not reach OPEN state within 30 seconds.",
|
|
2756
|
+
);
|
|
2757
|
+
}
|
|
2758
|
+
await sleep(backoff);
|
|
2759
|
+
elapsed += backoff;
|
|
2760
|
+
backoff = Math.min(backoff * 2, 4_000);
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
this.socket.send(XUtils.packMessage(msg, header));
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
private async sendGroupMessage(
|
|
2767
|
+
channelID: string,
|
|
2768
|
+
message: string,
|
|
2769
|
+
): Promise<void> {
|
|
2770
|
+
const userList = await this.getUserList(channelID);
|
|
2771
|
+
for (const user of userList) {
|
|
2772
|
+
this.userRecords[user.userID] = user;
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
const mailID = uuid.v4();
|
|
2776
|
+
const promises: Array<Promise<void>> = [];
|
|
2777
|
+
|
|
2778
|
+
const userIDs = [...new Set(userList.map((user) => user.userID))];
|
|
2779
|
+
const devices = await this.getMultiUserDeviceList(userIDs);
|
|
2780
|
+
|
|
2781
|
+
for (const device of devices) {
|
|
2782
|
+
const ownerRecord = this.userRecords[device.owner];
|
|
2783
|
+
if (!ownerRecord) {
|
|
2784
|
+
continue;
|
|
2785
|
+
}
|
|
2786
|
+
promises.push(
|
|
2787
|
+
this.sendMail(
|
|
2788
|
+
device,
|
|
2789
|
+
ownerRecord,
|
|
2790
|
+
XUtils.decodeUTF8(message),
|
|
2791
|
+
uuidToUint8(channelID),
|
|
2792
|
+
mailID,
|
|
2793
|
+
false,
|
|
2794
|
+
),
|
|
2795
|
+
);
|
|
2796
|
+
}
|
|
2797
|
+
void Promise.allSettled(promises).then((results) => {
|
|
2798
|
+
for (const result of results) {
|
|
2799
|
+
const { status } = result;
|
|
2800
|
+
if (status === "rejected") {
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
});
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
/* Sends encrypted mail to a user. */
|
|
2807
|
+
private async sendMail(
|
|
2808
|
+
device: Device,
|
|
2809
|
+
user: User,
|
|
2810
|
+
msg: Uint8Array,
|
|
2811
|
+
group: null | Uint8Array,
|
|
2812
|
+
mailID: null | string,
|
|
2813
|
+
forward: boolean,
|
|
2814
|
+
retry = false,
|
|
2815
|
+
): Promise<void> {
|
|
2816
|
+
while (this.sending.has(device.deviceID)) {
|
|
2817
|
+
await sleep(100);
|
|
2818
|
+
}
|
|
2819
|
+
this.sending.set(device.deviceID, device);
|
|
2820
|
+
|
|
2821
|
+
const session = await this.database.getSessionByDeviceID(
|
|
2822
|
+
device.deviceID,
|
|
2823
|
+
);
|
|
2824
|
+
|
|
2825
|
+
if (!session || retry) {
|
|
2826
|
+
await this.createSession(device, user, msg, group, mailID, forward);
|
|
2827
|
+
return;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
const nonce = xMakeNonce();
|
|
2831
|
+
const cipher = xSecretbox(msg, nonce, session.SK);
|
|
2832
|
+
const extra = session.publicKey;
|
|
2833
|
+
|
|
2834
|
+
const mail: MailWS = {
|
|
2835
|
+
authorID: this.getUser().userID,
|
|
2836
|
+
cipher,
|
|
2837
|
+
extra,
|
|
2838
|
+
forward,
|
|
2839
|
+
group,
|
|
2840
|
+
mailID: mailID || uuid.v4(),
|
|
2841
|
+
mailType: MailType.subsequent,
|
|
2842
|
+
nonce,
|
|
2843
|
+
readerID: session.userID,
|
|
2844
|
+
recipient: device.deviceID,
|
|
2845
|
+
sender: this.getDevice().deviceID,
|
|
2846
|
+
};
|
|
2847
|
+
|
|
2848
|
+
const msgb: ResourceMsg = {
|
|
2849
|
+
action: "CREATE",
|
|
2850
|
+
data: mail,
|
|
2851
|
+
resourceType: "mail",
|
|
2852
|
+
transmissionID: uuid.v4(),
|
|
2853
|
+
type: "resource",
|
|
2854
|
+
};
|
|
2855
|
+
|
|
2856
|
+
const hmac = xHMAC(mail, session.SK);
|
|
2857
|
+
|
|
2858
|
+
const fwdOut = forward
|
|
2859
|
+
? messageSchema.parse(msgpack.decode(msg))
|
|
2860
|
+
: null;
|
|
2861
|
+
const outMsg: Message = fwdOut
|
|
2862
|
+
? { ...fwdOut, forward: true }
|
|
2863
|
+
: {
|
|
2864
|
+
authorID: mail.authorID,
|
|
2865
|
+
decrypted: true,
|
|
2866
|
+
direction: "outgoing",
|
|
2867
|
+
forward: mail.forward,
|
|
2868
|
+
group: mail.group ? uuid.stringify(mail.group) : null,
|
|
2869
|
+
mailID: mail.mailID,
|
|
2870
|
+
message: XUtils.encodeUTF8(msg),
|
|
2871
|
+
nonce: XUtils.encodeHex(new Uint8Array(mail.nonce)),
|
|
2872
|
+
readerID: mail.readerID,
|
|
2873
|
+
recipient: mail.recipient,
|
|
2874
|
+
sender: mail.sender,
|
|
2875
|
+
timestamp: new Date().toISOString(),
|
|
2876
|
+
};
|
|
2877
|
+
this.emitter.emit("message", outMsg);
|
|
2878
|
+
|
|
2879
|
+
await new Promise((res, rej) => {
|
|
2880
|
+
const callback = (packedMsg: Uint8Array) => {
|
|
2881
|
+
const [_header, receivedMsg] = XUtils.unpackMessage(packedMsg);
|
|
2882
|
+
if (receivedMsg.transmissionID === msgb.transmissionID) {
|
|
2883
|
+
this.socket.off("message", callback);
|
|
2884
|
+
const parsed = WSMessageSchema.safeParse(receivedMsg);
|
|
2885
|
+
if (parsed.success && parsed.data.type === "success") {
|
|
2886
|
+
res(parsed.data.data);
|
|
2887
|
+
} else {
|
|
2888
|
+
rej(
|
|
2889
|
+
new Error(
|
|
2890
|
+
"Mail delivery failed: " +
|
|
2891
|
+
JSON.stringify(receivedMsg),
|
|
2892
|
+
),
|
|
2893
|
+
);
|
|
2894
|
+
}
|
|
2895
|
+
}
|
|
2896
|
+
};
|
|
2897
|
+
this.socket.on("message", callback);
|
|
2898
|
+
void this.send(msgb, hmac);
|
|
2899
|
+
});
|
|
2900
|
+
this.sending.delete(device.deviceID);
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
private async sendMessage(userID: string, message: string): Promise<void> {
|
|
2904
|
+
try {
|
|
2905
|
+
const [userEntry, err] = await this.fetchUser(userID);
|
|
2906
|
+
if (err) {
|
|
2907
|
+
throw err;
|
|
2908
|
+
}
|
|
2909
|
+
if (!userEntry) {
|
|
2910
|
+
throw new Error("Couldn't get user entry.");
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
let deviceList = await this.getUserDeviceList(userID);
|
|
2914
|
+
if (!deviceList) {
|
|
2915
|
+
let retries = 0;
|
|
2916
|
+
while (!deviceList) {
|
|
2917
|
+
deviceList = await this.getUserDeviceList(userID);
|
|
2918
|
+
retries++;
|
|
2919
|
+
if (retries > 3) {
|
|
2920
|
+
throw new Error("Couldn't get device list.");
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
}
|
|
2924
|
+
const mailID = uuid.v4();
|
|
2925
|
+
const promises: Array<Promise<void>> = [];
|
|
2926
|
+
for (const device of deviceList) {
|
|
2927
|
+
promises.push(
|
|
2928
|
+
this.sendMail(
|
|
2929
|
+
device,
|
|
2930
|
+
userEntry,
|
|
2931
|
+
XUtils.decodeUTF8(message),
|
|
2932
|
+
null,
|
|
2933
|
+
mailID,
|
|
2934
|
+
false,
|
|
2935
|
+
),
|
|
2936
|
+
);
|
|
2937
|
+
}
|
|
2938
|
+
void Promise.allSettled(promises).then((results) => {
|
|
2939
|
+
for (const result of results) {
|
|
2940
|
+
const { status } = result;
|
|
2941
|
+
if (status === "rejected") {
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
});
|
|
2945
|
+
} catch (err: unknown) {
|
|
2946
|
+
throw err;
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
private sendReceipt(nonce: Uint8Array) {
|
|
2951
|
+
const receipt: ReceiptMsg = {
|
|
2952
|
+
nonce,
|
|
2953
|
+
transmissionID: uuid.v4(),
|
|
2954
|
+
type: "receipt",
|
|
2955
|
+
};
|
|
2956
|
+
void this.send(receipt);
|
|
2957
|
+
}
|
|
2958
|
+
|
|
2959
|
+
private setAlive(status: boolean) {
|
|
2960
|
+
this.isAlive = status;
|
|
2961
|
+
}
|
|
2962
|
+
|
|
2963
|
+
private setUser(user: User): void {
|
|
2964
|
+
this.user = user;
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2967
|
+
private async submitOTK(amount: number) {
|
|
2968
|
+
const otks: UnsavedPreKey[] = [];
|
|
2969
|
+
|
|
2970
|
+
for (let i = 0; i < amount; i++) {
|
|
2971
|
+
otks[i] = this.createPreKey();
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2974
|
+
const savedKeys = await this.database.savePreKeys(otks, true);
|
|
2975
|
+
|
|
2976
|
+
await this.http.post(
|
|
2977
|
+
this.getHost() + "/device/" + this.getDevice().deviceID + "/otk",
|
|
2978
|
+
msgpack.encode(savedKeys.map((key) => this.censorPreKey(key))),
|
|
2979
|
+
{
|
|
2980
|
+
headers: { "Content-Type": "application/msgpack" },
|
|
2981
|
+
},
|
|
2982
|
+
);
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
private async uploadAvatar(avatar: Uint8Array): Promise<void> {
|
|
2986
|
+
if (typeof FormData !== "undefined") {
|
|
2987
|
+
const fpayload = new FormData();
|
|
2988
|
+
fpayload.set("avatar", new Blob([new Uint8Array(avatar)]));
|
|
2989
|
+
|
|
2990
|
+
await this.http.post(
|
|
2991
|
+
this.prefixes.HTTP +
|
|
2992
|
+
this.host +
|
|
2993
|
+
"/avatar/" +
|
|
2994
|
+
this.me.user().userID,
|
|
2995
|
+
fpayload,
|
|
2996
|
+
{
|
|
2997
|
+
headers: { "Content-Type": "multipart/form-data" },
|
|
2998
|
+
onUploadProgress: (progressEvent) => {
|
|
2999
|
+
const percentCompleted = Math.round(
|
|
3000
|
+
(progressEvent.loaded * 100) /
|
|
3001
|
+
(progressEvent.total ?? 1),
|
|
3002
|
+
);
|
|
3003
|
+
const { loaded, total = 0 } = progressEvent;
|
|
3004
|
+
const progress: FileProgress = {
|
|
3005
|
+
direction: "upload",
|
|
3006
|
+
loaded,
|
|
3007
|
+
progress: percentCompleted,
|
|
3008
|
+
token: this.getUser().userID,
|
|
3009
|
+
total,
|
|
3010
|
+
};
|
|
3011
|
+
this.emitter.emit("fileProgress", progress);
|
|
3012
|
+
},
|
|
3013
|
+
},
|
|
3014
|
+
);
|
|
3015
|
+
return;
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
const payload: { file: string } = {
|
|
3019
|
+
file: XUtils.encodeBase64(avatar),
|
|
3020
|
+
};
|
|
3021
|
+
await this.http.post(
|
|
3022
|
+
this.prefixes.HTTP +
|
|
3023
|
+
this.host +
|
|
3024
|
+
"/avatar/" +
|
|
3025
|
+
this.me.user().userID +
|
|
3026
|
+
"/json",
|
|
3027
|
+
msgpack.encode(payload),
|
|
3028
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
3029
|
+
);
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
private async uploadEmoji(
|
|
3033
|
+
emoji: Uint8Array,
|
|
3034
|
+
name: string,
|
|
3035
|
+
serverID: string,
|
|
3036
|
+
): Promise<Emoji | null> {
|
|
3037
|
+
if (typeof FormData !== "undefined") {
|
|
3038
|
+
const fpayload = new FormData();
|
|
3039
|
+
fpayload.set("emoji", new Blob([new Uint8Array(emoji)]));
|
|
3040
|
+
fpayload.set("name", name);
|
|
3041
|
+
|
|
3042
|
+
try {
|
|
3043
|
+
const res = await this.http.post(
|
|
3044
|
+
this.getHost() + "/emoji/" + serverID,
|
|
3045
|
+
fpayload,
|
|
3046
|
+
{
|
|
3047
|
+
headers: { "Content-Type": "multipart/form-data" },
|
|
3048
|
+
onUploadProgress: (progressEvent) => {
|
|
3049
|
+
const percentCompleted = Math.round(
|
|
3050
|
+
(progressEvent.loaded * 100) /
|
|
3051
|
+
(progressEvent.total ?? 1),
|
|
3052
|
+
);
|
|
3053
|
+
const { loaded, total = 0 } = progressEvent;
|
|
3054
|
+
const progress: FileProgress = {
|
|
3055
|
+
direction: "upload",
|
|
3056
|
+
loaded,
|
|
3057
|
+
progress: percentCompleted,
|
|
3058
|
+
token: name,
|
|
3059
|
+
total,
|
|
3060
|
+
};
|
|
3061
|
+
this.emitter.emit("fileProgress", progress);
|
|
3062
|
+
},
|
|
3063
|
+
},
|
|
3064
|
+
);
|
|
3065
|
+
return decodeAxios(EmojiCodec, res.data);
|
|
3066
|
+
} catch (_err: unknown) {
|
|
3067
|
+
return null;
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
const payload: { file: string; name: string } = {
|
|
3072
|
+
file: XUtils.encodeBase64(emoji),
|
|
3073
|
+
name,
|
|
3074
|
+
};
|
|
3075
|
+
try {
|
|
3076
|
+
const res = await this.http.post(
|
|
3077
|
+
this.getHost() + "/emoji/" + serverID + "/json",
|
|
3078
|
+
msgpack.encode(payload),
|
|
3079
|
+
{ headers: { "Content-Type": "application/msgpack" } },
|
|
3080
|
+
);
|
|
3081
|
+
return decodeAxios(EmojiCodec, res.data);
|
|
3082
|
+
} catch (_err: unknown) {
|
|
3083
|
+
return null;
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
}
|