44 lines
1.6 KiB
JavaScript
44 lines
1.6 KiB
JavaScript
'use strict';
|
|
angular.module('copayApp.controllers').controller('coinbaseUriController',
|
|
function($scope, $stateParams, $timeout, profileService, configService, coinbaseService, storageService, $state, ongoingProcess) {
|
|
|
|
this.submitOauthCode = function(code) {
|
|
var self = this;
|
|
var coinbaseTestnet = configService.getSync().coinbase.testnet;
|
|
var network = coinbaseTestnet ? 'testnet' : 'livenet';
|
|
ongoingProcess.set('connectingCoinbase', true);
|
|
this.error = null;
|
|
$timeout(function() {
|
|
coinbaseService.getToken(code, function(err, data) {
|
|
ongoingProcess.set('connectingCoinbase', false);
|
|
if (err) {
|
|
self.error = err;
|
|
$timeout(function() {
|
|
$scope.$apply();
|
|
}, 100);
|
|
} else if (data && data.access_token && data.refresh_token) {
|
|
storageService.setCoinbaseToken(network, data.access_token, function() {
|
|
storageService.setCoinbaseRefreshToken(network, data.refresh_token, function() {
|
|
$scope.$emit('Local/CoinbaseUpdated', data.access_token);
|
|
$timeout(function() {
|
|
$state.go('coinbase');
|
|
$scope.$apply();
|
|
}, 100);
|
|
});
|
|
});
|
|
}
|
|
});
|
|
}, 100);
|
|
};
|
|
|
|
this.checkCode = function() {
|
|
if ($stateParams.url) {
|
|
var match = $stateParams.url.match(/code=(.+)&/);
|
|
if (match && match[1]) {
|
|
this.code = match[1];
|
|
return this.submitOauthCode(this.code);
|
|
}
|
|
}
|
|
$log.error('Bad state: ' + JSON.stringify($stateParams));
|
|
}
|
|
});
|