Merge pull request #19 from gabrielbazan7/fix/tapOnNot
remove token from localstorage and general refactor
This commit is contained in:
commit
4e96d0c036
5 changed files with 38 additions and 43 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="topbar-container"
|
class="topbar-container"
|
||||||
ng-include="'views/includes/topbar.html'"
|
ng-include="'views/includes/topbar.html'"
|
||||||
ng-init="titleSection='Global preferences'; closeToHome = true; noColor = true">
|
ng-init="titleSection='Global preferences'; closeToHome = true; noColor = true">
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div translate>Language</div>
|
<div translate>Language</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h4></h4>
|
<h4></h4>
|
||||||
<ul class="no-bullet m0 ">
|
<ul class="no-bullet m0 ">
|
||||||
<li ng-click="$root.go('preferencesUnit')">
|
<li ng-click="$root.go('preferencesUnit')">
|
||||||
|
|
@ -42,13 +42,13 @@
|
||||||
<i class="icon-arrow-right3 size-24"></i>
|
<i class="icon-arrow-right3 size-24"></i>
|
||||||
</div>
|
</div>
|
||||||
<div translate>Bitcoin Network Fee Policy</div>
|
<div translate>Bitcoin Network Fee Policy</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<switch id="spend-unconfirmed" name="spendUnconfirmed" ng-model="spendUnconfirmed" class="green right"></switch>
|
<switch id="spend-unconfirmed" name="spendUnconfirmed" ng-model="spendUnconfirmed" class="green right"></switch>
|
||||||
<div translate>Use Unconfirmed Funds</div>
|
<div translate>Use Unconfirmed Funds</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div ng-show="index.usePushNotifications">
|
<div ng-show="prefGlobal.usePushNotifications">
|
||||||
<h4></h4>
|
<h4></h4>
|
||||||
<ul class="no-bullet m0">
|
<ul class="no-bullet m0">
|
||||||
<li>
|
<li>
|
||||||
|
|
@ -63,8 +63,8 @@
|
||||||
<switch id="glidera-enabled" name="glideraEnabled" ng-model="glideraEnabled" class="green right"></switch>
|
<switch id="glidera-enabled" name="glideraEnabled" ng-model="glideraEnabled" class="green right"></switch>
|
||||||
<div>Enable Glidera Service</div>
|
<div>Enable Glidera Service</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<!-- Disabled for testnet
|
<!-- Disabled for testnet
|
||||||
<li ng-show="glideraEnabled">
|
<li ng-show="glideraEnabled">
|
||||||
<span>Glidera Sandbox</span>
|
<span>Glidera Sandbox</span>
|
||||||
<switch id="glidera-testnet" name="glideraTestnet" ng-model="glideraTestnet" class="green right"></switch>
|
<switch id="glidera-testnet" name="glideraTestnet" ng-model="glideraTestnet" class="green right"></switch>
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
<h4></h4>
|
<h4></h4>
|
||||||
<ul class="no-bullet m0">
|
<ul class="no-bullet m0">
|
||||||
<li ng-click="$root.go('about')">
|
<li ng-click="$root.go('about')">
|
||||||
<i class="icon-arrow-right3 size-24 right text-gray"></i>
|
<i class="icon-arrow-right3 size-24 right text-gray"></i>
|
||||||
<div translate>About Copay</div>
|
<div translate>About Copay</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('preferencesGlobalController',
|
angular.module('copayApp.controllers').controller('preferencesGlobalController',
|
||||||
function($scope, $rootScope, $log, configService, uxLanguage, pushNotificationsService, profileService, feeService) {
|
function($scope, $rootScope, $log, configService, uxLanguage, isCordova, isMobile, pushNotificationsService, profileService, feeService) {
|
||||||
|
|
||||||
this.init = function() {
|
this.init = function() {
|
||||||
var config = configService.getSync();
|
var config = configService.getSync();
|
||||||
|
|
@ -13,6 +13,7 @@ angular.module('copayApp.controllers').controller('preferencesGlobalController',
|
||||||
};
|
};
|
||||||
this.feeOpts = feeService.feeOpts;
|
this.feeOpts = feeService.feeOpts;
|
||||||
this.currentFeeLevel = feeService.getCurrentFeeLevel();
|
this.currentFeeLevel = feeService.getCurrentFeeLevel();
|
||||||
|
this.usePushNotifications = isCordova && !isMobile.Windows();
|
||||||
$scope.spendUnconfirmed = config.wallet.spendUnconfirmed;
|
$scope.spendUnconfirmed = config.wallet.spendUnconfirmed;
|
||||||
$scope.glideraEnabled = config.glidera.enabled;
|
$scope.glideraEnabled = config.glidera.enabled;
|
||||||
$scope.glideraTestnet = config.glidera.testnet;
|
$scope.glideraTestnet = config.glidera.testnet;
|
||||||
|
|
|
||||||
|
|
@ -150,17 +150,7 @@ angular.module('copayApp.services')
|
||||||
|
|
||||||
root.pushNotificationsInit = function() {
|
root.pushNotificationsInit = function() {
|
||||||
var defaults = configService.getDefaults();
|
var defaults = configService.getDefaults();
|
||||||
var push = PushNotification.init(defaults.pushNotifications.config);
|
var push = pushNotificationsService.init(root.walletClients);
|
||||||
|
|
||||||
push.on('registration', function(data) {
|
|
||||||
storageService.getDeviceToken(function(err, token) {
|
|
||||||
if (token) return;
|
|
||||||
$log.debug('Starting push notification registration');
|
|
||||||
storageService.setDeviceToken(data.registrationId, function() {
|
|
||||||
pushNotificationsService.enableNotifications(root.walletClients);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
push.on('notification', function(data) {
|
push.on('notification', function(data) {
|
||||||
if (!data.additionalData.foreground) {
|
if (!data.additionalData.foreground) {
|
||||||
|
|
@ -172,7 +162,7 @@ angular.module('copayApp.services')
|
||||||
var walletToFind = data.additionalData.walletId;
|
var walletToFind = data.additionalData.walletId;
|
||||||
|
|
||||||
var walletFound = lodash.find(wallets, function(w) {
|
var walletFound = lodash.find(wallets, function(w) {
|
||||||
return (lodash.isEqual(walletToFind, sjcl.hash.sha256.hash(w.id)));
|
return (lodash.isEqual(walletToFind, sjcl.codec.hex.fromBits(sjcl.hash.sha256.hash(w.id))));
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!walletFound) return $log.debug('Wallet not found');
|
if (!walletFound) return $log.debug('Wallet not found');
|
||||||
|
|
|
||||||
|
|
@ -4,26 +4,38 @@ angular.module('copayApp.services')
|
||||||
var root = {};
|
var root = {};
|
||||||
var usePushNotifications = isCordova && !isMobile.Windows();
|
var usePushNotifications = isCordova && !isMobile.Windows();
|
||||||
|
|
||||||
|
root.init = function(walletsClients) {
|
||||||
|
var defaults = configService.getDefaults();
|
||||||
|
var push = PushNotification.init(defaults.pushNotifications.config);
|
||||||
|
|
||||||
|
push.on('registration', function(data) {
|
||||||
|
if (root.token) return;
|
||||||
|
$log.debug('Starting push notification registration');
|
||||||
|
root.token = data.registrationId;
|
||||||
|
root.enableNotifications(walletsClients);
|
||||||
|
});
|
||||||
|
|
||||||
|
return push;
|
||||||
|
}
|
||||||
|
|
||||||
root.enableNotifications = function(walletsClients) {
|
root.enableNotifications = function(walletsClients) {
|
||||||
if (!usePushNotifications) return;
|
if (!usePushNotifications) return;
|
||||||
|
|
||||||
var config = configService.getSync();
|
var config = configService.getSync();
|
||||||
if (!config.pushNotifications.enabled) return;
|
if (!config.pushNotifications.enabled) return;
|
||||||
|
|
||||||
storageService.getDeviceToken(function(err, token) {
|
if (!root.token) {
|
||||||
if (err || !token) {
|
$log.warn('No token available for this device. Cannot set push notifications');
|
||||||
$log.warn('No token available for this device. Cannot set push notifications');
|
return;
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
lodash.forEach(walletsClients, function(walletClient) {
|
lodash.forEach(walletsClients, function(walletClient) {
|
||||||
var opts = {};
|
var opts = {};
|
||||||
opts.type = isMobile.iOS() ? "ios" : isMobile.Android() ? "android" : null;
|
opts.type = isMobile.iOS() ? "ios" : isMobile.Android() ? "android" : null;
|
||||||
opts.token = token;
|
opts.token = root.token;
|
||||||
root.subscribe(opts, walletClient, function(err, response) {
|
root.subscribe(opts, walletClient, function(err, response) {
|
||||||
if (err) $log.warn('Subscription error: ' + err.message + ': ' + JSON.stringify(opts));
|
if (err) $log.warn('Subscription error: ' + err.message + ': ' + JSON.stringify(opts));
|
||||||
else $log.debug('Subscribed to push notifications service: ' + JSON.stringify(response));
|
else $log.debug('Subscribed to push notifications service: ' + JSON.stringify(response));
|
||||||
});
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -231,14 +231,6 @@ angular.module('copayApp.services')
|
||||||
storage.get('addressbook-' + network, cb);
|
storage.get('addressbook-' + network, cb);
|
||||||
};
|
};
|
||||||
|
|
||||||
root.setDeviceToken = function(token, cb) {
|
|
||||||
storage.set('pushToken', token, cb);
|
|
||||||
}
|
|
||||||
|
|
||||||
root.getDeviceToken = function(cb) {
|
|
||||||
storage.get('pushToken', cb);
|
|
||||||
}
|
|
||||||
|
|
||||||
root.removeAddressbook = function(network, cb) {
|
root.removeAddressbook = function(network, cb) {
|
||||||
storage.remove('addressbook-' + network, cb);
|
storage.remove('addressbook-' + network, cb);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue