hippofish/packages/frontend/src/pages/admin/security.vue

146 lines
5 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<MkStickyContainer>
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
2023-05-29 10:13:12 +02:00
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
<FormSuspense :p="init">
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-01-09 01:41:25 +01:00
<MkFolder>
2023-09-30 21:53:52 +02:00
<template #icon><i class="ph-shield ph-bold ph-lg"></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-if="enableTurnstile" #suffix>Turnstile</template>
<template v-else #suffix>{{ i18n.ts.none }} ({{ i18n.ts.notRecommended }})</template>
2022-01-04 13:16:41 +01:00
<XBotProtection/>
2023-01-09 01:41:25 +01:00
</MkFolder>
2022-01-04 19:09:20 +01:00
2023-01-09 01:41:25 +01:00
<MkFolder>
<template #label>Active Email Validation</template>
<template v-if="enableActiveEmailValidation" #suffix>Enabled</template>
<template v-else #suffix>Disabled</template>
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-01-05 13:04:56 +01:00
<span>{{ i18n.ts.activeEmailValidationDescription }}</span>
2023-05-29 10:13:12 +02:00
<MkSwitch v-model="enableActiveEmailValidation" @update:modelValue="save">
<template #label>Enable</template>
2023-01-07 06:59:54 +01:00
</MkSwitch>
<MkSwitch v-model="enableVerifymailApi" @update:modelValue="save">
<template #label>Use Verifymail.io API</template>
</MkSwitch>
<MkInput v-model="verifymailAuthKey" @update:modelValue="save">
<template #prefix><i class="ti ti-key"></i></template>
<template #label>Verifymail.io API Auth Key</template>
</MkInput>
</div>
2023-01-09 01:41:25 +01:00
</MkFolder>
<MkFolder>
<template #label>Banned Email Domains</template>
<div class="_gaps_m">
<MkTextarea v-model="bannedEmailDomains">
<template #label>Banned Email Domains List</template>
</MkTextarea>
<MkButton primary @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
</div>
</MkFolder>
2023-01-09 01:41:25 +01:00
<MkFolder>
<template #label>Log IP address</template>
<template v-if="enableIpLogging" #suffix>Enabled</template>
<template v-else #suffix>Disabled</template>
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-05-29 10:13:12 +02:00
<MkSwitch v-model="enableIpLogging" @update:modelValue="save">
<template #label>Enable</template>
2023-01-07 06:59:54 +01:00
</MkSwitch>
</div>
2023-01-09 01:41:25 +01:00
</MkFolder>
2023-01-09 01:41:25 +01:00
<MkFolder>
<template #label>Summaly Proxy</template>
2022-01-04 19:09:20 +01:00
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-01-07 07:09:46 +01:00
<MkInput v-model="summalyProxy">
2023-09-30 21:53:52 +02:00
<template #prefix><i class="ph-link ph-bold ph-lg"></i></template>
<template #label>Summaly Proxy URL</template>
2023-01-07 07:09:46 +01:00
</MkInput>
2022-01-04 19:09:20 +01:00
<MkButton primary @click="save"><i class="ph-floppy-disk ph-bold ph-lg"></i> {{ i18n.ts.save }}</MkButton>
</div>
2023-01-09 01:41:25 +01:00
</MkFolder>
</div>
</FormSuspense>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue';
import XBotProtection from './bot-protection.vue';
import XHeader from './_header_.vue';
2023-01-09 01:41:25 +01:00
import MkFolder from '@/components/MkFolder.vue';
2023-01-07 07:09:46 +01:00
import MkRadios from '@/components/MkRadios.vue';
2023-01-07 06:59:54 +01:00
import MkSwitch from '@/components/MkSwitch.vue';
2021-12-30 13:47:48 +01:00
import FormSuspense from '@/components/form/suspense.vue';
2023-01-07 07:09:46 +01:00
import MkRange from '@/components/MkRange.vue';
import MkInput from '@/components/MkInput.vue';
2023-01-06 01:41:14 +01:00
import MkButton from '@/components/MkButton.vue';
import MkTextarea from '@/components/MkTextarea.vue';
2023-09-19 09:37:43 +02:00
import * as os from '@/os.js';
import { fetchInstance } from '@/instance.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
const summalyProxy = ref<string>('');
const enableHcaptcha = ref<boolean>(false);
const enableRecaptcha = ref<boolean>(false);
const enableTurnstile = ref<boolean>(false);
const enableIpLogging = ref<boolean>(false);
const enableActiveEmailValidation = ref<boolean>(false);
const enableVerifymailApi = ref<boolean>(false);
const verifymailAuthKey = ref<string | null>(null);
const bannedEmailDomains = ref<string>('');
async function init() {
const meta = await os.api('admin/meta');
summalyProxy.value = meta.summalyProxy;
enableHcaptcha.value = meta.enableHcaptcha;
enableRecaptcha.value = meta.enableRecaptcha;
enableTurnstile.value = meta.enableTurnstile;
enableIpLogging.value = meta.enableIpLogging;
enableActiveEmailValidation.value = meta.enableActiveEmailValidation;
enableVerifymailApi.value = meta.enableVerifymailApi;
verifymailAuthKey.value = meta.verifymailAuthKey;
bannedEmailDomains.value = meta.bannedEmailDomains.join('\n');
}
function save() {
os.apiWithDialog('admin/update-meta', {
summalyProxy: summalyProxy.value,
enableIpLogging: enableIpLogging.value,
enableActiveEmailValidation: enableActiveEmailValidation.value,
enableVerifymailApi: enableVerifymailApi.value,
verifymailAuthKey: verifymailAuthKey.value,
bannedEmailDomains: bannedEmailDomains.value.split('\n'),
}).then(() => {
fetchInstance();
});
}
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts.security,
2023-09-30 21:53:52 +02:00
icon: 'ph-lock ph-bold ph-lg',
});
</script>