Skip to content

Commit 6d6090d

Browse files
committed
fix(app): wait for currentUser to resolve before checking if logged in on route changes
fixes #306, #294
1 parent 64f33f0 commit 6d6090d

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

app/templates/client/app/app(coffee).coffee

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ angular.module('<%= scriptAppName %>', [<%= angularModules %>])
3535
.run (($rootScope, $location, Auth) ->
3636
# Redirect to login if route requires auth and you're not logged in
3737
$rootScope.$on <% if(filters.ngroute) { %>'$routeChangeStart'<% } %><% if(filters.uirouter) { %>'$stateChangeStart'<% } %>, (event, next) ->
38-
$location.path '/login' if next.authenticate and not Auth.isLoggedIn()
38+
Auth.isLoggedInAsync (loggedIn) ->
39+
$location.path "/login" if next.authenticate and not loggedIn
3940
)<% } %>

app/templates/client/app/app(js).js

+5-3
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ angular.module('<%= scriptAppName %>', [<%= angularModules %>])
4646
.run(function ($rootScope, $location, Auth) {
4747
// Redirect to login if route requires auth and you're not logged in
4848
$rootScope.$on(<% if(filters.ngroute) { %>'$routeChangeStart'<% } %><% if(filters.uirouter) { %>'$stateChangeStart'<% } %>, function (event, next) {
49-
if (next.authenticate && !Auth.isLoggedIn()) {
50-
$location.path('/login');
51-
}
49+
Auth.isLoggedInAsync(function(loggedIn) {
50+
if (next.authenticate && !loggedIn) {
51+
$location.path('/login');
52+
}
53+
});
5254
});
5355
})<% } %>;

app/templates/client/components/auth(auth)/auth.service(coffee).coffee

+18-1
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,31 @@ angular.module('<%= scriptAppName %>').factory 'Auth', ($location, $rootScope, $
9292

9393

9494
###
95-
Check if a user is logged in
95+
Check if a user is logged in synchronously
9696
9797
@return {Boolean}
9898
###
9999
isLoggedIn: ->
100100
currentUser.hasOwnProperty 'role'
101101

102102

103+
###
104+
Waits for currentUser to resolve before checking if user is logged in
105+
###
106+
isLoggedInAsync: (cb) ->
107+
if currentUser.hasOwnProperty('$promise')
108+
currentUser.$promise.then(->
109+
cb true
110+
return
111+
).catch ->
112+
cb false
113+
return
114+
115+
else if currentUser.hasOwnProperty('role')
116+
cb true
117+
else
118+
cb false
119+
103120
###
104121
Check if a user is an admin
105122

app/templates/client/components/auth(auth)/auth.service(js).js

+17
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,23 @@ angular.module('<%= scriptAppName %>')
110110
return currentUser.hasOwnProperty('role');
111111
},
112112

113+
/**
114+
* Waits for currentUser to resolve before checking if user is logged in
115+
*/
116+
isLoggedInAsync: function(cb) {
117+
if(currentUser.hasOwnProperty('$promise')) {
118+
currentUser.$promise.then(function() {
119+
cb(true);
120+
}).catch(function() {
121+
cb(false);
122+
});
123+
} else if(currentUser.hasOwnProperty('role')) {
124+
cb(true);
125+
} else {
126+
cb(false);
127+
}
128+
},
129+
113130
/**
114131
* Check if a user is an admin
115132
*

0 commit comments

Comments
 (0)