Files
watchstate/frontend/pages/ignore.vue
2024-05-31 17:58:13 +03:00

432 lines
15 KiB
Vue

<template>
<div class="columns is-multiline">
<div class="column is-12 is-clearfix">
<span id="env_page_title" class="title is-4">Ignored GUIDs</span>
<div class="is-pulled-right">
<div class="field is-grouped">
<p class="control">
<button class="button is-primary" v-tooltip="'Add New Ignore'" @click="toggleForm = !toggleForm">
<span class="icon">
<i class="fas fa-add"></i>
</span>
</button>
</p>
<p class="control">
<button class="button is-info" @click="loadContent">
<span class="icon">
<i class="fas fa-sync"></i>
</span>
</button>
</p>
</div>
</div>
<div class="is-hidden-mobile">
<span class="subtitle">
This page allow you to ignore specific <code>GUID</code> from being processed by the system.
</span>
</div>
</div>
<div class="column is-12" v-if="toggleForm">
<form id="page_form" @submit.prevent="addIgnoreRule">
<div class="card">
<header class="card-header">
<p class="card-header-title is-unselectable is-justify-center">Add Ignore rule</p>
</header>
<div class="card-content">
<div class="field">
<label class="label is-unselectable" for="form_select_backend">Backend</label>
<div class="control has-icons-left">
<div class="select is-fullwidth">
<select id="form_select_backend" v-model="form.backend">
<option value="" disabled>Select Backend</option>
<option v-for="backend in backends" :key="backend.name" :value="backend.name">
{{ backend.name }}
</option>
</select>
</div>
<div class="icon is-left">
<i class="fas fa-server"></i>
</div>
</div>
<p class="help">
<span class="icon-text">
<span class="icon"><i class="fas fa-info"></i></span>
<span>Ignore rules applies to backends, you must select the correct backend you want to ignore the
GUID from</span>
</span>
</p>
</div>
<div class="field">
<label class="label is-unselectable" for="form_select_guid">Provider</label>
<div class="control has-icons-left">
<div class="select is-fullwidth">
<select id="form_select_guid" v-model="form.db">
<option value="" disabled>Select GUID provider</option>
<option v-for="guid in guids" :key="guid.guid" :value="guid.guid">
{{ guid.guid }}
</option>
</select>
</div>
<div class="icon is-left">
<i class="fas fa-database"></i>
</div>
</div>
<p class="help">
<span class="icon"><i class="fas fa-info"></i></span>
<span>You must select the GUID provider that giving you incorrect data.</span>
</p>
</div>
<div class="field">
<label class="label is-unselectable" for="form_ignore_id">GUID Value</label>
<div class="control has-icons-left">
<input class="input" id="form_ignore_id" type="text" v-model="form.id">
<div class="icon is-small is-left"><i class="fas fa-font"></i></div>
</div>
<p class="help">
<span class="icon-text">
<span class="icon"><i class="fas fa-info"></i></span>
<span>The GUID value to ignore.</span>
</span>
</p>
</div>
<div class="field">
<label class="label is-unselectable">Type</label>
<div class="control has-icons-left">
<div class="select is-fullwidth">
<select id="form_select_backend" v-model="form.type" class="is-capitalized">
<option value="" disabled>Select type</option>
<option v-for="type in types" :key="type" :value="type">
{{ type }}
</option>
</select>
</div>
<div class="icon is-left">
<i class="fas fa-server"></i>
</div>
</div>
<p class="help">
<span class="icon"><i class="fas fa-info"></i></span>
<span>What kind of data the <code>GUID value</code> reference?</span>
</p>
</div>
<div class="field">
<label class="label is-unselectable" for="form_scoped">Scope</label>
<div class="control has-icons-left">
<input id="form_scoped" type="checkbox" class="switch is-success" v-model="form.scoped">
<label for="form_scoped">
<template v-if="form.scoped">On (True)</template>
<template v-else>Off (False)</template>
</label>
</div>
<p class="help">
<span class="icon"><i class="fas fa-exclamation"></i></span>
<span>By default, Rules are globally applied to all items from the selected backend, you can limit the
scope, by enabling this option.
</span>
</p>
</div>
<div class="field" v-if="form.scoped">
<label class="label is-unselectable" for="form_scoped_to">Scoped To</label>
<div class="control has-icons-left">
<input class="input" id="form_scoped_to" type="text" v-model="form.scoped_to">
<div class="icon is-small is-left"><i class="fas fa-font"></i></div>
<p class="help">
<span class="icon"><i class="fas fa-info"></i></span>
<span>The id to associate this rule with. The value must be the <code>{{ form.type }}</code> id as
being reported by the backend.</span>
</p>
</div>
</div>
</div>
<div class="card-footer">
<div class="card-footer-item">
<button class="button is-fullwidth is-primary" type="submit" :disabled="false === checkForm">
<span class="icon-text">
<span class="icon"><i class="fas fa-save"></i></span>
<span>Save</span>
</span>
</button>
</div>
<div class="card-footer-item">
<button class="button is-fullwidth is-danger" type="button" @click="cancelForm">
<span class="icon-text">
<span class="icon"><i class="fas fa-cancel"></i></span>
<span>Cancel</span>
</span>
</button>
</div>
</div>
</div>
</form>
</div>
<div class="column is-12" v-if="items">
<div class="columns is-multiline">
<div class="column is-6" v-for="item in items" :key="item.rule">
<div class="card">
<header class="card-header">
<p class="card-header-title is-unselectable is-text-overflow">
<template v-if="item.title">{{ item.title }}</template>
<template v-else>
{{ item.scoped ? 'Unknown title' : '**Global**' }}
</template>
</p>
<span class="card-header-icon">
<span class="icon">
<i class="fas" :class="{'fa-tv':'Show'===item.type,'fa-film': 'Movie' === item.type}"></i>
</span>
</span>
</header>
<div class="card-content">
<div class="columns is-multiline is-mobile">
<div class="column is-6">
<span class="icon-text">
<span class="icon"><i class="fas fa-server"></i></span>
{{ item.backend }}
</span>
</div>
<div class="column is-6 has-text-right">
<strong>Scope:&nbsp;</strong>
<NuxtLink :to="makeItemLink(item)" v-text="item.scoped_to" v-if="item.scoped_to"/>
<template v-else>Global</template>
</div>
<div class="column is-6">
<span class="icon-text">
<span class="icon"><i class="fas fa-database"></i></span>
<span>{{ item.db }}://{{ item.id }}</span>
</span>
</div>
<div class="column is-6 has-text-right">
<span class="icon-text">
<span class="icon"><i class="fas fa-calendar"></i></span>
<span>{{ moment(item.created).fromNow() }}</span>
</span>
</div>
</div>
</div>
<footer class="card-footer">
<div class="card-footer-item">
<button class="button is-fullwidth is-warning" @click="copyText(item.rule)">
<span class="icon-text">
<span class="icon"><i class="fas fa-copy"></i></span>
<span>Copy</span>
</span>
</button>
</div>
<div class="card-footer-item">
<button class="button is-fullwidth is-danger" @click="deleteIgnore(item)">
<span class="icon-text">
<span class="icon"><i class="fas fa-trash"></i></span>
<span>Delete</span>
</span>
</button>
</div>
</footer>
</div>
</div>
</div>
</div>
<div class="column is-12" v-if="items.length < 1">
<Message message_class="is-info" title="Loading..." v-if="isLoading">
<span class="icon-text">
<span class="icon"><i class="fas fa-spinner fa-spin"></i></span>
<span>Request ignore list. Please wait...</span>
</span>
</Message>
<Message message_class="has-background-success-90 has-text-dark" title="Information" v-else>
<span class="icon-text">
<span class="icon"><i class="fas fa-check"></i></span>
<span>
There are no ignore rules currently set. You can add new ignore rules by clicking on the <i
class="fas fa-add"></i> button.
</span>
</span>
</Message>
</div>
<div class="column is-12" v-if="show_page_tips">
<Message title="Tips" message_class="has-background-info-90 has-text-dark">
<button class="delete" @click="show_page_tips=false"></button>
<div class="content">
<ul>
<li>Ignoring specific GUID sometimes helps in preventing incorrect data being added to WatchState, due to
incorrect metadata being provided by backends.
</li>
<li>
<code>GUID</code> means in terms of WatchState is the unique identifier for a specific item in the
external data source.
</li>
<li>To add a new ignore rule click on the <i class="fa fa-add"></i> button.</li>
</ul>
</div>
</Message>
</div>
</div>
</template>
<script setup>
import request from '~/utils/request.js'
import {awaitElement, copyText, notification, stringToRegex} from '~/utils/index.js'
import {useStorage} from '@vueuse/core'
import moment from 'moment'
import 'assets/css/bulma-switch.css'
useHead({title: 'Ignored GUIDs'})
const types = ['show', 'movie', 'episode']
const empty_form = {id: '', type: '', backend: '', db: '', scoped: false, scoped_to: null}
const items = ref([])
const toggleForm = ref(false)
const form = ref(JSON.parse(JSON.stringify(empty_form)))
const show_page_tips = useStorage('show_page_tips', true)
const isLoading = ref(false)
const guids = ref([])
const backends = ref([])
const loadContent = async () => {
isLoading.value = true
items.value = []
if (!guids.value.length) {
const guid_response = await request('/system/guids')
guids.value = await guid_response.json()
}
if (!backends.value.length) {
const backends_response = await request('/backends')
backends.value = await backends_response.json()
}
let response, json;
try {
response = await request(`/ignore`)
} catch (e) {
isLoading.value = false
return notification('error', 'Error', e.message)
}
try {
json = await response.json()
} catch (e) {
json = {
error: {
code: response.status,
message: response.statusText
}
}
}
isLoading.value = false
if (!response.ok) {
notification('error', 'Error', `${json.error.code}: ${json.error.message}`)
return
}
items.value = json
}
onMounted(() => loadContent())
const deleteIgnore = async (item) => {
if (!confirm(`Are you sure you want to delete the ignore rule?`)) {
return
}
const response = await request(`/ignore`, {
method: 'DELETE',
body: JSON.stringify({
rule: item.rule
})
})
if (response.ok) {
items.value = items.value.filter(i => i.rule !== item.rule)
notification('success', 'Success', `Environment variable '${item.rule}' successfully deleted.`, 5000)
}
}
const makeItemLink = (item) => {
if (!item?.scoped_to) {
return ''
}
const type = item.type === 'Show' ? 'show' : 'id'
const params = new URLSearchParams();
params.append('perpage', '50')
params.append('page', '1')
params.append('q', `${item.backend}.${type}://${item.scoped_to}`)
params.append('key', 'metadata')
return `/history?${params.toString()}`
}
const addIgnoreRule = async () => {
const val = guids.value.find(g => g.guid === form.value.db)
if (val && val?.validator && val.validator.pattern) {
if (!stringToRegex(val.validator.pattern).test(form.value.id)) {
notification('error', 'Error', `Invalid GUID value, must match the pattern: '${val.validator.pattern}'. Example ${val.validator.example}`, 5000)
return
}
}
try {
const response = await request(`/ignore`, {
method: 'POST',
body: JSON.stringify(form.value)
})
const json = await response.json()
if (!response.ok) {
notification('error', 'Error', `${json.error.code}: ${json.error.message}`, 5000)
return
}
items.value.push(json)
notification('success', 'Success', 'Successfully added new ignore rule.', 5000)
} catch (e) {
notification('error', 'Error', `Request error. ${e.message}`, 5000)
return
}
return cancelForm();
}
const cancelForm = () => {
form.value = JSON.parse(JSON.stringify(empty_form))
toggleForm.value = false
}
watch(toggleForm, (value) => {
if (!value) {
cancelForm()
return;
}
awaitElement('#page_form', (_, el) => el.scrollIntoView({
behavior: 'smooth',
block: 'start',
inline: 'nearest'
}))
});
const checkForm = computed(() => {
const {id, type, backend, db} = form.value
return '' !== id && '' !== type && '' !== backend && '' !== db
})
</script>