Skip to content

Commit c2e4b30

Browse files
committed
ligth refactor of sdk, added stats endpoint
1 parent a1d18e4 commit c2e4b30

14 files changed

+3242
-122
lines changed

README.md

+138-46
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ npm i @telios/client-sdk
1717
## Usage
1818

1919
```js
20-
const { Account, Mailbox } = require("@telios/client-sdk");
20+
const ClientSDK = require("@telios/client-sdk");
21+
const teliosSDK = await new ClientSDK({
22+
provider: 'https://apiv1.telios.io'})
23+
const Account = teliosSDK.Account
2124
const { secretBoxKeypair, signingKeypair, mnemonic } = Account.makeKeys();
2225

23-
const account = new Account('https://apiv1.telios.io');
24-
2526
// Verification code sent to the recovery email
2627
const vcode = "Xf1sP4";
2728

@@ -51,13 +52,82 @@ const res = await account.register(registerPayload);
5152
```
5253

5354
# API/Examples
55+
### `const teliosSDK = new ClientSDK(opts)`
5456

55-
#### `const account = new Account(provider)`
57+
The ClientSDK class instantiates the Account and Mailbox Class as well as gives access to a host of utility functions under the Crypto module.
5658

57-
The Account class handles communication with the Telios server and provides methods for creating request payloads.
59+
- `opts`: allows you to set class variables `auth` and `provider`
60+
- `provider`: Base URL of the API provider
61+
- `auth`
62+
- `claims`
63+
- `device_signing_key`:
64+
- `account_key`:
65+
- `device_peer_key`:
66+
- `device_id`:
67+
- `device_signing_priv_key`:
68+
- `sig`: Signature sent from the Telios server when this account was registered.
69+
70+
The variables are accessible through the instance of `ClientSDK` as shown in the example below.
71+
72+
### `teliosSDK.setProvider(provider)`
73+
74+
This is a method allowing you to set the provider within the instantiated class.
5875

5976
- `provider`: Base URL of the API provider
6077

78+
### `teliosSDK.setAuthPayload(auth)`
79+
80+
This is a method allowing you to set the auth payload within the instantiated class.
81+
82+
- `auth`
83+
- `claims`
84+
- `device_signing_key`:
85+
- `account_key`:
86+
- `device_peer_key`:
87+
- `device_id`:
88+
- `device_signing_priv_key`:
89+
- `sig`: Signature sent from the Telios server when this account was registered.
90+
91+
92+
```js
93+
94+
const ClientSDK = require("@telios/client-sdk");
95+
const teliosSDK = await new ClientSDK()
96+
97+
// Account Class will help create request payload for new account creation and more
98+
const Account = teliosSDK.Account
99+
// Mailbox Class provides functionality needed to process encrypted emails
100+
const Mailbox = teliosSDK.Mailbox
101+
// Crypto modules is a collection of helper functions
102+
const Crypto = teliosSDK.Crypto
103+
104+
// Variables set through the constructor are available through client
105+
const {
106+
auth,
107+
provider
108+
opts
109+
} = teliosSDK.client
110+
111+
teliosSDK.setProvider('https://apiv1.telios.io')
112+
113+
const auth = {
114+
claims: {
115+
account_key: //SB_PUB_KEY,
116+
device_signing_key: //SIG_PUB_KEY,
117+
device_id: //DEVICE_ID
118+
},
119+
device_signing_priv_key: //SIG_PRIV_KEY,
120+
sig: //ACCOUNT_SERVER_SIG
121+
}
122+
123+
teliosSDK.setAuthPayload(auth)
124+
125+
```
126+
127+
#### `const Account = teliosSDK.Account`
128+
129+
The Account class handles communication with the Telios server and provides methods for creating request payloads.
130+
61131
#### `const { secretBoxKeypair, signingKeypair, mnemonic } = Account.makeKeys([mnemonic])`
62132

63133
Keypairs will need to be initially created before any other actions can be taken. These keys will be used for encrypting/decrypting data on the client and from other users. The private keys should be stored somewhere safe (and encrypted) and never shared. The public keys generated will be used for encrypting a recipient's data and can be shared publicly.
@@ -91,7 +161,7 @@ Returns:
91161
- `device_id`: UUID for this device
92162
- `sig`: Public/private signing keys for the account
93163

94-
#### `await account.register(accountPayload)`
164+
#### `await Account.register(accountPayload)`
95165

96166
Registers a new account with the API server. This method requires a verification code (`vcode`) in order for the backend to create the account. Examples on how to generate verification codes are listed below.
97167

@@ -120,13 +190,12 @@ curl --location --request POST 'https://apiv1.telios.io/account/captcha/verify'
120190
Account registration example usage:
121191

