.
This commit is contained in:
parent
1095b48cd5
commit
d6f8f75583
2 changed files with 96 additions and 23 deletions
78
old/index.js
78
old/index.js
|
|
@ -564,6 +564,84 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
$log.debug('Disclaimer not accepted, cannot open menu');
|
$log.debug('Disclaimer not accepted, cannot open menu');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
self.initGlidera = function(accessToken) {
|
||||||
|
self.glideraEnabled = configService.getSync().glidera.enabled;
|
||||||
|
self.glideraTestnet = configService.getSync().glidera.testnet;
|
||||||
|
var network = self.glideraTestnet ? 'testnet' : 'livenet';
|
||||||
|
|
||||||
|
self.glideraToken = null;
|
||||||
|
self.glideraError = null;
|
||||||
|
self.glideraPermissions = null;
|
||||||
|
self.glideraEmail = null;
|
||||||
|
self.glideraPersonalInfo = null;
|
||||||
|
self.glideraTxs = null;
|
||||||
|
self.glideraStatus = null;
|
||||||
|
|
||||||
|
if (!self.glideraEnabled) return;
|
||||||
|
|
||||||
|
glideraService.setCredentials(network);
|
||||||
|
|
||||||
|
var getToken = function(cb) {
|
||||||
|
if (accessToken) {
|
||||||
|
cb(null, accessToken);
|
||||||
|
} else {
|
||||||
|
storageService.getGlideraToken(network, cb);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
getToken(function(err, accessToken) {
|
||||||
|
if (err || !accessToken) return;
|
||||||
|
else {
|
||||||
|
glideraService.getAccessTokenPermissions(accessToken, function(err, p) {
|
||||||
|
if (err) {
|
||||||
|
self.glideraError = err;
|
||||||
|
} else {
|
||||||
|
self.glideraToken = accessToken;
|
||||||
|
self.glideraPermissions = p;
|
||||||
|
self.updateGlidera({
|
||||||
|
fullUpdate: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
self.updateGlidera = function(opts) {
|
||||||
|
if (!self.glideraToken || !self.glideraPermissions) return;
|
||||||
|
var accessToken = self.glideraToken;
|
||||||
|
var permissions = self.glideraPermissions;
|
||||||
|
|
||||||
|
opts = opts || {};
|
||||||
|
|
||||||
|
glideraService.getStatus(accessToken, function(err, data) {
|
||||||
|
self.glideraStatus = data;
|
||||||
|
});
|
||||||
|
|
||||||
|
glideraService.getLimits(accessToken, function(err, limits) {
|
||||||
|
self.glideraLimits = limits;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (permissions.transaction_history) {
|
||||||
|
glideraService.getTransactions(accessToken, function(err, data) {
|
||||||
|
self.glideraTxs = data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (permissions.view_email_address && opts.fullUpdate) {
|
||||||
|
glideraService.getEmail(accessToken, function(err, data) {
|
||||||
|
self.glideraEmail = data.email;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (permissions.personal_info && opts.fullUpdate) {
|
||||||
|
glideraService.getPersonalInfo(accessToken, function(err, data) {
|
||||||
|
self.glideraPersonalInfo = data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
self.initCoinbase = function(accessToken) {
|
self.initCoinbase = function(accessToken) {
|
||||||
self.coinbaseEnabled = configService.getSync().coinbase.enabled;
|
self.coinbaseEnabled = configService.getSync().coinbase.enabled;
|
||||||
self.coinbaseTestnet = configService.getSync().coinbase.testnet;
|
self.coinbaseTestnet = configService.getSync().coinbase.testnet;
|
||||||
|
|
|
||||||
|
|
@ -14,21 +14,18 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
credentials.REDIRECT_URI = 'copay://glidera';
|
credentials.REDIRECT_URI = 'copay://glidera';
|
||||||
credentials.CLIENT_ID = '6163427a2f37d1b2022ececd6d6c9cdd';
|
credentials.CLIENT_ID = '6163427a2f37d1b2022ececd6d6c9cdd';
|
||||||
credentials.CLIENT_SECRET = '599cc3af26108c6fece8ab17c3f35867';
|
credentials.CLIENT_SECRET = '599cc3af26108c6fece8ab17c3f35867';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
credentials.REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob';
|
credentials.REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob';
|
||||||
credentials.CLIENT_ID = 'c402f4a753755456e8c384fb65b7be1d';
|
credentials.CLIENT_ID = 'c402f4a753755456e8c384fb65b7be1d';
|
||||||
credentials.CLIENT_SECRET = '3ce826198e3618d0b8ed341ab91fe4e5';
|
credentials.CLIENT_SECRET = '3ce826198e3618d0b8ed341ab91fe4e5';
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
credentials.HOST = 'https://glidera.io';
|
credentials.HOST = 'https://glidera.io';
|
||||||
if (isCordova) {
|
if (isCordova) {
|
||||||
credentials.REDIRECT_URI = 'copay://glidera';
|
credentials.REDIRECT_URI = 'copay://glidera';
|
||||||
credentials.CLIENT_ID = '9c8023f0ac0128235b7b27a6f2610c83';
|
credentials.CLIENT_ID = '9c8023f0ac0128235b7b27a6f2610c83';
|
||||||
credentials.CLIENT_SECRET = '30431511407b47f25a83bffd72881d55';
|
credentials.CLIENT_SECRET = '30431511407b47f25a83bffd72881d55';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
credentials.REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob';
|
credentials.REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob';
|
||||||
credentials.CLIENT_ID = '8a9e8a9cf155db430c1ea6c7889afed1';
|
credentials.CLIENT_ID = '8a9e8a9cf155db430c1ea6c7889afed1';
|
||||||
credentials.CLIENT_SECRET = '24ddec578f38d5488bfe13601933c05f';
|
credentials.CLIENT_SECRET = '24ddec578f38d5488bfe13601933c05f';
|
||||||
|
|
@ -37,11 +34,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
};
|
};
|
||||||
|
|
||||||
root.getOauthCodeUrl = function() {
|
root.getOauthCodeUrl = function() {
|
||||||
return credentials.HOST
|
return credentials.HOST + '/oauth2/auth?response_type=code&client_id=' + credentials.CLIENT_ID + '&redirect_uri=' + credentials.REDIRECT_URI;
|
||||||
+ '/oauth2/auth?response_type=code&client_id='
|
|
||||||
+ credentials.CLIENT_ID
|
|
||||||
+ '&redirect_uri='
|
|
||||||
+ credentials.REDIRECT_URI;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
root.getToken = function(code, cb) {
|
root.getToken = function(code, cb) {
|
||||||
|
|
@ -52,10 +45,10 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'Accept': 'application/json'
|
'Accept': 'application/json'
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
grant_type : 'authorization_code',
|
grant_type: 'authorization_code',
|
||||||
code: code,
|
code: code,
|
||||||
client_id : credentials.CLIENT_ID,
|
client_id: credentials.CLIENT_ID,
|
||||||
client_secret: credentials.CLIENT_SECRET,
|
client_secret: credentials.CLIENT_SECRET,
|
||||||
redirect_uri: credentials.REDIRECT_URI
|
redirect_uri: credentials.REDIRECT_URI
|
||||||
}
|
}
|
||||||
|
|
@ -63,7 +56,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
|
|
||||||
$http(req).then(function(data) {
|
$http(req).then(function(data) {
|
||||||
$log.info('Glidera Authorization Access Token: SUCCESS');
|
$log.info('Glidera Authorization Access Token: SUCCESS');
|
||||||
return cb(null, data.data);
|
return cb(null, data.data);
|
||||||
}, function(data) {
|
}, function(data) {
|
||||||
$log.error('Glidera Authorization Access Token: ERROR ' + data.statusText);
|
$log.error('Glidera Authorization Access Token: ERROR ' + data.statusText);
|
||||||
return cb('Glidera Authorization Access Token: ERROR ' + data.statusText);
|
return cb('Glidera Authorization Access Token: ERROR ' + data.statusText);
|
||||||
|
|
@ -203,12 +196,12 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
};
|
};
|
||||||
$http(_post('/prices/sell', token, null, data)).then(function(data) {
|
$http(_post('/prices/sell', token, null, data)).then(function(data) {
|
||||||
$log.info('Glidera Sell Price: SUCCESS');
|
$log.info('Glidera Sell Price: SUCCESS');
|
||||||
return cb(null, data.data);
|
return cb(null, data.data);
|
||||||
}, function(data) {
|
}, function(data) {
|
||||||
$log.error('Glidera Sell Price: ERROR ' + data.statusText);
|
$log.error('Glidera Sell Price: ERROR ' + data.statusText);
|
||||||
return cb('Glidera Sell Price: ERROR ' + data.statusText);
|
return cb('Glidera Sell Price: ERROR ' + data.statusText);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
root.sell = function(token, twoFaCode, data, cb) {
|
root.sell = function(token, twoFaCode, data, cb) {
|
||||||
var data = {
|
var data = {
|
||||||
|
|
@ -220,7 +213,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
};
|
};
|
||||||
$http(_post('/sell', token, twoFaCode, data)).then(function(data) {
|
$http(_post('/sell', token, twoFaCode, data)).then(function(data) {
|
||||||
$log.info('Glidera Sell: SUCCESS');
|
$log.info('Glidera Sell: SUCCESS');
|
||||||
return cb(null, data.data);
|
return cb(null, data.data);
|
||||||
}, function(data) {
|
}, function(data) {
|
||||||
$log.error('Glidera Sell Request: ERROR ' + data.statusText);
|
$log.error('Glidera Sell Request: ERROR ' + data.statusText);
|
||||||
return cb('Glidera Sell Request: ERROR ' + data.statusText);
|
return cb('Glidera Sell Request: ERROR ' + data.statusText);
|
||||||
|
|
@ -234,7 +227,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
};
|
};
|
||||||
$http(_post('/prices/buy', token, null, data)).then(function(data) {
|
$http(_post('/prices/buy', token, null, data)).then(function(data) {
|
||||||
$log.info('Glidera Buy Price: SUCCESS');
|
$log.info('Glidera Buy Price: SUCCESS');
|
||||||
return cb(null, data.data);
|
return cb(null, data.data);
|
||||||
}, function(data) {
|
}, function(data) {
|
||||||
$log.error('Glidera Buy Price: ERROR ' + data.statusText);
|
$log.error('Glidera Buy Price: ERROR ' + data.statusText);
|
||||||
return cb('Glidera Buy Price: ERROR ' + data.statusText);
|
return cb('Glidera Buy Price: ERROR ' + data.statusText);
|
||||||
|
|
@ -251,7 +244,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
};
|
};
|
||||||
$http(_post('/buy', token, twoFaCode, data)).then(function(data) {
|
$http(_post('/buy', token, twoFaCode, data)).then(function(data) {
|
||||||
$log.info('Glidera Buy: SUCCESS');
|
$log.info('Glidera Buy: SUCCESS');
|
||||||
return cb(null, data.data);
|
return cb(null, data.data);
|
||||||
}, function(data) {
|
}, function(data) {
|
||||||
$log.error('Glidera Buy Request: ERROR ' + data.statusText);
|
$log.error('Glidera Buy Request: ERROR ' + data.statusText);
|
||||||
return cb('Glidera Buy Request: ERROR ' + data.statusText);
|
return cb('Glidera Buy Request: ERROR ' + data.statusText);
|
||||||
|
|
@ -292,7 +285,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
} else {
|
} else {
|
||||||
root.glideraToken = accessToken;
|
root.glideraToken = accessToken;
|
||||||
root.glideraPermissions = p;
|
root.glideraPermissions = p;
|
||||||
root.updateGlidera({
|
root.update({
|
||||||
fullUpdate: true
|
fullUpdate: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -301,7 +294,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
root.updateGlidera = function(opts) {
|
root.update = function(opts) {
|
||||||
if (!root.glideraToken || !root.glideraPermissions) return;
|
if (!root.glideraToken || !root.glideraPermissions) return;
|
||||||
var accessToken = root.glideraToken;
|
var accessToken = root.glideraToken;
|
||||||
var permissions = root.glideraPermissions;
|
var permissions = root.glideraPermissions;
|
||||||
|
|
@ -339,7 +332,9 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
|
||||||
root.init();
|
root.init();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$rootScope.$on('NewBlock', function() {
|
||||||
|
root.update();
|
||||||
|
});
|
||||||
|
|
||||||
return root;
|
return root;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue