2020-10-11 12:13:35 +02:00
|
|
|
import {HTTPFactory} from '@/http-common'
|
2020-09-05 22:35:52 +02:00
|
|
|
import {ERROR_MESSAGE, LOADING} from '../mutation-types'
|
|
|
|
import UserModel from '../../models/user'
|
2020-05-08 20:43:51 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state: () => ({
|
|
|
|
authenticated: false,
|
|
|
|
isLinkShareAuth: false,
|
2021-04-07 15:58:29 +02:00
|
|
|
info: null,
|
2020-05-08 20:43:51 +02:00
|
|
|
needsTotpPasscode: false,
|
2020-08-02 19:17:29 +02:00
|
|
|
avatarUrl: '',
|
2021-04-07 15:58:29 +02:00
|
|
|
lastUserInfoRefresh: null,
|
2021-04-07 21:31:14 +02:00
|
|
|
settings: {},
|
2020-05-08 20:43:51 +02:00
|
|
|
}),
|
|
|
|
mutations: {
|
|
|
|
info(state, info) {
|
|
|
|
state.info = info
|
2021-04-07 15:58:29 +02:00
|
|
|
if (info !== null) {
|
|
|
|
state.avatarUrl = info.getAvatarUrl()
|
|
|
|
}
|
2021-04-07 21:31:14 +02:00
|
|
|
if (info.settings) {
|
|
|
|
state.settings = info.settings
|
|
|
|
}
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
2021-04-07 21:31:14 +02:00
|
|
|
setUserSettings(state, settings) {
|
|
|
|
state.settings = settings
|
|
|
|
const info = state.info !== null ? state.info : {}
|
|
|
|
info.name = settings.name
|
|
|
|
state.info = info
|
2020-11-21 22:25:00 +01:00
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
authenticated(state, authenticated) {
|
|
|
|
state.authenticated = authenticated
|
|
|
|
},
|
|
|
|
isLinkShareAuth(state, is) {
|
|
|
|
state.isLinkShareAuth = is
|
|
|
|
},
|
|
|
|
needsTotpPasscode(state, needs) {
|
|
|
|
state.needsTotpPasscode = needs
|
|
|
|
},
|
2020-08-02 19:17:29 +02:00
|
|
|
reloadAvatar(state) {
|
|
|
|
state.avatarUrl = `${state.info.getAvatarUrl()}&=${+new Date()}`
|
|
|
|
},
|
2021-04-07 15:58:29 +02:00
|
|
|
lastUserRefresh(state) {
|
|
|
|
state.lastUserInfoRefresh = new Date()
|
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
// Logs a user in with a set of credentials.
|
|
|
|
login(ctx, credentials) {
|
2020-10-11 12:13:35 +02:00
|
|
|
const HTTP = HTTPFactory()
|
2020-05-08 20:43:51 +02:00
|
|
|
ctx.commit(LOADING, true, {root: true})
|
|
|
|
|
|
|
|
// Delete an eventually preexisting old token
|
|
|
|
localStorage.removeItem('token')
|
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
const data = {
|
2020-05-08 20:43:51 +02:00
|
|
|
username: credentials.username,
|
2020-09-05 22:35:52 +02:00
|
|
|
password: credentials.password,
|
2020-05-08 20:43:51 +02:00
|
|
|
}
|
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
if (credentials.totpPasscode) {
|
2020-05-08 20:43:51 +02:00
|
|
|
data.totp_passcode = credentials.totpPasscode
|
|
|
|
}
|
|
|
|
|
|
|
|
return HTTP.post('login', data)
|
|
|
|
.then(response => {
|
|
|
|
// Save the token to local storage for later use
|
|
|
|
localStorage.setItem('token', response.data.token)
|
|
|
|
|
|
|
|
// Tell others the user is autheticated
|
|
|
|
ctx.commit('isLinkShareAuth', false)
|
2021-04-07 15:58:29 +02:00
|
|
|
console.log('login')
|
2020-05-08 20:43:51 +02:00
|
|
|
ctx.dispatch('checkAuth')
|
|
|
|
return Promise.resolve()
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
if (e.response) {
|
|
|
|
if (e.response.data.code === 1017 && !credentials.totpPasscode) {
|
|
|
|
ctx.commit('needsTotpPasscode', true)
|
|
|
|
return Promise.reject()
|
|
|
|
}
|
|
|
|
|
|
|
|
let errorMsg = e.response.data.message
|
|
|
|
if (e.response.status === 401) {
|
|
|
|
errorMsg = 'Wrong username or password.'
|
|
|
|
}
|
|
|
|
ctx.commit(ERROR_MESSAGE, errorMsg, {root: true})
|
|
|
|
}
|
|
|
|
return Promise.reject()
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
ctx.commit(LOADING, false, {root: true})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// Registers a new user and logs them in.
|
|
|
|
// Not sure if this is the right place to put the logic in, maybe a seperate js component would be better suited.
|
|
|
|
register(ctx, credentials) {
|
2020-10-11 12:13:35 +02:00
|
|
|
const HTTP = HTTPFactory()
|
2020-06-21 20:54:57 +02:00
|
|
|
return HTTP.post('register', {
|
2020-05-08 20:43:51 +02:00
|
|
|
username: credentials.username,
|
|
|
|
email: credentials.email,
|
2020-09-05 22:35:52 +02:00
|
|
|
password: credentials.password,
|
2020-05-08 20:43:51 +02:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
return ctx.dispatch('login', credentials)
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
if (e.response) {
|
|
|
|
ctx.commit(ERROR_MESSAGE, e.response.data.message, {root: true})
|
|
|
|
}
|
|
|
|
return Promise.reject()
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
ctx.commit(LOADING, false, {root: true})
|
|
|
|
})
|
|
|
|
},
|
2020-11-21 17:38:40 +01:00
|
|
|
openIdAuth(ctx, {provider, code}) {
|
|
|
|
const HTTP = HTTPFactory()
|
|
|
|
ctx.commit(LOADING, true, {root: true})
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
code: code,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete an eventually preexisting old token
|
|
|
|
localStorage.removeItem('token')
|
|
|
|
return HTTP.post(`/auth/openid/${provider}/callback`, data)
|
|
|
|
.then(response => {
|
|
|
|
// Save the token to local storage for later use
|
|
|
|
localStorage.setItem('token', response.data.token)
|
|
|
|
|
|
|
|
// Tell others the user is autheticated
|
|
|
|
ctx.commit('isLinkShareAuth', false)
|
|
|
|
ctx.dispatch('checkAuth')
|
|
|
|
return Promise.resolve()
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
if (e.response) {
|
|
|
|
let errorMsg = e.response.data.message
|
|
|
|
if (e.response.status === 401) {
|
|
|
|
errorMsg = 'Wrong username or password.'
|
|
|
|
}
|
|
|
|
ctx.commit(ERROR_MESSAGE, errorMsg, {root: true})
|
|
|
|
}
|
|
|
|
return Promise.reject()
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
ctx.commit(LOADING, false, {root: true})
|
|
|
|
})
|
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
|
|
|
|
linkShareAuth(ctx, hash) {
|
2020-10-11 12:13:35 +02:00
|
|
|
const HTTP = HTTPFactory()
|
2020-05-08 20:43:51 +02:00
|
|
|
return HTTP.post('/shares/' + hash + '/auth')
|
|
|
|
.then(r => {
|
|
|
|
localStorage.setItem('token', r.data.token)
|
|
|
|
ctx.dispatch('checkAuth')
|
|
|
|
return Promise.resolve(r.data)
|
|
|
|
}).catch(e => {
|
|
|
|
return Promise.reject(e)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// Populates user information from jwt token saved in local storage in store
|
|
|
|
checkAuth(ctx) {
|
2021-04-07 15:58:29 +02:00
|
|
|
|
|
|
|
// This function can be called from multiple places at the same time and shortly after one another.
|
|
|
|
// To prevent hitting the api too frequently or race conditions, we check at most once per minute.
|
|
|
|
if (ctx.state.lastUserInfoRefresh !== null && ctx.state.lastUserInfoRefresh > (new Date()).setMinutes((new Date()).getMinutes() + 1)) {
|
|
|
|
return Promise.resolve()
|
|
|
|
}
|
|
|
|
|
2020-05-08 20:43:51 +02:00
|
|
|
const jwt = localStorage.getItem('token')
|
|
|
|
let authenticated = false
|
|
|
|
if (jwt) {
|
|
|
|
const base64 = jwt
|
|
|
|
.split('.')[1]
|
|
|
|
.replace('-', '+')
|
|
|
|
.replace('_', '/')
|
|
|
|
const info = new UserModel(JSON.parse(window.atob(base64)))
|
|
|
|
const ts = Math.round((new Date()).getTime() / 1000)
|
2021-04-07 15:58:29 +02:00
|
|
|
authenticated = info.exp >= ts
|
2020-05-08 20:43:51 +02:00
|
|
|
ctx.commit('info', info)
|
2021-04-07 15:58:29 +02:00
|
|
|
|
2021-04-07 21:31:14 +02:00
|
|
|
if (authenticated) {
|
2021-04-07 15:58:29 +02:00
|
|
|
const HTTP = HTTPFactory()
|
|
|
|
// We're not returning the promise here to prevent blocking the initial ui render if the user is
|
|
|
|
// accessing the site with a token in local storage
|
|
|
|
HTTP.get('user', {
|
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${jwt}`,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.then(r => {
|
|
|
|
const info = new UserModel(r.data)
|
|
|
|
info.type = ctx.state.info.type
|
|
|
|
info.email = ctx.state.info.email
|
|
|
|
info.exp = ctx.state.info.exp
|
|
|
|
|
|
|
|
ctx.commit('info', info)
|
|
|
|
ctx.commit('authenticated', authenticated)
|
|
|
|
ctx.commit('lastUserRefresh')
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
console.error('Error while refreshing user info:', e)
|
|
|
|
})
|
|
|
|
}
|
2020-05-08 20:43:51 +02:00
|
|
|
}
|
2021-04-07 15:58:29 +02:00
|
|
|
|
2020-05-08 20:43:51 +02:00
|
|
|
ctx.commit('authenticated', authenticated)
|
2021-04-07 15:58:29 +02:00
|
|
|
if (!authenticated) {
|
|
|
|
ctx.commit('info', null)
|
|
|
|
}
|
|
|
|
|
2020-05-16 12:02:30 +02:00
|
|
|
return Promise.resolve()
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
|
|
|
// Renews the api token and saves it to local storage
|
|
|
|
renewToken(ctx) {
|
2020-10-11 12:13:35 +02:00
|
|
|
const HTTP = HTTPFactory()
|
2020-05-08 20:43:51 +02:00
|
|
|
if (!ctx.state.authenticated) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
HTTP.post('user/token', null, {
|
|
|
|
headers: {
|
|
|
|
Authorization: 'Bearer ' + localStorage.getItem('token'),
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
})
|
|
|
|
.then(r => {
|
|
|
|
localStorage.setItem('token', r.data.token)
|
|
|
|
ctx.dispatch('checkAuth')
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
console.log('Error renewing token: ', e)
|
2020-12-24 01:43:52 +01:00
|
|
|
|
|
|
|
// Don't logout on network errors as the user would then get logged out if they don't have
|
|
|
|
// internet for a short period of time - such as when the laptop is still reconnecting
|
|
|
|
if (e.request.status) {
|
|
|
|
ctx.dispatch('logout')
|
|
|
|
}
|
2020-05-08 20:43:51 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
logout(ctx) {
|
|
|
|
localStorage.removeItem('token')
|
|
|
|
ctx.dispatch('checkAuth')
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
|
|
|
}
|