122192
```js
123-
const { Account, Mailbox } = require("@telios/telios-sdk");
193+
const ClientSDK = require("@telios/client-sdk");
194+
const teliosSDK = await new ClientSDK({
195+
provider: 'https://apiv1.telios.io'})
196+
const Account = teliosSDK.Account
124197
const { secretBoxKeypair, signingKeypair, peerKeypair } = Account.makeKeys();
125198

126-
const account = new Account({
127-
provider: "https://apiv1.telios.io",
128-
});
129-
130199
// Verification code sent to the recovery email
131200
const vcode = "Xf1sP4";
132201

@@ -153,9 +222,22 @@ const registerPayload = {
153222
vcode: vcode,
154223
};
155224

225+
// Storing the auth information for later use
226+
const auth = {
227+
claims: {
228+
account_key: initPayload.account.account_key,
229+
device_signing_key: initPayload.account.device_signing_key,
230+
device_id: initPayload.account.device_id
231+
},
232+
device_signing_priv_key: signingKeypair.privateKey,
233+
sig: sig
234+
}
235+
236+
teliosSDK.setAuthPayload(auth)
237+
156238
// Send the account object that was just signed to be stored and
157239
// verified on the server for later authentication.
158-
const res = await account.register(registerPayload);
240+
const res = await Account.register(registerPayload);
159241
```
160242

161243
Example response:
@@ -172,26 +254,32 @@ Example response:
172254

173255
The `sig` returned will be required for authentication and should be stored and encrypted locally. This, along with the account's signing key will be used to create a unique access token for every request.
174256

175-
#### `const mailbox = new Mailbox(provider, auth)`
257+
#### `const stats = Account.retrieveStats()`
176258

177-
The Mailbox class provides functionality needed for processing encrypted emails.
259+
This method will retrieve stats about the account.
178260

179-
- `provider`: Base URL of the API provider
180-
- `auth`
181-
- `claims`
182-
- `device_signing_key`:
183-
- `account_key`:
184-
- `device_peer_key`:
185-
- `device_id`:
186-
- `device_signing_priv_key`:
187-
- `sig`: Signature sent from the Telios server when this account was registered.
261+
Example Response:
262+
```js
263+
{
264+
plan: "FREE", // Plan tier the account is on
265+
daily_email_used: 1, // Number of email sent since last reset aka whether or not they went over the daily quota
266+
daily_email_reset_date: "2021-12-21T19:00:35.000+00:00", // Datea at which the daily_email_used will reset
267+
namespace_used: 1, // Number of Namespace registered by Account
268+
aliases_used: 3, // Number of Aliases registered by Account
269+
storage_space_used: 109635126 // Total Space used up by Account on backup server
270+
}
271+
```
272+
273+
#### `const Mailbox = teliosSDK.Mailbox`
274+
275+
The Mailbox class provides functionality needed for processing encrypted emails.
188276

189277
Example Usage:
190278

191279
```js
192-
const mailbox = new Mailbox({
193-
provider: "https://apiv1.telios.io",
194-
auth: {
280+
281+
// If Auth payload hasn't been previously set do the below
282+
const auth = {
195283
claims: {
196284
device_signing_key: signingKeypair.publicKey,
197285
account_key: secretBoxKeypair.publicKey,
@@ -200,15 +288,19 @@ const mailbox = new Mailbox({
200288
},
201289
device_signing_priv_key: signingKeypair.privateKey,
202290
sig: "[sig]",
203-
},
204-
});
291+
}
292+
293+
teliosSDK.setAuthPayload(auth)
294+
295+
// Once Auth Payload is set.
296+
const Mailbox = teliosSDK.Mailbox;
205297

206298
const payload = {
207299
account_key: secretBoxKeypair.publicKey,
208300
209301
};
210302

211-
const res = await mailbox.registerMailbox(payload);
303+
const res = await Mailbox.registerMailbox(payload);
212304
```
213305

