mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 21:26:42 +01:00
120 lines
2.9 KiB
JavaScript
Vendored
120 lines
2.9 KiB
JavaScript
Vendored
import { defineStore } from 'pinia'
|
|
import authService from '@/services/authService'
|
|
import router from '@/router'
|
|
import { useColorMode } from '@vueuse/core'
|
|
import { useTwofaccounts } from '@/stores/twofaccounts'
|
|
import { useGroups } from '@/stores/groups'
|
|
|
|
export const useUserStore = defineStore({
|
|
id: 'user',
|
|
|
|
state: () => {
|
|
return {
|
|
name: undefined,
|
|
email: undefined,
|
|
preferences: window.defaultPreferences,
|
|
isAdmin: false,
|
|
}
|
|
},
|
|
|
|
getters: {
|
|
isAuthenticated() {
|
|
return this.name != undefined
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
/**
|
|
* Initializes the store for the given user
|
|
*
|
|
* @param {object} user
|
|
*/
|
|
loginAs(user) {
|
|
this.$patch(user)
|
|
this.initDataStores()
|
|
this.applyUserPrefs()
|
|
},
|
|
|
|
/**
|
|
* Initializes the user's data stores
|
|
*/
|
|
initDataStores() {
|
|
const accounts = useTwofaccounts()
|
|
const groups = useGroups()
|
|
|
|
if (this.isAuthenticated) {
|
|
accounts.fetch()
|
|
groups.fetch()
|
|
}
|
|
else {
|
|
accounts.$reset()
|
|
groups.$reset()
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Logs the user out or moves to proxy logout url
|
|
*/
|
|
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(() => {
|
|
this.reset()
|
|
})
|
|
|
|
// this.$router.push({ name: 'login', params: { forceRefresh: true } })
|
|
}
|
|
// },
|
|
},
|
|
|
|
/**
|
|
* Resets all user data
|
|
*/
|
|
reset() {
|
|
this.$reset()
|
|
this.initDataStores()
|
|
this.applyUserPrefs()
|
|
router.push({ name: 'login' })
|
|
},
|
|
|
|
/**
|
|
* Applies user theme
|
|
*/
|
|
applyTheme() {
|
|
const mode = useColorMode({
|
|
attribute: 'data-theme',
|
|
})
|
|
mode.value = this.preferences.theme == 'system' ? 'auto' : this.preferences.theme
|
|
},
|
|
|
|
|
|
/**
|
|
* Applies user language
|
|
*/
|
|
applyLanguage() {
|
|
const { isSupported, language } = useNavigatorLanguage()
|
|
|
|
if (isSupported) {
|
|
loadLanguageAsync(this.preferences.lang == 'browser' ? language.value.slice(0, 2) : this.preferences.lang)
|
|
}
|
|
else loadLanguageAsync('en')
|
|
},
|
|
|
|
|
|
/**
|
|
* Applies both user theme & language
|
|
*/
|
|
applyUserPrefs() {
|
|
this.applyTheme()
|
|
this.applyLanguage()
|
|
}
|
|
|
|
},
|
|
})
|