1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-05 21:55:24 +00:00
bramw_baserow/web-frontend/modules/core/utils/auth.js
2022-12-12 09:09:32 +00:00

55 lines
1.4 KiB
JavaScript

import { isSecureURL } from '@baserow/modules/core/utils/string'
import jwtDecode from 'jwt-decode'
const cookieTokenName = 'jwt_token'
export const setToken = ({ $cookies, $env }, token, key = cookieTokenName) => {
if (process.SERVER_BUILD) return
const secure = isSecureURL($env.PUBLIC_WEB_FRONTEND_URL)
$cookies.set(key, token, {
path: '/',
maxAge: 60 * 60 * 24 * 7,
sameSite: 'lax',
secure,
})
}
export const unsetToken = ({ $cookies }, key = cookieTokenName) => {
if (process.SERVER_BUILD) return
$cookies.remove(key)
}
export const getToken = ({ $cookies }, key = cookieTokenName) => {
return $cookies.get(key)
}
export const getTokenIfEnoughTimeLeft = (
{ $cookies },
key = cookieTokenName
) => {
const token = getToken({ $cookies }, key)
const now = Math.ceil(new Date().getTime() / 1000)
let data
try {
data = jwtDecode(token)
} catch (error) {
return null
}
// Return the token if it is still valid for more of the 10% of the lifespan.
return data && (data.exp - now) / (data.exp - data.iat) > 0.1 ? token : null
}
export const logoutAndRedirectToLogin = (
router,
store,
showSessionExpiredNotification = false
) => {
store.dispatch('auth/logoff')
router.push({ name: 'login', query: { noredirect: null } }, () => {
if (showSessionExpiredNotification) {
store.dispatch('notification/setUserSessionExpired', true)
}
store.dispatch('auth/clearAllStoreUserData')
})
}