Sharkey/packages/client/src/pages/admin/security.vue

91 lines
2.4 KiB
Vue
Raw Normal View History

<template>
2021-12-30 14:47:48 +02:00
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
<FormSuspense :p="init">
2021-12-30 14:47:48 +02:00
<div class="_formRoot">
2022-01-04 14:16:41 +02:00
<FormFolder class="_formBlock">
<template #icon><i class="fas fa-shield-alt"></i></template>
<template #label>{{ $ts.botProtection }}</template>
2021-12-30 14:47:48 +02:00
<template v-if="enableHcaptcha" #suffix>hCaptcha</template>
<template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template>
<template v-else #suffix>{{ $ts.none }} ({{ $ts.notRecommended }})</template>
2022-01-04 14:16:41 +02:00
<XBotProtection/>
</FormFolder>
2022-01-04 20:09:20 +02:00
<FormFolder class="_formBlock">
<template #label>Summaly Proxy</template>
<div class="_formRoot">
<FormInput v-model="summalyProxy" class="_formBlock">
<template #prefix><i class="fas fa-link"></i></template>
<template #label>Summaly Proxy URL</template>
</FormInput>
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
</div>
</FormFolder>
2021-12-30 14:47:48 +02:00
</div>
</FormSuspense>
2021-12-30 14:47:48 +02:00
</MkSpacer>
</template>
<script lang="ts">
import { defineAsyncComponent, defineComponent } from 'vue';
2022-01-04 14:16:41 +02:00
import FormFolder from '@/components/form/folder.vue';
2021-12-30 14:47:48 +02:00
import FormSwitch from '@/components/form/switch.vue';
import FormInfo from '@/components/ui/info.vue';
import FormSuspense from '@/components/form/suspense.vue';
import FormSection from '@/components/form/section.vue';
2022-01-04 20:09:20 +02:00
import FormInput from '@/components/form/input.vue';
import FormButton from '@/components/ui/button.vue';
2022-01-04 14:16:41 +02:00
import XBotProtection from './bot-protection.vue';
2021-11-11 19:02:25 +02:00
import * as os from '@/os';
import * as symbols from '@/symbols';
2022-02-28 15:42:32 +02:00
import { refetchInstanceMeta } from '@/instance';
export default defineComponent({
components: {
2022-01-04 14:16:41 +02:00
FormFolder,
FormSwitch,
FormInfo,
2021-12-30 14:47:48 +02:00
FormSection,
FormSuspense,
2022-01-04 20:09:20 +02:00
FormButton,
FormInput,
2022-01-04 14:16:41 +02:00
XBotProtection,
},
emits: ['info'],
data() {
return {
[symbols.PAGE_INFO]: {
title: this.$ts.security,
2021-10-10 09:19:16 +03:00
icon: 'fas fa-lock',
bg: 'var(--bg)',
},
2022-01-04 20:09:20 +02:00
summalyProxy: '',
enableHcaptcha: false,
enableRecaptcha: false,
}
},
methods: {
async init() {
const meta = await os.api('meta', { detail: true });
2022-01-04 20:09:20 +02:00
this.summalyProxy = meta.summalyProxy;
this.enableHcaptcha = meta.enableHcaptcha;
this.enableRecaptcha = meta.enableRecaptcha;
},
2022-01-04 20:09:20 +02:00
save() {
os.apiWithDialog('admin/update-meta', {
summalyProxy: this.summalyProxy,
}).then(() => {
2022-02-28 15:42:32 +02:00
refetchInstanceMeta();
2022-01-04 20:09:20 +02:00
});
}
}
});
</script>