fix callbacks for user service methods

This commit is contained in:
Kyle Spearrin 2017-11-03 15:40:19 -04:00
parent 2211c569d7
commit e3dea4084f
6 changed files with 32 additions and 31 deletions

View File

@ -436,8 +436,11 @@ var bg_isBackground = true,
return; return;
} }
bg_userService.isAuthenticated(function (isAuthenticated) { var isAuthenticated;
bg_cryptoService.getKey().then(function (key) { bg_userService.isAuthenticated().then(function (theIsAuthenticated) {
isAuthenticated = theIsAuthenticated;
return bg_cryptoService.getKey();
}).then(function (key) {
var suffix = ''; var suffix = '';
if (!isAuthenticated) { if (!isAuthenticated) {
suffix = '_gray'; suffix = '_gray';
@ -449,7 +452,6 @@ var bg_isBackground = true,
actionSetIcon(chrome.browserAction, suffix); actionSetIcon(chrome.browserAction, suffix);
actionSetIcon(bg_sidebarAction, suffix); actionSetIcon(bg_sidebarAction, suffix);
}); });
});
function actionSetIcon(theAction, suffix) { function actionSetIcon(theAction, suffix) {
if (theAction && theAction.setIcon) { if (theAction && theAction.setIcon) {

View File

@ -23,8 +23,11 @@ angular
var userService = $injector.get('userService'); var userService = $injector.get('userService');
var cryptoService = $injector.get('cryptoService'); var cryptoService = $injector.get('cryptoService');
cryptoService.getKey().then(function (key) { var key;
userService.isAuthenticated(function (isAuthenticated) { cryptoService.getKey().then(function (theKey) {
key = theKey;
return userService.isAuthenticated();
}).then(function (isAuthenticated) {
if (isAuthenticated) { if (isAuthenticated) {
if (!key) { if (!key) {
$state.go('lock'); $state.go('lock');
@ -38,7 +41,6 @@ angular
} }
}); });
}); });
});
$stateProvider $stateProvider
.state('splash', { .state('splash', {
@ -284,7 +286,7 @@ angular
return; return;
} }
userService.isAuthenticated((isAuthenticated) => { userService.isAuthenticated().then((isAuthenticated) => {
if (isAuthenticated) { if (isAuthenticated) {
var obj = {}; var obj = {};
obj[constantsService.lastActiveKey] = (new Date()).getTime(); obj[constantsService.lastActiveKey] = (new Date()).getTime();

View File

@ -24,7 +24,7 @@ angular
}; };
$scope.submit = function () { $scope.submit = function () {
userService.getEmail(function (email) { userService.getEmail().then(function (email) {
var key = cryptoService.makeKey($scope.masterPassword, email); var key = cryptoService.makeKey($scope.masterPassword, email);
var keyHash; var keyHash;
cryptoService.hashPassword($scope.masterPassword, key).then(function (theKeyHash) { cryptoService.hashPassword($scope.masterPassword, key).then(function (theKeyHash) {

View File

@ -22,7 +22,7 @@ angular
function checkPassword() { function checkPassword() {
var deferred = $q.defer(); var deferred = $q.defer();
userService.getEmail(function (email) { userService.getEmail().then(function (email) {
var key = cryptoService.makeKey($scope.masterPassword, email); var key = cryptoService.makeKey($scope.masterPassword, email);
var keyHash; var keyHash;
cryptoService.hashPassword($scope.masterPassword, key).then(function (theKeyHash) { cryptoService.hashPassword($scope.masterPassword, key).then(function (theKeyHash) {

View File

@ -21,7 +21,7 @@ function initSyncService() {
var self = this; var self = this;
self.syncStarted(); self.syncStarted();
self.userService.isAuthenticated(function (isAuthenticated) { self.userService.isAuthenticated().then(function (isAuthenticated) {
if (!isAuthenticated) { if (!isAuthenticated) {
self.syncCompleted(false); self.syncCompleted(false);
callback(false); callback(false);

View File

@ -31,7 +31,6 @@ export default class UserService {
return UtilsService.saveObjToStorage(Keys.stamp, stamp); return UtilsService.saveObjToStorage(Keys.stamp, stamp);
} }
// TODO: callbacks
async getUserId(): Promise<string> { async getUserId(): Promise<string> {
if (this.userId != null) { if (this.userId != null) {
return this.userId; return this.userId;
@ -41,7 +40,6 @@ export default class UserService {
return this.userId; return this.userId;
} }
// TODO: callbacks
async getEmail(): Promise<string> { async getEmail(): Promise<string> {
if (this.email != null) { if (this.email != null) {
return this.email; return this.email;
@ -70,7 +68,6 @@ export default class UserService {
this.userId = this.email = this.stamp = null; this.userId = this.email = this.stamp = null;
} }
// TODO: fix callbacks
async isAuthenticated(): Promise<boolean> { async isAuthenticated(): Promise<boolean> {
const token = await this.tokenService.getToken(); const token = await this.tokenService.getToken();
if (token == null) { if (token == null) {