214306
Example response:
@@ -219,7 +311,7 @@ Example response:
219311
}
220312
```
221313

222-
#### `await mailbox.getMailboxPubKeys(addresses)`
314+
#### `await Mailbox.getMailboxPubKeys(addresses)`
223315

224316
A recipient's account's public key is required for sending encrypted emails within the Telios network. `getMailboxPubKeys` takes an array of recipient's addresses and returns their corresponding public key.
225317

@@ -228,7 +320,7 @@ A recipient's account's public key is required for sending encrypted emails with
228320
Example usage:
229321

230322
```js
231-
const res = await mailbox.getMailboxPubKeys([
323+
const res = await Mailbox.getMailboxPubKeys([
232324
233325
234326
]);
@@ -249,7 +341,7 @@ Example response:
249341
];
250342
```
251343

252-
#### `await mailbox.isValidRecoveryEmail(email)`
344+
#### `await Mailbox.isValidRecoveryEmail(email)`
253345

254346
Test if an email recovery address is valid and or has not already been used by another account.
255347

@@ -258,10 +350,10 @@ Test if an email recovery address is valid and or has not already been used by a
258350
Example usage:
259351

260352
```js
261-
const res = await mailbox.isValidRecoveryEmail("[email protected]");
353+
const res = await Mailbox.isValidRecoveryEmail("[email protected]");
262354
```
263355

264-
#### `mailbox.send(email, { privKey, pubKey, drive, filePath })`
356+
#### `Mailbox.send(email, { privKey, pubKey, drive, filePath })`
265357

266358
When sending an email to multiple recipients, the recipient's email domain is checked
267359
if it matches telios.io. In this case the email is encrypted, stored on the local drive, and an encrypted message
@@ -323,7 +415,7 @@ Example usage:
323415

324416
```js
325417
// In this example Bob is sending an ecrypted email to two other Telios mailboxes.
326-
const res = await mailbox.send(email, {
418+
const res = await Mailbox.send(email, {
327419
328420
keypairs: {
329421
secretBoxKeypair,
@@ -336,7 +428,7 @@ const res = await mailbox.send(email, {
336428
});
337429
```
338430

339-
#### `await mailbox.getNewMail(acctPrivKey, acctPubKey)`
431+
#### `await Mailbox.getNewMail(acctPrivKey, acctPubKey)`
340432

341433
- `acctPrivKey`: Your account's private key
342434
- `acctPubKey`: Your account's public key
@@ -347,7 +439,7 @@ Example usage:
347439
const acctPubKey = "[account_public_key]";
348440
const acctPrivKey = "[account_private_key]";
349441

350-
const mail = await mailbox.getNewMail(acctPrivKey, acctPubKey);
442+
const mail = await Mailbox.getNewMail(acctPrivKey, acctPubKey);
351443
```
352444

353445
Example response:
@@ -396,7 +488,7 @@ Example response:
396488
];
397489
```
398490

399-
#### `await mailbox.markAsSynced(ids)`
491+
#### `await Mailbox.markAsSynced(ids)`
400492

401493
After an email has been pulled down onto your local devices its meta record can be safely removed from the server.
402494

@@ -406,10 +498,10 @@ Example usage:
406498

407499
```js
408500
// Pass in an array of message IDs to be marked as synced.
409-
const res = await mailbox.markAsSynced(["5f1210b7a29fe6222f199f80"]);
501+
const res = await Mailbox.markAsSynced(["5f1210b7a29fe6222f199f80"]);
410502
```
411503

412-
#### `await mailbox.registerAliasName(nameObj)`
504+
#### `await Mailbox.registerAliasName(nameObj)`
413505

414506
Example Alias: `alice2000`#`netflix`@telios.io
415507

@@ -444,7 +536,7 @@ Example response:
444536
}
445537
```
446538

447-
#### `await mailbox.registerAliasAddress(addressObj)`
539+
#### `await Mailbox.registerAliasAddress(addressObj)`
448540

449541
Example Alias: `alice2000`#`netflix`@telios.io
450542

@@ -459,7 +551,7 @@ Registers a new alias address. Addresses can be registered manually, or they can
459551
Example usage:
460552

461553
```js
462-
const res = await mailbox.registerAliasAddress({
554+
const res = await Mailbox.registerAliasAddress({
463555
alias_address: 'alice2000#[email protected]',
464556
forwards_to: [],
465557
whitelisted: true
@@ -479,7 +571,7 @@ Example response:
479571
}
480572
```
481573

482-
#### `await mailbox.updateAliasAddress(addressObj)`
574+
#### `await Mailbox.updateAliasAddress(addressObj)`
483575

484576
Update an existing alias address.
485577

@@ -490,7 +582,7 @@ Update an existing alias address.
490582
Example usage:
491583

492584
```js
493-
const res = await mailbox.updateAliasAddress({
585+
const res = await Mailbox.updateAliasAddress({
494586
alias_address: 'alice2000#[email protected]',
495587
forwards_to: ['[email protected]'],
496588
whitelisted: true
@@ -507,7 +599,7 @@ Example response:
507599
}
508600
```
509601

510-
#### `await mailbox.removeAliasAddress(address)`
602+
#### `await Mailbox.removeAliasAddress(address)`
511603

512604
Removes an alias address.
513605

@@ -516,7 +608,7 @@ Removes an alias address.
516608
Example usage:
517609

518610
```js
519-
const res = await mailbox.removeAliasAddress('alice2000#[email protected]');
611+
const res = await Mailbox.removeAliasAddress('alice2000#[email protected]');
520612
```
521613

522614

0 commit comments

Comments
 (0)