2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<div class="_formRoot">
|
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #icon><i class="fas fa-shield-alt"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.botProtection }}</template>
|
|
|
|
<template v-if="enableHcaptcha" #suffix>hCaptcha</template>
|
|
|
|
<template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template>
|
|
|
|
<template v-else #suffix>{{ i18n.ts.none }} ({{ i18n.ts.notRecommended }})</template>
|
2022-01-04 13:16:41 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<XBotProtection/>
|
|
|
|
</FormFolder>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #label>Summaly Proxy</template>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<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>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
|
|
|
</div>
|
|
|
|
</FormFolder>
|
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import XBotProtection from './bot-protection.vue';
|
|
|
|
import XHeader from './_header_.vue';
|
2022-01-04 13:16:41 +01:00
|
|
|
import FormFolder from '@/components/form/folder.vue';
|
2021-12-30 13:47:48 +01: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 19:09:20 +01:00
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-14 14:34:50 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
let summalyProxy: string = $ref('');
|
|
|
|
let enableHcaptcha: boolean = $ref(false);
|
|
|
|
let enableRecaptcha: boolean = $ref(false);
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
summalyProxy = meta.summalyProxy;
|
|
|
|
enableHcaptcha = meta.enableHcaptcha;
|
|
|
|
enableRecaptcha = meta.enableRecaptcha;
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
summalyProxy,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.security,
|
|
|
|
icon: 'fas fa-lock',
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
</script>
|