2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
2024-02-12 03:37:45 +01:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-02-16 18:21:27 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<div>
|
|
|
|
<MkStickyContainer>
|
2023-03-02 12:47:24 +01:00
|
|
|
<template #header><XHeader :tabs="headerTabs"/></template>
|
2023-05-19 06:35:46 +02:00
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSuspense :p="init">
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="name">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.instanceName }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2021-12-30 19:21:26 +01:00
|
|
|
|
2023-09-23 05:38:20 +02:00
|
|
|
<MkInput v-model="shortName">
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.shortName }} ({{ i18n.ts.optional }})</template>
|
|
|
|
<template #caption>{{ i18n.ts._serverSettings.shortNameDescription }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="description">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.instanceDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-05-19 06:35:46 +02:00
|
|
|
<FormSplit :minWidth="300">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="maintainerName">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.maintainerName }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="maintainerEmail" type="email">
|
2022-12-19 11:01:30 +01:00
|
|
|
<template #prefix><i class="ti ti-mail"></i></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.maintainerEmail }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSplit>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-10-30 05:41:40 +01:00
|
|
|
<MkInput v-model="impressumUrl" type="url">
|
2023-10-07 06:13:13 +02:00
|
|
|
<template #label>{{ i18n.ts.impressumUrl }}</template>
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #caption>{{ i18n.ts.impressumDescription }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="pinnedUsers">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.pinnedUsers }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.pinnedUsersDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.files }}</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="cacheRemoteFiles">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.cacheRemoteFiles }}</template>
|
2023-08-05 07:03:01 +02:00
|
|
|
<template #caption>{{ i18n.ts.cacheRemoteFilesDescription }}{{ i18n.ts.youCanCleanRemoteFilesCache }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-07-15 13:12:20 +02:00
|
|
|
|
|
|
|
<template v-if="cacheRemoteFiles">
|
|
|
|
<MkSwitch v-model="cacheRemoteSensitiveFiles">
|
|
|
|
<template #label>{{ i18n.ts.cacheRemoteSensitiveFiles }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.cacheRemoteSensitiveFilesDescription }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</template>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>ServiceWorker</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="enableServiceWorker">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.enableServiceworker }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.serviceworkerInfo }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
|
|
|
|
<template v-if="enableServiceWorker">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="swPublicKey">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>Public key</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-05 13:04:56 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="swPrivateKey">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>Private key</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-05 13:04:56 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
2023-10-23 08:17:25 +02:00
|
|
|
<template #label>Misskey® Fan-out Timeline Technology™ (FTT)</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-10-23 08:17:25 +02:00
|
|
|
<MkSwitch v-model="enableFanoutTimeline">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._serverSettings.fanoutTimelineDescription }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
|
2023-11-16 02:20:57 +01:00
|
|
|
<MkSwitch v-model="enableFanoutTimelineDbFallback">
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.fanoutTimelineDbFallback }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._serverSettings.fanoutTimelineDbFallbackDescription }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
|
2023-10-04 01:46:27 +02:00
|
|
|
<MkInput v-model="perLocalUserUserTimelineCacheMax" type="number">
|
|
|
|
<template #label>perLocalUserUserTimelineCacheMax</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="perRemoteUserUserTimelineCacheMax" type="number">
|
|
|
|
<template #label>perRemoteUserUserTimelineCacheMax</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="perUserHomeTimelineCacheMax" type="number">
|
|
|
|
<template #label>perUserHomeTimelineCacheMax</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="perUserListTimelineCacheMax" type="number">
|
|
|
|
<template #label>perUserListTimelineCacheMax</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
2023-10-08 10:56:44 +02:00
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts._ad.adsSettings }}</template>
|
|
|
|
|
|
|
|
<div class="_gaps_m">
|
|
|
|
<div class="_gaps_s">
|
2023-10-08 10:57:48 +02:00
|
|
|
<MkInput v-model="notesPerOneAd" :min="0" type="number">
|
2023-10-08 10:56:44 +02:00
|
|
|
<template #label>{{ i18n.ts._ad.notesPerOneAd }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._ad.setZeroToDisable }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInfo v-if="notesPerOneAd > 0 && notesPerOneAd < 20" :warn="true">
|
|
|
|
{{ i18n.ts._ad.adsTooClose }}
|
|
|
|
</MkInfo>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</FormSection>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
2023-03-02 12:47:24 +01:00
|
|
|
<template #footer>
|
|
|
|
<div :class="$style.footer">
|
2023-05-19 06:35:46 +02:00
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="16">
|
2023-03-02 12:47:24 +01:00
|
|
|
<MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkStickyContainer>
|
|
|
|
</div>
|
2020-02-16 18:21:27 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-19 13:30:23 +02:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 06:42:09 +01:00
|
|
|
import { ref, computed } from 'vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import XHeader from './_header_.vue';
|
2023-01-07 06:59:54 +01:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-07 07:09:46 +01:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2023-10-08 10:56:44 +02:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2021-12-30 13:47:48 +01:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormSplit from '@/components/form/split.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import * as os from '@/os.js';
|
2024-01-04 10:32:46 +01:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { fetchInstance } from '@/instance.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-03-02 12:47:24 +01:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const name = ref<string | null>(null);
|
|
|
|
const shortName = ref<string | null>(null);
|
|
|
|
const description = ref<string | null>(null);
|
|
|
|
const maintainerName = ref<string | null>(null);
|
|
|
|
const maintainerEmail = ref<string | null>(null);
|
|
|
|
const impressumUrl = ref<string | null>(null);
|
|
|
|
const pinnedUsers = ref<string>('');
|
|
|
|
const cacheRemoteFiles = ref<boolean>(false);
|
|
|
|
const cacheRemoteSensitiveFiles = ref<boolean>(false);
|
|
|
|
const enableServiceWorker = ref<boolean>(false);
|
2023-12-26 06:19:35 +01:00
|
|
|
const swPublicKey = ref<string | null>(null);
|
|
|
|
const swPrivateKey = ref<string | null>(null);
|
2023-12-07 06:42:09 +01:00
|
|
|
const enableFanoutTimeline = ref<boolean>(false);
|
|
|
|
const enableFanoutTimelineDbFallback = ref<boolean>(false);
|
|
|
|
const perLocalUserUserTimelineCacheMax = ref<number>(0);
|
|
|
|
const perRemoteUserUserTimelineCacheMax = ref<number>(0);
|
|
|
|
const perUserHomeTimelineCacheMax = ref<number>(0);
|
|
|
|
const perUserListTimelineCacheMax = ref<number>(0);
|
|
|
|
const notesPerOneAd = ref<number>(0);
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2023-07-15 13:12:20 +02:00
|
|
|
async function init(): Promise<void> {
|
2024-01-04 10:32:46 +01:00
|
|
|
const meta = await misskeyApi('admin/meta');
|
2023-12-07 06:42:09 +01:00
|
|
|
name.value = meta.name;
|
|
|
|
shortName.value = meta.shortName;
|
|
|
|
description.value = meta.description;
|
|
|
|
maintainerName.value = meta.maintainerName;
|
|
|
|
maintainerEmail.value = meta.maintainerEmail;
|
|
|
|
impressumUrl.value = meta.impressumUrl;
|
|
|
|
pinnedUsers.value = meta.pinnedUsers.join('\n');
|
|
|
|
cacheRemoteFiles.value = meta.cacheRemoteFiles;
|
|
|
|
cacheRemoteSensitiveFiles.value = meta.cacheRemoteSensitiveFiles;
|
|
|
|
enableServiceWorker.value = meta.enableServiceWorker;
|
|
|
|
swPublicKey.value = meta.swPublickey;
|
|
|
|
swPrivateKey.value = meta.swPrivateKey;
|
|
|
|
enableFanoutTimeline.value = meta.enableFanoutTimeline;
|
|
|
|
enableFanoutTimelineDbFallback.value = meta.enableFanoutTimelineDbFallback;
|
|
|
|
perLocalUserUserTimelineCacheMax.value = meta.perLocalUserUserTimelineCacheMax;
|
|
|
|
perRemoteUserUserTimelineCacheMax.value = meta.perRemoteUserUserTimelineCacheMax;
|
|
|
|
perUserHomeTimelineCacheMax.value = meta.perUserHomeTimelineCacheMax;
|
|
|
|
perUserListTimelineCacheMax.value = meta.perUserListTimelineCacheMax;
|
|
|
|
notesPerOneAd.value = meta.notesPerOneAd;
|
2022-05-19 13:30:23 +02:00
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2023-10-08 10:56:44 +02:00
|
|
|
async function save(): void {
|
|
|
|
await os.apiWithDialog('admin/update-meta', {
|
2023-12-07 06:42:09 +01:00
|
|
|
name: name.value,
|
|
|
|
shortName: shortName.value === '' ? null : shortName.value,
|
|
|
|
description: description.value,
|
|
|
|
maintainerName: maintainerName.value,
|
|
|
|
maintainerEmail: maintainerEmail.value,
|
|
|
|
impressumUrl: impressumUrl.value,
|
|
|
|
pinnedUsers: pinnedUsers.value.split('\n'),
|
|
|
|
cacheRemoteFiles: cacheRemoteFiles.value,
|
|
|
|
cacheRemoteSensitiveFiles: cacheRemoteSensitiveFiles.value,
|
|
|
|
enableServiceWorker: enableServiceWorker.value,
|
|
|
|
swPublicKey: swPublicKey.value,
|
|
|
|
swPrivateKey: swPrivateKey.value,
|
|
|
|
enableFanoutTimeline: enableFanoutTimeline.value,
|
|
|
|
enableFanoutTimelineDbFallback: enableFanoutTimelineDbFallback.value,
|
|
|
|
perLocalUserUserTimelineCacheMax: perLocalUserUserTimelineCacheMax.value,
|
|
|
|
perRemoteUserUserTimelineCacheMax: perRemoteUserUserTimelineCacheMax.value,
|
|
|
|
perUserHomeTimelineCacheMax: perUserHomeTimelineCacheMax.value,
|
|
|
|
perUserListTimelineCacheMax: perUserListTimelineCacheMax.value,
|
|
|
|
notesPerOneAd: notesPerOneAd.value,
|
2022-05-19 13:30:23 +02:00
|
|
|
});
|
2023-10-08 10:56:44 +02:00
|
|
|
|
|
|
|
fetchInstance();
|
2022-05-19 13:30:23 +02:00
|
|
|
}
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.general,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-settings',
|
2020-02-16 18:21:27 +01:00
|
|
|
});
|
|
|
|
</script>
|
2023-03-02 12:47:24 +01:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.footer {
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
}
|
|
|
|
</style>
|