1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

added q promise library. moving cipher service functions out into application services and domain models.

This commit is contained in:
Kyle Spearrin
2016-09-15 00:09:48 -04:00
parent 2c44bd5cc8
commit 16a59f8d09
8 changed files with 121 additions and 77 deletions

View File

@@ -8,21 +8,6 @@ var CipherString = function (encryptedString) {
}
};
!function () {
CipherString.prototype.decrypt = function (callback) {
if (!this.decryptedValue) {
var cryptoService = chrome.extension.getBackgroundPage().cryptoService;
cryptoService.decrypt(this, function (decValue) {
this.decryptedValue = decValue;
callback(this.decryptedValue);
});
}
else {
callback(this.decryptedValue);
}
};
}();
var Site = function (obj, alreadyEncrypted) {
this.id = obj.id ? obj.id : null;
this.folderId = obj.folderId ? obj.folderId : null;
@@ -54,3 +39,75 @@ var Folder = function (obj, alreadyEncrypted) {
this.name = obj.name ? new CipherString(obj.name) : null;
}
};
!function () {
CipherString.prototype.decrypt = function (callback) {
if (!this.decryptedValue) {
var cryptoService = chrome.extension.getBackgroundPage().cryptoService;
cryptoService.decrypt(this, function (decValue) {
this.decryptedValue = decValue;
callback(this.decryptedValue);
});
}
else {
callback(this.decryptedValue);
}
};
CipherString.prototype.decryptWithPromise = function () {
var deferred = Q.defer();
if (!this) {
deferred.resolve(null);
}
else {
this.decrypt(function (decVal) {
deferred.resolve(decVal);
});
}
return deferred.promise;
}
Site.prototype.decrypt = function () {
var self = this;
var model = {
id: self.id,
folderId: self.folderId,
favorite: self.favorite
};
var deferred = Q.defer();
self.name.decryptWithPromise().then(function (val) {
model.name = val;
if (self.uri) {
return self.uri.decryptWithPromise();
}
return null;
}).then(function (val) {
model.uri = val;
if (self.username) {
return self.username.decryptWithPromise();
}
return null;
}).then(function (val) {
model.username = val;
if (self.password) {
return self.password.decryptWithPromise();
}
return null;
}).then(function (val) {
model.password = val;
if (self.notes) {
return self.notes.decryptWithPromise();
}
return null;
}).then(function (val) {
model.notes = val;
deferred.resolve(model);
});
return deferred.promise;
};
}();