diff options
author | Marvin Borner | 2019-01-26 00:13:48 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-26 00:13:48 +0100 |
commit | e8c9f6873a2291958bad19329fb9b4a037f52c21 (patch) | |
tree | 8d17a572c5a2ffbef0d9903228ebe51f5ff3ebaf /public/scripts/2_encryption.js | |
parent | baf6695a812ab78aadf315986970e9aa3de7c712 (diff) |
Travelling through the madness of asynchronousity
Diffstat (limited to 'public/scripts/2_encryption.js')
-rw-r--r-- | public/scripts/2_encryption.js | 99 |
1 files changed, 63 insertions, 36 deletions
diff --git a/public/scripts/2_encryption.js b/public/scripts/2_encryption.js index c094c2c..17bce3d 100644 --- a/public/scripts/2_encryption.js +++ b/public/scripts/2_encryption.js @@ -3,20 +3,45 @@ const openpgp = require('openpgp'); openpgp.initWorker({path: 'openpgp.worker.js'}); /** - * Generated localstorage database and tables - * @returns {boolean} + * Generates database and tables + * @returns Boolean */ function setupDatabase() { - sql('CREATE localStorage DATABASE IF NOT EXISTS texx_ls'); - sql('ATTACH localStorage DATABASE texx_ls AS db'); - sql('SET AUTOCOMMIT ON'); - sql('CREATE TABLE IF NOT EXISTS db.own_keys (key_type STRING, key_data STRING)'); - sql('CREATE TABLE IF NOT EXISTS db.peer_keys (peer_id STRING, key_data STRING)'); - sql('CREATE TABLE IF NOT EXISTS db.messages (id INT AUTO_INCREMENT, message STRING)'); - return true; + return sql('CREATE INDEXEDDB DATABASE IF NOT EXISTS texx; \ + ATTACH INDEXEDDB DATABASE texx; \ + USE texx; \ + CREATE TABLE IF NOT EXISTS own_keys (key_type STRING, key_data STRING); \ + CREATE TABLE IF NOT EXISTS peer_keys (peer_id STRING, key_data STRING); \ + CREATE TABLE IF NOT EXISTS messages (id INT AUTO_INCREMENT, message STRING);', () => { + localStorage.setItem('database', 'success'); + return true; + }) } /** + * Sets up connection between memory storage and indexeddb + */ +function setupDatabaseConnection() { + sql.promise('CREATE INDEXEDDB DATABASE IF NOT EXISTS texx; ATTACH INDEXEDDB DATABASE texx; USE texx;') +} + +window.test = (() => { + sql('CREATE INDEXEDDB DATABASE IF NOT EXISTS geo;\ + ATTACH INDEXEDDB DATABASE geo; \ + USE geo; \ + CREATE TABLE IF NOT EXISTS cities (city string, population number); \ + INSERT INTO cities Values ("' + (Math.random() * 100) + '","' + (Math.random() * 100) + '")', function () { + + // Select data from IndexedDB + sql.promise('SELECT * FROM cities') + .then(function (res) { + console.log(res); + }); + }); +}); + + +/** * Generates and stores encrypted private key, public key and a revocation certificate * @param peerId * @param passphrase @@ -29,39 +54,37 @@ async function generateKeys(peerId, passphrase) { passphrase: passphrase }; - await openpgp.generateKey(options).then((key) => { - sql(`INSERT INTO db.own_keys VALUES ("private_key", "${key.privateKeyArmored}")`); - sql(`INSERT INTO db.own_keys VALUES ("public_key", "${key.publicKeyArmored}")`); - sql(`INSERT INTO db.own_keys VALUES ("revocation_certificate", "${key.revocationCertificate}")`); - console.log('[LOG] Successfully generated and stored keys!'); + await openpgp.generateKey(options).then(async (key) => { + await sql.promise([`INSERT INTO own_keys VALUES ("private_key", "${key.privateKeyArmored}");`, + `INSERT INTO own_keys VALUES ("public_key", "${key.publicKeyArmored}");`, + `INSERT INTO own_keys VALUES ("revocation_certificate", "${key.revocationCertificate}");`]).then(() => + console.log('[LOG] Successfully generated and stored keys!') + ); }); } /** * Gets the peers private key - * @returns {string} + * @returns {Promise<String>} */ -function getPrivateKey() { - const privateKey = sql('SELECT key_data FROM db.own_keys WHERE key_type = "private_key" LIMIT 1'); - return privateKey.length > 0 ? privateKey[0]['key_data'] : ''; +async function getPrivateKey() { + return await sql.promise('SELECT key_data FROM own_keys WHERE key_type = "private_key" LIMIT 1').then(res => res.length > 0 ? res[0]['key_data'] : ''); } /** * Gets the peers public key - * @returns {string} + * @returns {Promise<String>} */ -function getPublicKey() { - const publicKey = sql('SELECT key_data FROM db.own_keys WHERE key_type = "public_key" LIMIT 1'); - return publicKey.length > 0 ? publicKey[0]['key_data'] : ''; +async function getPublicKey() { + return await sql.promise('SELECT key_data FROM own_keys WHERE key_type = "public_key" LIMIT 1').then(res => res.length > 0 ? res[0]['key_data'] : ''); } /** * Gets the peers revocation certificate - * @returns {string} + * @returns {Promise<String>} */ -function getRevocationCertificate() { - const revocationCertificate = sql('SELECT key_data FROM db.own_keys WHERE key_type = "revocation_certificate" LIMIT 1'); - return revocationCertificate.length > 0 ? revocationCertificate[0]['key_data'] : ''; +async function getRevocationCertificate() { + return await sql.promise('SELECT key_data FROM own_keys WHERE key_type = "revocation_certificate" LIMIT 1').then(res => res.length > 0 ? res[0]['key_data'] : ''); } /** @@ -113,10 +136,10 @@ async function decrypt(data, publicKey, privateKey, passphrase) { * Checks whether the peer has keys * @returns {boolean} */ -function isEncrypted() { - const hasPrivateKey = getPrivateKey() !== ''; - const hasPublicKey = getPublicKey() !== ''; - const hasRevocationCertificate = getRevocationCertificate() !== ''; +async function isEncrypted() { + const hasPrivateKey = await getPrivateKey().then(res => res !== ''); + const hasPublicKey = await getPublicKey().then(res => res !== ''); + const hasRevocationCertificate = await getRevocationCertificate().then(res => res !== ''); return (hasPrivateKey && hasPublicKey && hasRevocationCertificate); } @@ -125,20 +148,23 @@ function isEncrypted() { * @param peerId * @param key */ -function storePeerPublicKey(peerId, key) { +async function storePeerPublicKey(peerId, key) { console.log(peerId); console.log(key); - sql(`INSERT INTO db.peer_keys VALUES ("${peerId}", "${key}")`); - console.log('[LOG] Stored public key of ' + peerId); + await sql.promise(`INSERT INTO peer_keys VALUES ("${peerId}", "${key}")`).then(() => + console.log('[LOG] Stored public key of ' + peerId) + ); } /** * Gets the public key of a peer * @param peerId + * @returns {Promise<String>} */ -function getPeerPublicKey(peerId) { - const publicKey = sql(`SELECT key_data FROM db.peer_keys WHERE peer_id = "${peerId}" LIMIT 1`); - return publicKey.length > 0 ? publicKey[0]['key_data'] : ''; +async function getPeerPublicKey(peerId) { + return await sql.promise(`SELECT key_data FROM peer_keys WHERE peer_id = "${peerId}" LIMIT 1`).then(res => + res.length > 0 ? res[0]['key_data'] : '' + ); } /** @@ -156,6 +182,7 @@ function testEncryption() { } exports.setup = setupDatabase; +exports.setupConn = setupDatabaseConnection; exports.generate = generateKeys; exports.getPrivate = getPrivateKey; exports.getPublic = getPublicKey; |