2021-04-22 08:29:33 -05:00
|
|
|
<template>
|
2021-12-30 06:47:48 -06:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
2021-04-22 08:29:33 -05:00
|
|
|
<FormSuspense :p="init">
|
2021-12-30 06:47:48 -06:00
|
|
|
<div class="_formRoot">
|
2022-01-04 06:16:41 -06:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #icon><i class="fas fa-shield-alt"></i></template>
|
|
|
|
<template #label>{{ $ts.botProtection }}</template>
|
2021-12-30 06:47:48 -06: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 06:16:41 -06:00
|
|
|
|
|
|
|
<XBotProtection/>
|
|
|
|
</FormFolder>
|
2022-01-04 12:09:20 -06: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 06:47:48 -06:00
|
|
|
</div>
|
2021-04-22 08:29:33 -05:00
|
|
|
</FormSuspense>
|
2021-12-30 06:47:48 -06:00
|
|
|
</MkSpacer>
|
2021-04-22 08:29:33 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2022-01-04 06:16:41 -06:00
|
|
|
import FormFolder from '@/components/form/folder.vue';
|
2021-12-30 06:47:48 -06: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 12:09:20 -06:00
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
2022-01-04 06:16:41 -06:00
|
|
|
import XBotProtection from './bot-protection.vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-02-28 12:51:31 -06:00
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 08:29:33 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2022-01-04 06:16:41 -06:00
|
|
|
FormFolder,
|
2021-04-22 08:29:33 -05:00
|
|
|
FormSwitch,
|
|
|
|
FormInfo,
|
2021-12-30 06:47:48 -06:00
|
|
|
FormSection,
|
2021-04-22 08:29:33 -05:00
|
|
|
FormSuspense,
|
2022-01-04 12:09:20 -06:00
|
|
|
FormButton,
|
|
|
|
FormInput,
|
2022-01-04 06:16:41 -06:00
|
|
|
XBotProtection,
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.security,
|
2021-10-10 01:19:16 -05:00
|
|
|
icon: 'fas fa-lock',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
2022-01-04 12:09:20 -06:00
|
|
|
summalyProxy: '',
|
2021-04-22 08:29:33 -05:00
|
|
|
enableHcaptcha: false,
|
|
|
|
enableRecaptcha: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
2022-01-04 12:09:20 -06:00
|
|
|
this.summalyProxy = meta.summalyProxy;
|
2021-04-22 08:29:33 -05:00
|
|
|
this.enableHcaptcha = meta.enableHcaptcha;
|
|
|
|
this.enableRecaptcha = meta.enableRecaptcha;
|
|
|
|
},
|
2022-01-04 12:09:20 -06:00
|
|
|
|
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
summalyProxy: this.summalyProxy,
|
|
|
|
}).then(() => {
|
2022-02-28 12:51:31 -06:00
|
|
|
fetchInstance();
|
2022-01-04 12:09:20 -06:00
|
|
|
});
|
|
|
|
}
|
2021-04-22 08:29:33 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|