copay/js/controllers/more.js

52 lines
1.6 KiB
JavaScript
Raw Normal View History

2014-03-26 05:18:42 -07:00
'use strict';
2014-08-21 08:04:19 -07:00
angular.module('copayApp.controllers').controller('MoreController',
2014-08-20 17:52:31 -07:00
function($scope, $rootScope, $location, backupService, walletFactory, controllerUtils, notification) {
2014-08-21 08:02:07 -07:00
$scope.hideAdv=true;
$scope.hidePriv=true;
$scope.getPrivate = function() {
2014-08-20 11:06:37 -07:00
var w = $rootScope.wallet;
2014-08-21 08:02:07 -07:00
return w.privateKey.toObj().extendedPrivateKeyString;
2014-08-20 11:06:37 -07:00
}
2014-07-16 15:00:34 -07:00
$scope.downloadBackup = function() {
var w = $rootScope.wallet;
backupService.download(w);
}
2014-06-16 11:51:19 -07:00
$scope.deleteWallet = function() {
2014-06-16 13:37:33 -07:00
var w = $rootScope.wallet;
2014-06-16 11:51:19 -07:00
w.disconnect();
2014-06-16 13:37:33 -07:00
walletFactory.delete(w.id, function() {
2014-06-16 11:51:19 -07:00
controllerUtils.logout();
});
};
2014-08-20 17:52:31 -07:00
2014-08-21 10:12:55 -07:00
$scope.purge = function(deleteAll) {
var w = $rootScope.wallet;
var removed = w.purgeTxProposals(deleteAll);
2014-08-21 11:28:02 -07:00
if (removed){
controllerUtils.updateBalance();
}
notification.info('Tx Proposals Purged', removed + ' transaction proposal purged');
2014-08-21 10:12:55 -07:00
};
2014-08-20 17:52:31 -07:00
$scope.updateIndexes = function() {
var w = $rootScope.wallet;
notification.info('Scaning for transactions','Using derived addresses from your wallet');
w.updateIndexes(function(err) {
notification.info('Scan Ended', 'Updating balance');
if (err) {
notification.error('Error', 'Error updating indexes: ' + err);
}
controllerUtils.updateAddressList();
controllerUtils.updateBalance(function(){
notification.info('Finished', 'The balance is updated using the derived addresses');
2014-08-20 18:29:01 -07:00
w.sendIndexes();
2014-08-20 17:52:31 -07:00
});
});
};
2014-06-16 11:51:19 -07:00
});