mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-04 14:22:00 +01:00
26 lines
749 B
JavaScript
Vendored
26 lines
749 B
JavaScript
Vendored
import authService from '@/services/authService'
|
|
|
|
export default async function auth({ to, next, stores }) {
|
|
const { user } = stores
|
|
|
|
// No authenticated user on the front-end side, we try to
|
|
// get an active user from the back-end side
|
|
if (! user.isAuthenticated) {
|
|
const currentUser = await authService.getCurrentUser()
|
|
if (currentUser) {
|
|
user.$patch({
|
|
name: currentUser.name,
|
|
email: currentUser.email,
|
|
preferences: currentUser.preferences,
|
|
isAdmin: currentUser.is_admin,
|
|
})
|
|
user.applyUserPrefs()
|
|
}
|
|
}
|
|
|
|
if (! user.isAuthenticated) {
|
|
next({ name: 'login' })
|
|
} else {
|
|
next()
|
|
}
|
|
} |