I have a simple use case, where my application is using vue-router
and vuex
. Then store
contains a user
object which is null
in the beginning. After the user is validated from the server it sends back an user
object which contains a JWT
auth token which is assigned to the user
object in the store. Now lets assume that the user came back after 3 hours and tried to visit a route or perform any other action, considering that the auth token has expired by then, what would be the best way to check that(need to call axios post
to check it) and redirect user to the login
page. My app will have loads of components so I know I can write logic to check the token valid in the mounted
hook of each component but that would mean repeating it all of the components. Also I don't want to use the beforeEach
navigation guard because I cannot show any visual feedback to the user like checking...
or loading...
.
Vue Refresh Token overview – A legal JWT must be added to HTTP Header if Client accesses protected resources. – With the help of Axios Interceptors, Vue App can check if the accessToken (JWT) is expired (401), sends /refreshToken request to receive new accessToken and use it for new resource request.
next(false): abort the current navigation. If the browser URL was changed (either manually by the user or via back button), it will be reset to that of the from route.
I do something similar in one of my projects, it's actually deceptively difficult to handle these types of situations, but you can add a beforeEnter
guard to your protected routes, then redirect if the authentication failed.
const guard = function(to, from, next) {
// check for valid auth token
axios.get('/api/checkAuthToken').then(response => {
// Token is valid, so continue
next();
}).catch(error => {
// There was an error so redirect
window.location.href = "/login";
})
};
Then on your route you can do:
{
path: '/dashboard',
component: Dashboard,
beforeEnter: (to, from, next) => {
guard(to, from, next);
}
},
You may notice I've used location.href
rather than router.push
. I do that because my login form is csrf protected, so I need a new csrf_token.
Your other issue is going to be if the user tries to interact with your page without changing the route (i.e. they click a button and get a 401 response). For this I find it easiest to check authentication on each axios
request and redirect to login
when I receive a 401 response.
In terms of adding a loading spinner during the guard check you can simply add a loading flag to your vuex store then import your store into your router. Honestly though I wouldn't bother, on a decent production server the check will be done so quickly that the user is unlikely to ever see it.
You can define a Global Mixin and use it via Vue.use(myMixin)
- then all Components will inherit this mixin. If you define a mounted
or probably better activated
hook on the mixin, it will be called on every component.
There you can use everything a component can do - this
will point to your component. And if the component also defines a hook itself, the mixin hook of the same type will run before the components own hook.
We used a little different solution - we have a single component which handles everything login-related, which exists outside of the router-view in the parent index.html. This component is always active and can hide the div router-view and overlay a loading message or a login-screen. For an intranet-application this component will also use polling to keep the session alive as long as the browser stays open.
You can load of your router-navigation to this component. - So a child-component which wants to trigger a router-navigation just sets a global reactive property navigateTo
which is watched by the top level authentication component. This will trigger an authentication check, possibly a login-workflow and after that the top-level component will call $router.push()
With this approach you have complete control over any navigation.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With