From 1be4123133809820ad0bc00be90aa24149471cca Mon Sep 17 00:00:00 2001 From: Mikunj Date: Fri, 14 Feb 2020 13:56:22 +1100 Subject: [PATCH] Rename variable to be less confusing --- libloki/crypto.js | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/libloki/crypto.js b/libloki/crypto.js index 50c82b631..99f2e1a4d 100644 --- a/libloki/crypto.js +++ b/libloki/crypto.js @@ -329,10 +329,13 @@ * This handles specific session reset logic that we need. */ class LokiSessionCipher { - constructor(storage, address) { + constructor(storage, protocolAddress) { this.storage = storage; - this.address = address; - this.sessionCipher = new libsignal.SessionCipher(storage, address); + this.protocolAddress = protocolAddress; + this.sessionCipher = new libsignal.SessionCipher( + storage, + protocolAddress + ); this.TYPE = Object.freeze({ MESSAGE: 1, PREKEY: 2, @@ -354,7 +357,7 @@ if (type === this.TYPE.PREKEY && !activeSessionBaseKey) { const wrapped = dcodeIO.ByteBuffer.wrap(buffer); await window.libloki.storage.verifyFriendRequestAcceptPreKey( - this.address.getName(), + this.protocolAddress.getName(), wrapped ); } @@ -385,11 +388,14 @@ let conversation; try { conversation = await window.ConversationController.getOrCreateAndWait( - this.address.getName(), + this.protocolAddress.getName(), 'private' ); } catch (e) { - window.log.info('Error getting conversation: ', this.address.getName()); + window.log.info( + 'Error getting conversation: ', + this.protocolAddress.getName() + ); return; } @@ -414,7 +420,7 @@ async _getCurrentSessionBaseKey() { const record = await this.sessionCipher.getRecord( - this.address.toString() + this.protocolAddress.toString() ); if (!record) { return null; @@ -429,7 +435,7 @@ async _restoreSession(sessionBaseKey) { const record = await this.sessionCipher.getRecord( - this.address.toString() + this.protocolAddress.toString() ); if (!record) { return; @@ -437,17 +443,21 @@ record.archiveCurrentState(); const sessionToRestore = record.sessions[sessionBaseKey]; + if (!sessionToRestore) { + throw new Error(`Cannot find session with base key ${sessionBaseKey}`); + } + record.promoteState(sessionToRestore); record.updateSessionState(sessionToRestore); await this.storage.storeSession( - this.address.toString(), + this.protocolAddress.toString(), record.serialize() ); } async _deleteAllSessionExcept(sessionBaseKey) { const record = await this.sessionCipher.getRecord( - this.address.toString() + this.protocolAddress.toString() ); if (!record) { return; @@ -456,7 +466,7 @@ record.sessions = {}; record.updateSessionState(sessionToKeep); await this.storage.storeSession( - this.address.toString(), + this.protocolAddress.toString(), record.serialize() ); }