diff options
author | Marvin Borner | 2019-01-27 20:24:58 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-27 20:24:58 +0100 |
commit | 09e19217eb965b5afc3b7c72d6fd9b188fa78049 (patch) | |
tree | b8f64357900b9e6bbf08004d1fc1aae332f79ff2 /public/scripts/chat.js | |
parent | 517736ae1d3813fb3bc7e32c36cd90906d530b91 (diff) |
Added static peer id and peer verification
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 74 |
1 files changed, 46 insertions, 28 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index 3123926..a4bf74f 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -16,35 +16,19 @@ let connectedPeers = []; // TODO: Save new peers in array const generator = new xkcdPassword(); generator.initWithWordList(wordList); -// setup encryption +/** + * Sets up encryption, user etc. + */ (async () => { - peerId = await generator.generate().then(words => words.join('-')); + // generate peerId + if (localStorage.getItem('peer_id') === null) { + peerId = await generator.generate().then(words => words.join('-')); + localStorage.setItem('peer_id', peerId); + } else + peerId = localStorage.getItem('peer_id'); + encryption.setup(); - if (localStorage.getItem('database') === 'success' && await encryption.check()) { - pinInput.init(async (pin, tryCount) => { - try { - await encryption.decryptPrivate(await encryption.getPrivate(), pin); - chat() - } catch (e) { - if (tryCount === 3) { - encryption.reset(); - console.error('Too many tries!'); - pinInput.failure('Account was deleted, this site will reload.'); - setTimeout(() => location.reload(), 1500) - } else { - console.error('Passphrase is wrong!'); - pinInput.failure('Passphrase is wrong!'); - } - } - }); - } else { - pinInput.init(pin => { - console.log('[LOG] No existing keys found! Generating...'); - pinInput.generate(); - passphrase = pin; - (async () => await encryption.generate(peerId, passphrase).then(() => chat()))() - }); - } + await evaluateKeyGeneration(); })(); /** @@ -141,4 +125,38 @@ function chat() { }); } -//encryption.test(); // TESTING IF ENCRYPTION WORKS +/** + * Evaluates whether a key generation is needed and initializes regarding actions + * @returns {Promise<void>} + */ +async function evaluateKeyGeneration() { + if (localStorage.getItem('database') === 'success' && await encryption.check()) { + pinInput.init(async (pin, tryCount) => { + try { + if (await encryption.getId(await encryption.getPublic()) !== peerId) throw "Not verified!"; + await encryption.decryptPrivate(await encryption.getPrivate(), pin); + chat() + } catch (e) { // decrypting failed + if (tryCount === 3) { + encryption.reset(); + console.error('Too many tries!'); + pinInput.failure('This account got removed, the site will reload.'); + setTimeout(() => location.reload(), 1500) + } else if (e === 'Not verified!') { + console.error(e); + pinInput.failure(e); + } else { + console.error('Passphrase is wrong!'); + pinInput.failure('Passphrase is wrong!'); + } + } + }); + } else { + pinInput.init(pin => { + console.log('[LOG] No existing keys found! Generating...'); + pinInput.generate(); + passphrase = pin; + (async () => await encryption.generate(peerId, passphrase).then(() => chat()))() + }); + } +} |