ffplayout/frontend/stores/config.ts
2024-10-24 14:05:15 +02:00

224 lines
7.1 KiB
TypeScript

import { cloneDeep } from 'lodash-es'
import { defineStore } from 'pinia'
import type { AdvancedConfig } from '~/types/advanced_config'
export const useConfig = defineStore('config', {
state: () => ({
i: 0,
configCount: 0,
contentType: { 'content-type': 'application/json;charset=UTF-8' },
channels: [] as Channel[],
channelsRaw: [] as Channel[],
playlistLength: 86400.0,
advanced: {} as AdvancedConfig,
playout: {} as PlayoutConfigExt,
currentUser: 0,
configUser: {} as User,
utcOffset: 0,
onetimeInfo: true,
showPlayer: true,
}),
getters: {},
actions: {
async configInit() {
const authStore = useAuth()
authStore.inspectToken()
if (authStore.isLogin) {
await authStore.obtainUuid()
await this.getChannelConfig().then(async () => {
await this.getPlayoutConfig()
await this.getUserConfig()
if (authStore.role === 'GlobalAdmin') {
await this.getAdvancedConfig()
}
})
}
},
logout() {
const authStore = useAuth()
const cookie = useCookie('token')
cookie.value = null
authStore.isLogin = false
navigateTo('/')
},
async getChannelConfig() {
const authStore = useAuth()
const indexStore = useIndex()
let statusCode = 0
await fetch('/api/channels', {
method: 'GET',
headers: authStore.authHeader,
})
.then((response) => {
statusCode = response.status
return response
})
.then((response) => response.json())
.then((objs) => {
if (!objs[0]) {
this.logout()
throw new Error('User not found')
}
this.utcOffset = objs[0].utc_offset
this.channels = objs
this.channelsRaw = cloneDeep(objs)
this.configCount = objs.length
})
.catch((e) => {
if (statusCode === 401) {
this.logout()
}
this.channels = [
{
id: 1,
extra_extensions: '',
name: 'Channel 1',
preview_url: '',
public: '',
playlists: '',
storage: '',
uts_offset: 0,
},
]
indexStore.msgAlert('error', e, 3)
})
},
async getPlayoutConfig() {
const { $i18n } = useNuxtApp()
const { timeToSeconds } = stringFormatter()
const authStore = useAuth()
const indexStore = useIndex()
const channel = this.channels[this.i].id
await fetch(`/api/playout/config/${channel}`, {
method: 'GET',
headers: authStore.authHeader,
})
.then((response) => response.json())
.then((data) => {
data.playlist.startInSec = timeToSeconds(data.playlist.day_start ?? 0)
data.playlist.lengthInSec = timeToSeconds(data.playlist.length ?? this.playlistLength)
if (data.storage.extensions) {
data.storage.extensions = data.storage.extensions.join(',')
}
this.playout = data
})
.catch(() => {
indexStore.msgAlert('error', $i18n.t('config.noPlayoutConfig'), 3)
})
},
async getAdvancedConfig() {
const { $i18n } = useNuxtApp()
const authStore = useAuth()
const indexStore = useIndex()
const channel = this.channels[this.i].id
await $fetch(`/api/playout/advanced/${channel}`, {
method: 'GET',
headers: authStore.authHeader,
})
.then((data) => {
this.advanced = data
})
.catch(() => {
indexStore.msgAlert('error', $i18n.t('config.noAdvancedConfig'), 3)
})
},
async setPlayoutConfig(obj: any) {
const { timeToSeconds } = stringFormatter()
const authStore = useAuth()
const channel = this.channels[this.i].id
this.playlistLength = timeToSeconds(obj.playlist.length)
this.playout.playlist.startInSec = timeToSeconds(obj.playlist.day_start)
this.playout.playlist.lengthInSec = timeToSeconds(obj.playlist.length)
if (typeof obj.storage.extensions === 'string') {
obj.storage.extensions = obj.storage.extensions.replace(' ', '').split(/,|;/)
}
const update = await fetch(`/api/playout/config/${channel}`, {
method: 'PUT',
headers: { ...this.contentType, ...authStore.authHeader },
body: JSON.stringify(obj),
})
return update
},
async setAdvancedConfig() {
const authStore = useAuth()
const channel = this.channels[this.i].id
const update = await fetch(`/api/playout/advanced/${channel}`, {
method: 'PUT',
headers: { ...this.contentType, ...authStore.authHeader },
body: JSON.stringify(this.advanced),
})
return update
},
async getUserConfig() {
const authStore = useAuth()
await fetch('/api/user', {
method: 'GET',
headers: authStore.authHeader,
})
.then((response) => response.json())
.then((data) => {
if (data.id === 0) {
this.logout()
throw new Error('User not found')
}
this.currentUser = data.id
this.configUser = data
})
},
async setUserConfig(obj: any) {
const authStore = useAuth()
const update = await fetch(`/api/user/${obj.id}`, {
method: 'PUT',
headers: { ...this.contentType, ...authStore.authHeader },
body: JSON.stringify(obj),
})
return update
},
async addNewUser(user: User) {
const authStore = useAuth()
delete user.confirm
const update = await fetch('/api/user/', {
method: 'Post',
headers: { ...this.contentType, ...authStore.authHeader },
body: JSON.stringify(user),
})
return update
},
},
})