react to two factor changes in auth apis
This commit is contained in:
parent
a55a70564f
commit
4057c478c6
|
@ -12,10 +12,10 @@ var FolderRequest = function (folder) {
|
|||
this.name = folder.name ? folder.name.encryptedString : null;
|
||||
};
|
||||
|
||||
var TokenRequest = function (email, masterPasswordHash, code, device) {
|
||||
var TokenRequest = function (email, masterPasswordHash, token, device) {
|
||||
this.email = email;
|
||||
this.masterPasswordHash = masterPasswordHash;
|
||||
this.code = code;
|
||||
this.token = token;
|
||||
this.provider = 'Authenticator';
|
||||
this.device = null;
|
||||
if (device) {
|
||||
|
@ -38,8 +38,8 @@ var TokenRequest = function (email, masterPasswordHash, code, device) {
|
|||
obj.devicePushToken = this.device.pushToken;
|
||||
}
|
||||
|
||||
if (this.code && this.provider) {
|
||||
obj.twoFactorCode = this.code;
|
||||
if (this.token && this.provider) {
|
||||
obj.twoFactorToken = this.token;
|
||||
obj.twoFactorProvider = this.provider;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
folderService, settingsService, syncService) {
|
||||
var _service = {};
|
||||
|
||||
_service.logIn = function (email, masterPassword, twoFactorCode) {
|
||||
_service.logIn = function (email, masterPassword, twoFactorToken) {
|
||||
email = email.toLowerCase();
|
||||
var key = cryptoService.makeKey(masterPassword, email);
|
||||
var deferred = $q.defer();
|
||||
cryptoService.hashPassword(masterPassword, key, function (hashedPassword) {
|
||||
var request = new TokenRequest(email, hashedPassword, twoFactorCode);
|
||||
var request = new TokenRequest(email, hashedPassword, twoFactorToken);
|
||||
|
||||
apiService.postIdentityToken(request, function (response) {
|
||||
// success
|
||||
|
|
Loading…
Reference in New Issue