2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header
|
|
|
|
><MkPageHeader
|
|
|
|
:actions="headerActions"
|
|
|
|
:tabs="headerTabs"
|
|
|
|
:display-back-button="true"
|
|
|
|
/></template>
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<div class="_formRoot">
|
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #icon
|
|
|
|
><i class="ph-robot 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 #suffix
|
|
|
|
>{{ i18n.ts.none }} ({{
|
|
|
|
i18n.ts.notRecommended
|
|
|
|
}})</template
|
|
|
|
>
|
2022-07-07 14:06:37 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<XBotProtection />
|
|
|
|
</FormFolder>
|
|
|
|
|
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #icon
|
|
|
|
><i class="ph-eye-slash ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts.sensitiveMediaDetection
|
|
|
|
}}</template>
|
|
|
|
<template
|
|
|
|
v-if="sensitiveMediaDetection === 'all'"
|
|
|
|
#suffix
|
|
|
|
>{{ i18n.ts.all }}</template
|
|
|
|
>
|
|
|
|
<template
|
|
|
|
v-else-if="sensitiveMediaDetection === 'local'"
|
|
|
|
#suffix
|
|
|
|
>{{ i18n.ts.localOnly }}</template
|
|
|
|
>
|
|
|
|
<template
|
|
|
|
v-else-if="sensitiveMediaDetection === 'remote'"
|
|
|
|
#suffix
|
|
|
|
>{{ i18n.ts.remoteOnly }}</template
|
|
|
|
>
|
|
|
|
<template v-else #suffix>{{ i18n.ts.none }}</template>
|
|
|
|
|
|
|
|
<div class="_formRoot">
|
|
|
|
<span class="_formBlock">{{
|
|
|
|
i18n.ts._sensitiveMediaDetection.description
|
|
|
|
}}</span>
|
|
|
|
|
|
|
|
<FormRadios
|
|
|
|
v-model="sensitiveMediaDetection"
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<option value="none">{{ i18n.ts.none }}</option>
|
|
|
|
<option value="all">{{ i18n.ts.all }}</option>
|
|
|
|
<option value="local">
|
|
|
|
{{ i18n.ts.localOnly }}
|
|
|
|
</option>
|
|
|
|
<option value="remote">
|
|
|
|
{{ i18n.ts.remoteOnly }}
|
|
|
|
</option>
|
|
|
|
</FormRadios>
|
|
|
|
|
|
|
|
<FormRange
|
|
|
|
v-model="sensitiveMediaDetectionSensitivity"
|
|
|
|
:min="0"
|
|
|
|
:max="4"
|
|
|
|
:step="1"
|
|
|
|
:text-converter="(v) => `${v + 1}`"
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection.sensitivity
|
|
|
|
}}</template>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection
|
|
|
|
.sensitivityDescription
|
|
|
|
}}</template>
|
|
|
|
</FormRange>
|
|
|
|
|
|
|
|
<FormSwitch
|
|
|
|
v-model="enableSensitiveMediaDetectionForVideos"
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #label
|
|
|
|
>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection
|
|
|
|
.analyzeVideos
|
|
|
|
}}<span class="_beta">{{
|
|
|
|
i18n.ts.beta
|
|
|
|
}}</span></template
|
|
|
|
>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection
|
|
|
|
.analyzeVideosDescription
|
|
|
|
}}</template>
|
|
|
|
</FormSwitch>
|
2022-07-07 14:06:37 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormSwitch
|
|
|
|
v-model="setSensitiveFlagAutomatically"
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #label
|
|
|
|
>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection
|
|
|
|
.setSensitiveFlagAutomatically
|
|
|
|
}}
|
|
|
|
({{ i18n.ts.notRecommended }})</template
|
|
|
|
>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts._sensitiveMediaDetection
|
|
|
|
.setSensitiveFlagAutomaticallyDescription
|
|
|
|
}}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
|
|
|
|
<!-- 現状 false positive が多すぎて実用に耐えない
|
2022-07-07 14:06:37 +02:00
|
|
|
<FormSwitch v-model="disallowUploadWhenPredictedAsPorn" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts._sensitiveMediaDetection.disallowUploadWhenPredictedAsPorn }}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
-->
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="save"
|
|
|
|
><i
|
|
|
|
class="ph-floppy-disk-back ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
{{ i18n.ts.save }}</FormButton
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</FormFolder>
|
2022-07-07 14:06:37 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #label>Active Email Validation</template>
|
|
|
|
<template v-if="enableActiveEmailValidation" #suffix
|
|
|
|
>Enabled</template
|
|
|
|
>
|
|
|
|
<template v-else #suffix>Disabled</template>
|
2022-07-09 08:05:55 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<span class="_formBlock">{{
|
|
|
|
i18n.ts.activeEmailValidationDescription
|
|
|
|
}}</span>
|
|
|
|
<FormSwitch
|
|
|
|
v-model="enableActiveEmailValidation"
|
|
|
|
class="_formBlock"
|
|
|
|
@update:modelValue="save"
|
|
|
|
>
|
|
|
|
<template #label>Enable</template>
|
|
|
|
</FormSwitch>
|
|
|
|
</div>
|
|
|
|
</FormFolder>
|
2022-07-09 08:05:55 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #label>Log IP address</template>
|
|
|
|
<template v-if="enableIpLogging" #suffix
|
|
|
|
>Enabled</template
|
|
|
|
>
|
|
|
|
<template v-else #suffix>Disabled</template>
|
2022-07-02 08:12:11 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSwitch
|
|
|
|
v-model="enableIpLogging"
|
|
|
|
class="_formBlock"
|
|
|
|
@update:modelValue="save"
|
|
|
|
>
|
|
|
|
<template #label>Enable</template>
|
|
|
|
</FormSwitch>
|
|
|
|
</div>
|
|
|
|
</FormFolder>
|
2022-07-02 08:12:11 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #label>Summaly Proxy</template>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormInput
|
|
|
|
v-model="summalyProxy"
|
|
|
|
class="_formBlock"
|
|
|
|
>
|
|
|
|
<template #prefix
|
|
|
|
><i class="ph-link-simple ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
<template #label>Summaly Proxy URL</template>
|
|
|
|
</FormInput>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="save"
|
|
|
|
><i
|
|
|
|
class="ph-floppy-disk-back ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
{{ i18n.ts.save }}</FormButton
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</FormFolder>
|
2021-07-20 22:08:21 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<FormFolder class="_formBlock">
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts.instanceSecurity
|
|
|
|
}}</template>
|
2021-07-20 22:08:21 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSwitch
|
|
|
|
v-if="!privateMode"
|
|
|
|
v-model="secureMode"
|
|
|
|
>
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts.secureMode
|
|
|
|
}}</template>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts.secureModeInfo
|
|
|
|
}}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
<FormSwitch v-model="privateMode">
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts.privateMode
|
|
|
|
}}</template>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts.privateModeInfo
|
|
|
|
}}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
<FormTextarea
|
|
|
|
v-if="privateMode"
|
|
|
|
v-model="allowedHosts"
|
|
|
|
>
|
|
|
|
<template #label>{{
|
|
|
|
i18n.ts.allowedInstances
|
|
|
|
}}</template>
|
|
|
|
<template #caption>{{
|
|
|
|
i18n.ts.allowedInstancesDescription
|
|
|
|
}}</template>
|
|
|
|
</FormTextarea>
|
|
|
|
<FormButton
|
|
|
|
primary
|
|
|
|
class="_formBlock"
|
|
|
|
@click="saveInstance"
|
|
|
|
><i
|
|
|
|
class="ph-floppy-disk-back ph-bold ph-lg"
|
|
|
|
></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>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {} from "vue";
|
|
|
|
import XBotProtection from "./bot-protection.vue";
|
|
|
|
import FormFolder from "@/components/form/folder.vue";
|
|
|
|
import FormRadios from "@/components/form/radios.vue";
|
|
|
|
import FormSwitch from "@/components/form/switch.vue";
|
|
|
|
import FormInfo from "@/components/MkInfo.vue";
|
|
|
|
import FormSuspense from "@/components/form/suspense.vue";
|
|
|
|
import FormRange from "@/components/form/range.vue";
|
|
|
|
import FormInput from "@/components/form/input.vue";
|
|
|
|
import FormTextarea from "@/components/form/textarea.vue";
|
|
|
|
import FormButton from "@/components/MkButton.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { fetchInstance } from "@/instance";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
|
|
|
|
|
|
|
let summalyProxy: string = $ref("");
|
2022-05-14 14:34:50 +02:00
|
|
|
let enableHcaptcha: boolean = $ref(false);
|
|
|
|
let enableRecaptcha: boolean = $ref(false);
|
2023-04-08 02:01:42 +02:00
|
|
|
let sensitiveMediaDetection: string = $ref("none");
|
2022-07-07 14:06:37 +02:00
|
|
|
let sensitiveMediaDetectionSensitivity: number = $ref(0);
|
|
|
|
let setSensitiveFlagAutomatically: boolean = $ref(false);
|
|
|
|
let enableSensitiveMediaDetectionForVideos: boolean = $ref(false);
|
2022-07-02 08:12:11 +02:00
|
|
|
let enableIpLogging: boolean = $ref(false);
|
2022-07-09 08:05:55 +02:00
|
|
|
let enableActiveEmailValidation: boolean = $ref(false);
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-07-20 22:08:21 +02:00
|
|
|
let secureMode: boolean = $ref(false);
|
|
|
|
let privateMode: boolean = $ref(false);
|
2023-04-08 02:01:42 +02:00
|
|
|
let allowedHosts: string = $ref("");
|
2021-07-20 22:08:21 +02:00
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
async function init() {
|
2023-04-08 02:01:42 +02:00
|
|
|
const meta = await os.api("admin/meta");
|
2022-05-14 14:34:50 +02:00
|
|
|
summalyProxy = meta.summalyProxy;
|
|
|
|
enableHcaptcha = meta.enableHcaptcha;
|
|
|
|
enableRecaptcha = meta.enableRecaptcha;
|
2022-07-07 14:06:37 +02:00
|
|
|
sensitiveMediaDetection = meta.sensitiveMediaDetection;
|
|
|
|
sensitiveMediaDetectionSensitivity =
|
2023-04-08 02:01:42 +02:00
|
|
|
meta.sensitiveMediaDetectionSensitivity === "veryLow"
|
|
|
|
? 0
|
|
|
|
: meta.sensitiveMediaDetectionSensitivity === "low"
|
|
|
|
? 1
|
|
|
|
: meta.sensitiveMediaDetectionSensitivity === "medium"
|
|
|
|
? 2
|
|
|
|
: meta.sensitiveMediaDetectionSensitivity === "high"
|
|
|
|
? 3
|
|
|
|
: meta.sensitiveMediaDetectionSensitivity === "veryHigh"
|
|
|
|
? 4
|
|
|
|
: 0;
|
2022-07-07 14:06:37 +02:00
|
|
|
setSensitiveFlagAutomatically = meta.setSensitiveFlagAutomatically;
|
2023-04-08 02:01:42 +02:00
|
|
|
enableSensitiveMediaDetectionForVideos =
|
|
|
|
meta.enableSensitiveMediaDetectionForVideos;
|
2022-07-02 08:12:11 +02:00
|
|
|
enableIpLogging = meta.enableIpLogging;
|
2022-07-09 08:05:55 +02:00
|
|
|
enableActiveEmailValidation = meta.enableActiveEmailValidation;
|
2021-07-20 22:08:21 +02:00
|
|
|
|
|
|
|
secureMode = meta.secureMode;
|
|
|
|
privateMode = meta.privateMode;
|
2023-04-08 02:01:42 +02:00
|
|
|
allowedHosts = meta.allowedHosts.join("\n");
|
2022-05-14 14:34:50 +02:00
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-14 14:34:50 +02:00
|
|
|
function save() {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.apiWithDialog("admin/update-meta", {
|
2022-05-14 14:34:50 +02:00
|
|
|
summalyProxy,
|
2022-07-07 14:06:37 +02:00
|
|
|
sensitiveMediaDetection,
|
|
|
|
sensitiveMediaDetectionSensitivity:
|
2023-04-08 02:01:42 +02:00
|
|
|
sensitiveMediaDetectionSensitivity === 0
|
|
|
|
? "veryLow"
|
|
|
|
: sensitiveMediaDetectionSensitivity === 1
|
|
|
|
? "low"
|
|
|
|
: sensitiveMediaDetectionSensitivity === 2
|
|
|
|
? "medium"
|
|
|
|
: sensitiveMediaDetectionSensitivity === 3
|
|
|
|
? "high"
|
|
|
|
: sensitiveMediaDetectionSensitivity === 4
|
|
|
|
? "veryHigh"
|
|
|
|
: 0,
|
2022-07-07 14:06:37 +02:00
|
|
|
setSensitiveFlagAutomatically,
|
|
|
|
enableSensitiveMediaDetectionForVideos,
|
2022-07-02 08:12:11 +02:00
|
|
|
enableIpLogging,
|
2022-07-09 08:05:55 +02:00
|
|
|
enableActiveEmailValidation,
|
2022-05-14 14:34:50 +02:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-07-20 22:08:21 +02:00
|
|
|
function saveInstance() {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.apiWithDialog("admin/update-meta", {
|
2021-07-20 22:08:21 +02:00
|
|
|
secureMode,
|
|
|
|
privateMode,
|
2023-04-08 02:01:42 +02:00
|
|
|
allowedHosts: allowedHosts.split("\n"),
|
2021-07-20 22:08:21 +02:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.security,
|
2023-04-08 02:01:42 +02:00
|
|
|
icon: "ph-lock ph-bold ph-lg",
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
</script>
|