add error on incorrect password while importing
This commit is contained in:
parent
7b2f227bcc
commit
6feb2a2176
3 changed files with 49 additions and 44 deletions
|
|
@ -6,7 +6,15 @@ angular.module('copay.import').controller('ImportController',
|
||||||
var reader = new FileReader();
|
var reader = new FileReader();
|
||||||
var _importBackup = function(encryptedObj) {
|
var _importBackup = function(encryptedObj) {
|
||||||
Passphrase.getBase64Async($scope.password, function(passphrase){
|
Passphrase.getBase64Async($scope.password, function(passphrase){
|
||||||
$rootScope.wallet = walletFactory.fromEncryptedObj(encryptedObj, passphrase);
|
var w = walletFactory.fromEncryptedObj(encryptedObj, passphrase);
|
||||||
|
if (!w) {
|
||||||
|
$scope.loading = false;
|
||||||
|
$rootScope.$flashMessage = { message: 'Wrong password', type: 'error'};
|
||||||
|
$rootScope.$digest();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$rootScope.wallet = w;
|
||||||
|
|
||||||
controllerUtils.startNetwork($rootScope.wallet);
|
controllerUtils.startNetwork($rootScope.wallet);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
@ -23,6 +31,7 @@ angular.module('copay.import').controller('ImportController',
|
||||||
|
|
||||||
$scope.import = function(form) {
|
$scope.import = function(form) {
|
||||||
if (form.$invalid) {
|
if (form.$invalid) {
|
||||||
|
$scope.loading = false;
|
||||||
$rootScope.$flashMessage = { message: 'There is an error in the form. Please, try again', type: 'error'};
|
$rootScope.$flashMessage = { message: 'There is an error in the form. Please, try again', type: 'error'};
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -32,6 +41,7 @@ angular.module('copay.import').controller('ImportController',
|
||||||
var password = form.password.$modelValue;
|
var password = form.password.$modelValue;
|
||||||
|
|
||||||
if (!backupFile && !backupText) {
|
if (!backupFile && !backupText) {
|
||||||
|
$scope.loading = false;
|
||||||
$rootScope.$flashMessage = { message: 'Please, select your backup file or paste the text', type: 'error'};
|
$rootScope.$flashMessage = { message: 'Please, select your backup file or paste the text', type: 'error'};
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,14 +39,11 @@ WalletFactory.prototype.log = function(){
|
||||||
WalletFactory.prototype._checkRead = function(walletId) {
|
WalletFactory.prototype._checkRead = function(walletId) {
|
||||||
var s = this.storage;
|
var s = this.storage;
|
||||||
var ret =
|
var ret =
|
||||||
(
|
|
||||||
s.get(walletId, 'publicKeyRing') &&
|
s.get(walletId, 'publicKeyRing') &&
|
||||||
s.get(walletId, 'txProposals') &&
|
s.get(walletId, 'txProposals') &&
|
||||||
s.get(walletId, 'opts') &&
|
s.get(walletId, 'opts') &&
|
||||||
s.get(walletId, 'privateKey')
|
s.get(walletId, 'privateKey');
|
||||||
)?true:false;
|
return ret;
|
||||||
;
|
|
||||||
return ret?true:false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
WalletFactory.prototype.fromObj = function(obj) {
|
WalletFactory.prototype.fromObj = function(obj) {
|
||||||
|
|
@ -60,14 +57,15 @@ WalletFactory.prototype.fromObj = function(obj) {
|
||||||
WalletFactory.prototype.fromEncryptedObj = function(base64, password) {
|
WalletFactory.prototype.fromEncryptedObj = function(base64, password) {
|
||||||
this.storage._setPassphrase(password);
|
this.storage._setPassphrase(password);
|
||||||
var walletObj = this.storage.import(base64);
|
var walletObj = this.storage.import(base64);
|
||||||
var w= this.fromObj(walletObj);
|
if (!walletObj) return null;
|
||||||
w.store();
|
var w = this.fromObj(walletObj);
|
||||||
|
if (!w) return null;
|
||||||
return w;
|
return w;
|
||||||
};
|
};
|
||||||
|
|
||||||
WalletFactory.prototype.read = function(walletId) {
|
WalletFactory.prototype.read = function(walletId) {
|
||||||
if (! this._checkRead(walletId))
|
if (! this._checkRead(walletId))
|
||||||
return false;
|
return null;
|
||||||
|
|
||||||
var obj = {};
|
var obj = {};
|
||||||
var s = this.storage;
|
var s = this.storage;
|
||||||
|
|
@ -149,7 +147,6 @@ WalletFactory.prototype.open = function(walletId, opts) {
|
||||||
|
|
||||||
var w = this.read(walletId);
|
var w = this.read(walletId);
|
||||||
|
|
||||||
|
|
||||||
if (w) {
|
if (w) {
|
||||||
this._checkVersion(w.version);
|
this._checkVersion(w.version);
|
||||||
w.store();
|
w.store();
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
var imports = require('soop').imports();
|
var imports = require('soop').imports();
|
||||||
|
|
||||||
var id = 0;
|
var id = 0;
|
||||||
|
|
||||||
function Storage(opts) {
|
function Storage(opts) {
|
||||||
opts = opts || {};
|
opts = opts || {};
|
||||||
|
|
||||||
|
|
@ -33,12 +34,16 @@ Storage.prototype._encryptObj = function(obj) {
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype._decrypt = function(base64) {
|
Storage.prototype._decrypt = function(base64) {
|
||||||
var decryptedStr=null;
|
var decryptedStr = null;
|
||||||
var decrypted = CryptoJS.AES.decrypt(base64, this._getPassphrase());
|
try {
|
||||||
|
var decrypted = CryptoJS.AES.decrypt(base64, this._getPassphrase());
|
||||||
if (decrypted)
|
|
||||||
decryptedStr = decrypted.toString(CryptoJS.enc.Utf8);
|
|
||||||
|
|
||||||
|
if (decrypted)
|
||||||
|
decryptedStr = decrypted.toString(CryptoJS.enc.Utf8);
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Error while decrypting ' + base64);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return decryptedStr;
|
return decryptedStr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -49,22 +54,16 @@ Storage.prototype._decryptObj = function(base64) {
|
||||||
|
|
||||||
Storage.prototype._read = function(k) {
|
Storage.prototype._read = function(k) {
|
||||||
var ret;
|
var ret;
|
||||||
try {
|
ret = localStorage.getItem(k);
|
||||||
ret = localStorage.getItem(k);
|
if (!ret) return null;
|
||||||
if (ret){
|
ret = this._decrypt(ret);
|
||||||
ret = this._decrypt(ret);
|
if (!ret) return null;
|
||||||
ret = ret.toString(CryptoJS.enc.Utf8);
|
ret = ret.toString(CryptoJS.enc.Utf8);
|
||||||
ret = JSON.parse(ret);
|
ret = JSON.parse(ret);
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log('Error while decrypting: '+e);
|
|
||||||
return null;
|
|
||||||
};
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype._write = function(k,v) {
|
Storage.prototype._write = function(k, v) {
|
||||||
v = JSON.stringify(v);
|
v = JSON.stringify(v);
|
||||||
v = this._encrypt(v);
|
v = this._encrypt(v);
|
||||||
|
|
||||||
|
|
@ -78,7 +77,7 @@ Storage.prototype.getGlobal = function(k) {
|
||||||
};
|
};
|
||||||
|
|
||||||
// set value for key
|
// set value for key
|
||||||
Storage.prototype.setGlobal = function(k,v) {
|
Storage.prototype.setGlobal = function(k, v) {
|
||||||
localStorage.setItem(k, JSON.stringify(v));
|
localStorage.setItem(k, JSON.stringify(v));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -92,46 +91,45 @@ Storage.prototype._key = function(walletId, k) {
|
||||||
};
|
};
|
||||||
// get value by key
|
// get value by key
|
||||||
Storage.prototype.get = function(walletId, k) {
|
Storage.prototype.get = function(walletId, k) {
|
||||||
var ret = this._read(this._key(walletId,k));
|
var ret = this._read(this._key(walletId, k));
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
// set value for key
|
// set value for key
|
||||||
Storage.prototype.set = function(walletId, k,v) {
|
Storage.prototype.set = function(walletId, k, v) {
|
||||||
this._write(this._key(walletId,k), v);
|
this._write(this._key(walletId, k), v);
|
||||||
};
|
};
|
||||||
|
|
||||||
// remove value for key
|
// remove value for key
|
||||||
Storage.prototype.remove = function(walletId, k) {
|
Storage.prototype.remove = function(walletId, k) {
|
||||||
this.removeGlobal(this._key(walletId,k));
|
this.removeGlobal(this._key(walletId, k));
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.setName = function(walletId, name) {
|
Storage.prototype.setName = function(walletId, name) {
|
||||||
this.setGlobal('nameFor::'+walletId, name);
|
this.setGlobal('nameFor::' + walletId, name);
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.getName = function(walletId) {
|
Storage.prototype.getName = function(walletId) {
|
||||||
return this.getGlobal('nameFor::'+walletId);
|
return this.getGlobal('nameFor::' + walletId);
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.getWalletIds = function() {
|
Storage.prototype.getWalletIds = function() {
|
||||||
var walletIds = [];
|
var walletIds = [];
|
||||||
var uniq = {};
|
var uniq = {};
|
||||||
for (var i = 0; i < localStorage.length; i++) {
|
for (var i = 0; i < localStorage.length; i++) {
|
||||||
var key = localStorage.key(i);
|
var key = localStorage.key(i);
|
||||||
var split = key.split('::');
|
var split = key.split('::');
|
||||||
if (split.length == 2) {
|
if (split.length == 2) {
|
||||||
var walletId = split[0];
|
var walletId = split[0];
|
||||||
|
|
||||||
if (walletId === 'nameFor') continue;
|
if (walletId === 'nameFor') continue;
|
||||||
|
|
||||||
if (typeof uniq[walletId] === 'undefined' ) {
|
if (typeof uniq[walletId] === 'undefined') {
|
||||||
walletIds.push(walletId);
|
walletIds.push(walletId);
|
||||||
uniq[walletId] = 1;
|
uniq[walletId] = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return walletIds;
|
return walletIds;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -140,9 +138,9 @@ Storage.prototype.getWallets = function() {
|
||||||
var uniq = {};
|
var uniq = {};
|
||||||
var ids = this.getWalletIds();
|
var ids = this.getWalletIds();
|
||||||
|
|
||||||
for (var i in ids){
|
for (var i in ids) {
|
||||||
wallets.push({
|
wallets.push({
|
||||||
id:ids[i],
|
id: ids[i],
|
||||||
name: this.getName(ids[i]),
|
name: this.getName(ids[i]),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue