copay/js/services/controllerUtils.js

108 lines
3.0 KiB
JavaScript
Raw Normal View History

2014-04-17 07:46:49 -07:00
'use strict';
2014-04-23 17:20:44 -07:00
angular.module('copay.controllerUtils')
.factory('controllerUtils', function($rootScope, $sce, $location, Socket, video) {
var root = {};
$rootScope.videoSrc = {};
$rootScope.getVideoURL = function(copayer) {
2014-04-24 14:24:03 -07:00
var encoded = $rootScope.videoSrc[copayer];
if (!encoded) return;
var url = decodeURI(encoded);
var trusted = $sce.trustAsResourceUrl(url);
return trusted;
2014-04-23 17:20:44 -07:00
};
2014-04-29 14:20:44 -07:00
$rootScope.getWalletDisplay = function() {
var w = $rootScope.wallet;
return w && (w.name || w.id);
};
2014-04-23 17:20:44 -07:00
root.logout = function() {
$rootScope.wallet = null;
delete $rootScope['wallet'];
$rootScope.totalBalance = 0;
2014-04-28 07:56:27 -07:00
video.close();
$rootScope.videoSrc = {};
2014-04-23 17:20:44 -07:00
$location.path('signin');
};
2014-04-23 17:20:44 -07:00
root.onError = function(scope) {
if (scope) scope.loading = false;
root.logout();
}
2014-04-23 14:07:20 -07:00
2014-04-23 17:20:44 -07:00
root.onErrorDigest = function(scope) {
root.onError(scope);
$rootScope.$digest();
}
2014-04-24 19:13:55 -07:00
root.startNetwork = function(w) {
2014-04-23 17:20:44 -07:00
var handlePeerVideo = function(err, peerID, url) {
if (err) {
2014-04-28 07:56:27 -07:00
delete $rootScope.videoSrc[peerID];
2014-04-24 14:24:03 -07:00
return;
2014-04-23 17:20:44 -07:00
}
$rootScope.videoSrc[peerID] = encodeURI(url);
2014-04-23 17:20:44 -07:00
$rootScope.$apply();
};
w.on('badMessage', function(peerId) {
$rootScope.flashMessage = {
type: 'error',
message: 'Received wrong message from peer id:' + peerId
};
});
2014-04-24 12:07:49 -07:00
w.on('created', function(myPeerID) {
video.setOwnPeer(myPeerID, w, handlePeerVideo);
2014-04-29 15:26:12 -07:00
$location.path('addresses');
2014-04-23 17:20:44 -07:00
$rootScope.wallet = w;
});
w.on('refresh', function() {
root.updateBalance();
});
w.on('publicKeyRingUpdated', function() {
root.setSocketHandlers();
});
2014-04-23 17:20:44 -07:00
w.on('openError', root.onErrorDigest);
w.on('peer', function(peerID) {
2014-04-24 12:07:49 -07:00
video.callPeer(peerID, handlePeerVideo);
2014-04-23 17:20:44 -07:00
});
w.on('close', root.onErrorDigest);
w.netStart();
};
2014-04-23 17:20:44 -07:00
root.updateBalance = function() {
var w = $rootScope.wallet;
if (!w) return;
w.getBalance(false, function(balance, balanceByAddr) {
$rootScope.totalBalance = balance;
$rootScope.balanceByAddr = balanceByAddr;
2014-04-30 08:25:33 -07:00
$rootScope.$digest();
console.log('New total balance:', balance);
});
w.getBalance(true, function(balance) {
$rootScope.availableBalance = balance;
$rootScope.$digest();
console.log('New available balance:', balance);
2014-04-21 09:16:15 -07:00
});
2014-04-23 17:20:44 -07:00
};
2014-04-17 07:46:49 -07:00
2014-04-23 17:20:44 -07:00
root.setSocketHandlers = function() {
Socket.removeAllListeners();
2014-04-30 10:28:33 -07:00
if (!$rootScope.wallet) return;
2014-04-18 15:08:01 -07:00
2014-04-23 17:20:44 -07:00
var addrs = $rootScope.wallet.getAddressesStr();
for (var i = 0; i < addrs.length; i++) {
console.log('### SUBSCRIBE TO', addrs[i]);
Socket.emit('subscribe', addrs[i]);
}
addrs.forEach(function(addr) {
Socket.on(addr, function(txid) {
console.log('Received!', txid);
root.updateBalance();
});
});
2014-04-23 17:20:44 -07:00
};
2014-04-17 07:46:49 -07:00
2014-04-23 17:20:44 -07:00
return root;
});