aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/encryption.js
diff options
context:
space:
mode:
authorMarvin Borner2019-02-24 17:48:02 +0100
committerMarvin Borner2019-02-24 17:48:02 +0100
commit08160492e22dd8da1cbb4decbb3481f5e6968201 (patch)
tree916b07b5d5ddbbf7e3764b6117192712d8761e56 /public/scripts/encryption.js
parent805e68a4d2402e25d63ee6c9838f8043c39de559 (diff)
Improved contact list
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r--public/scripts/encryption.js14
1 files changed, 10 insertions, 4 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 4c0ab22..0e76b43 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -249,7 +249,7 @@ const self = module.exports = {
* @returns {Promise<void>}
*/
storePeer: async (peerId) => {
- db.contacts.put({
+ await db.contacts.put({
peer_id: peerId,
fingerprint: await self.getPublicKeyFingerprint(await self.getPeerPublicKey(peerId)),
})
@@ -258,6 +258,12 @@ const self = module.exports = {
},
/**
+ * Gets every stored peer
+ * @returns {Promise<Array>}
+ */
+ getStoredPeers: async () => db.contacts.toArray(),
+
+ /**
* Gets the public fingerprint of a peer
* @param peerId
* @returns {Dexie.Promise<Dexie.Promise<Array<String>>>}
@@ -274,12 +280,12 @@ const self = module.exports = {
* @param key
*/
storePeerPublicKey: async (peerId, key) => {
- db.peer_keys.put({
+ await db.peer_keys.put({
peer_id: peerId,
key_data: key,
})
- .then(() => {
- self.storePeer(peerId);
+ .then(async () => {
+ await self.storePeer(peerId);
console.log(`[LOG] Stored public key of ${peerId}`);
})
.catch(err => console.error(err));