2023-09-22 15:07:47 +02:00
|
|
|
import { defineStore } from 'pinia'
|
2023-09-27 10:44:54 +02:00
|
|
|
import authService from '@/services/authService'
|
|
|
|
import router from '@/router'
|
2023-10-04 09:30:05 +02:00
|
|
|
import { useColorMode } from '@vueuse/core'
|
2023-10-27 15:42:58 +02:00
|
|
|
import { useTwofaccounts } from '@/stores/twofaccounts'
|
|
|
|
import { useGroups } from '@/stores/groups'
|
2023-09-22 15:07:47 +02:00
|
|
|
|
|
|
|
export const useUserStore = defineStore({
|
2023-09-27 10:44:54 +02:00
|
|
|
id: 'user',
|
2023-09-22 15:07:47 +02:00
|
|
|
|
2023-09-27 10:44:54 +02:00
|
|
|
state: () => {
|
2023-09-22 15:07:47 +02:00
|
|
|
return {
|
2023-09-27 10:44:54 +02:00
|
|
|
name: undefined,
|
2023-10-05 16:59:53 +02:00
|
|
|
email: undefined,
|
2023-09-27 10:44:54 +02:00
|
|
|
preferences: window.defaultPreferences,
|
2023-09-22 15:07:47 +02:00
|
|
|
isAdmin: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2023-09-27 10:44:54 +02:00
|
|
|
getters: {
|
|
|
|
isAuthenticated() {
|
|
|
|
return this.name != undefined
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
2023-10-27 15:42:58 +02:00
|
|
|
/**
|
|
|
|
* Initializes the store for the given user
|
|
|
|
*
|
|
|
|
* @param {object} user
|
|
|
|
*/
|
2023-11-02 08:13:31 +01:00
|
|
|
async loginAs(user) {
|
2023-10-27 15:42:58 +02:00
|
|
|
this.$patch(user)
|
2023-11-02 08:13:31 +01:00
|
|
|
await this.initDataStores()
|
2023-10-27 15:42:58 +02:00
|
|
|
this.applyUserPrefs()
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the user's data stores
|
|
|
|
*/
|
2023-11-02 08:13:31 +01:00
|
|
|
async initDataStores() {
|
2023-10-27 15:42:58 +02:00
|
|
|
const accounts = useTwofaccounts()
|
|
|
|
const groups = useGroups()
|
|
|
|
|
|
|
|
if (this.isAuthenticated) {
|
2023-11-02 08:13:31 +01:00
|
|
|
await accounts.fetch()
|
|
|
|
await groups.fetch()
|
2023-10-27 15:42:58 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
accounts.$reset()
|
|
|
|
groups.$reset()
|
|
|
|
}
|
|
|
|
},
|
2023-09-27 10:44:54 +02:00
|
|
|
|
2023-10-27 15:42:58 +02:00
|
|
|
/**
|
|
|
|
* Logs the user out or moves to proxy logout url
|
|
|
|
*/
|
2023-09-27 10:44:54 +02:00
|
|
|
logout() {
|
|
|
|
// async appLogout(evt) {
|
|
|
|
if (this.$2fauth.config.proxyAuth) {
|
|
|
|
if (this.$2fauth.config.proxyLogoutUrl) {
|
|
|
|
location.assign(this.$2fauth.config.proxyLogoutUrl)
|
|
|
|
}
|
|
|
|
else return false
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return authService.logout().then(() => {
|
2023-09-28 13:23:58 +02:00
|
|
|
this.reset()
|
2023-09-27 10:44:54 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// this.$router.push({ name: 'login', params: { forceRefresh: true } })
|
|
|
|
}
|
|
|
|
// },
|
2023-09-28 13:23:58 +02:00
|
|
|
},
|
|
|
|
|
2023-10-27 15:42:58 +02:00
|
|
|
/**
|
|
|
|
* Resets all user data
|
|
|
|
*/
|
2023-09-28 13:23:58 +02:00
|
|
|
reset() {
|
|
|
|
this.$reset()
|
2023-10-27 15:42:58 +02:00
|
|
|
this.initDataStores()
|
2023-10-04 09:30:05 +02:00
|
|
|
this.applyUserPrefs()
|
2023-09-28 13:23:58 +02:00
|
|
|
router.push({ name: 'login' })
|
2023-10-04 09:30:05 +02:00
|
|
|
},
|
|
|
|
|
2023-10-27 15:42:58 +02:00
|
|
|
/**
|
|
|
|
* Applies user theme
|
|
|
|
*/
|
2023-10-04 09:30:05 +02:00
|
|
|
applyTheme() {
|
|
|
|
const mode = useColorMode({
|
|
|
|
attribute: 'data-theme',
|
|
|
|
})
|
|
|
|
mode.value = this.preferences.theme == 'system' ? 'auto' : this.preferences.theme
|
|
|
|
},
|
|
|
|
|
2023-10-27 15:42:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies user language
|
|
|
|
*/
|
2023-10-04 09:30:05 +02:00
|
|
|
applyLanguage() {
|
|
|
|
const { isSupported, language } = useNavigatorLanguage()
|
|
|
|
|
|
|
|
if (isSupported) {
|
|
|
|
loadLanguageAsync(this.preferences.lang == 'browser' ? language.value.slice(0, 2) : this.preferences.lang)
|
|
|
|
}
|
|
|
|
else loadLanguageAsync('en')
|
|
|
|
},
|
|
|
|
|
2023-10-27 15:42:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies both user theme & language
|
|
|
|
*/
|
2023-10-04 09:30:05 +02:00
|
|
|
applyUserPrefs() {
|
|
|
|
this.applyTheme()
|
|
|
|
this.applyLanguage()
|
2023-09-27 10:44:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
2023-09-22 15:07:47 +02:00
|
|
|
})
|