2023-01-12 14:02:26 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkSpacer :contentMax="700">
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps">
|
|
|
|
<MkFolder>
|
|
|
|
<template #label>{{ i18n.ts._role.baseRole }}</template>
|
2023-01-19 03:39:23 +02:00
|
|
|
<div class="_gaps_s">
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkInput v-model="baseRoleQ" type="search">
|
|
|
|
<template #prefix><i class="ti ti-search"></i></template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.rateLimitFactor, 'rateLimitFactor'])">
|
2023-01-15 09:52:12 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.rateLimitFactor }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ Math.floor(policies.rateLimitFactor * 100) }}%</template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkRange :modelValue="policies.rateLimitFactor * 100" :min="30" :max="300" :step="10" :textConverter="(v) => `${v}%`" @update:modelValue="v => policies.rateLimitFactor = (v / 100)">
|
2023-01-15 09:52:12 +02:00
|
|
|
<template #caption>{{ i18n.ts._role._options.descriptionOfRateLimitFactor }}</template>
|
|
|
|
</MkRange>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.gtlAvailable, 'gtlAvailable'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.gtlAvailable }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.gtlAvailable ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.gtlAvailable">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.ltlAvailable, 'ltlAvailable'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.ltlAvailable }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.ltlAvailable ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.ltlAvailable">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canPublicNote, 'canPublicNote'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canPublicNote }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.canPublicNote ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.canPublicNote">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canInvite, 'canInvite'])">
|
2023-01-13 07:22:53 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canInvite }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.canInvite ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.canInvite">
|
2023-01-13 07:22:53 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canManageCustomEmojis, 'canManageCustomEmojis'])">
|
2023-01-13 07:58:27 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canManageCustomEmojis }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.canManageCustomEmojis ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.canManageCustomEmojis">
|
2023-01-13 07:58:27 +02:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canSearchNotes, 'canSearchNotes'])">
|
2023-03-13 10:52:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canSearchNotes }}</template>
|
|
|
|
<template #suffix>{{ policies.canSearchNotes ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.canSearchNotes">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.driveCapacity, 'driveCapacityMb'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.driveCapacity }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.driveCapacityMb }}MB</template>
|
|
|
|
<MkInput v-model="policies.driveCapacityMb" type="number">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #suffix>MB</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-05-05 08:18:06 +03:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.alwaysMarkNsfw, 'alwaysMarkNsfw'])">
|
|
|
|
<template #label>{{ i18n.ts._role._options.alwaysMarkNsfw }}</template>
|
|
|
|
<template #suffix>{{ policies.alwaysMarkNsfw ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.alwaysMarkNsfw">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.pinMax, 'pinLimit'])">
|
2023-01-14 11:04:56 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.pinMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.pinLimit }}</template>
|
|
|
|
<MkInput v-model="policies.pinLimit" type="number">
|
2023-01-14 11:04:56 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.antennaMax, 'antennaLimit'])">
|
2023-01-12 14:02:26 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.antennaMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.antennaLimit }}</template>
|
|
|
|
<MkInput v-model="policies.antennaLimit" type="number">
|
2023-01-12 14:02:26 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
2023-01-14 01:04:38 +02:00
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.wordMuteMax, 'wordMuteLimit'])">
|
2023-01-14 01:04:38 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.wordMuteMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.wordMuteLimit }}</template>
|
|
|
|
<MkInput v-model="policies.wordMuteLimit" type="number">
|
2023-01-14 01:04:38 +02:00
|
|
|
<template #suffix>chars</template>
|
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.webhookMax, 'webhookLimit'])">
|
2023-01-14 03:48:11 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.webhookMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.webhookLimit }}</template>
|
|
|
|
<MkInput v-model="policies.webhookLimit" type="number">
|
2023-01-14 03:48:11 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.clipMax, 'clipLimit'])">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.clipMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.clipLimit }}</template>
|
|
|
|
<MkInput v-model="policies.clipLimit" type="number">
|
2023-01-14 09:14:24 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.noteEachClipsMax, 'noteEachClipsLimit'])">
|
2023-01-14 09:14:24 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.noteEachClipsMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.noteEachClipsLimit }}</template>
|
|
|
|
<MkInput v-model="policies.noteEachClipsLimit" type="number">
|
2023-01-14 09:14:24 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userListMax, 'userListLimit'])">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.userListMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.userListLimit }}</template>
|
|
|
|
<MkInput v-model="policies.userListLimit" type="number">
|
2023-01-14 10:38:16 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.userEachUserListsMax, 'userEachUserListsLimit'])">
|
2023-01-14 10:38:16 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.userEachUserListsMax }}</template>
|
2023-01-15 13:52:53 +02:00
|
|
|
<template #suffix>{{ policies.userEachUserListsLimit }}</template>
|
|
|
|
<MkInput v-model="policies.userEachUserListsLimit" type="number">
|
2023-01-14 10:38:16 +02:00
|
|
|
</MkInput>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
<MkFolder v-if="matchQuery([i18n.ts._role._options.canHideAds, 'canHideAds'])">
|
2023-01-16 04:21:04 +02:00
|
|
|
<template #label>{{ i18n.ts._role._options.canHideAds }}</template>
|
|
|
|
<template #suffix>{{ policies.canHideAds ? i18n.ts.yes : i18n.ts.no }}</template>
|
|
|
|
<MkSwitch v-model="policies.canHideAds">
|
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</MkFolder>
|
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
<MkButton primary rounded @click="updateBaseRole">{{ i18n.ts.save }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
2023-03-04 10:36:11 +02:00
|
|
|
<MkButton primary rounded @click="create"><i class="ti ti-plus"></i> {{ i18n.ts._role.new }}</MkButton>
|
2023-01-12 14:02:26 +02:00
|
|
|
<div class="_gaps_s">
|
2023-03-04 10:36:11 +02:00
|
|
|
<MkFoldableSection>
|
|
|
|
<template #header>Manual roles</template>
|
|
|
|
<div class="_gaps_s">
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkRolePreview v-for="role in roles.filter(x => x.target === 'manual')" :key="role.id" :role="role" :forModeration="true"/>
|
2023-03-04 10:36:11 +02:00
|
|
|
</div>
|
|
|
|
</MkFoldableSection>
|
|
|
|
<MkFoldableSection>
|
|
|
|
<template #header>Conditional roles</template>
|
|
|
|
<div class="_gaps_s">
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkRolePreview v-for="role in roles.filter(x => x.target === 'conditional')" :key="role.id" :role="role" :forModeration="true"/>
|
2023-03-04 10:36:11 +02:00
|
|
|
</div>
|
|
|
|
</MkFoldableSection>
|
2023-01-12 14:02:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-03-13 13:02:53 +02:00
|
|
|
import { computed, reactive, ref } from 'vue';
|
2023-01-12 14:02:26 +02:00
|
|
|
import XHeader from './_header_.vue';
|
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-15 09:52:12 +02:00
|
|
|
import MkRange from '@/components/MkRange.vue';
|
2023-01-12 14:02:26 +02:00
|
|
|
import MkRolePreview from '@/components/MkRolePreview.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { instance } from '@/instance';
|
|
|
|
import { useRouter } from '@/router';
|
2023-03-04 10:36:11 +02:00
|
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
2023-03-13 10:52:24 +02:00
|
|
|
import { ROLE_POLICIES } from '@/const';
|
2023-01-15 13:52:53 +02:00
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
const router = useRouter();
|
2023-03-13 13:02:53 +02:00
|
|
|
const baseRoleQ = ref('');
|
2023-01-12 14:02:26 +02:00
|
|
|
|
|
|
|
const roles = await os.api('admin/roles/list');
|
|
|
|
|
2023-01-15 13:52:53 +02:00
|
|
|
const policies = reactive<Record<typeof ROLE_POLICIES[number], any>>({});
|
|
|
|
for (const ROLE_POLICY of ROLE_POLICIES) {
|
|
|
|
policies[ROLE_POLICY] = instance.policies[ROLE_POLICY];
|
|
|
|
}
|
2023-01-12 14:02:26 +02:00
|
|
|
|
2023-03-13 13:02:53 +02:00
|
|
|
function matchQuery(keywords: string[]): boolean {
|
|
|
|
if (baseRoleQ.value.trim().length === 0) return true;
|
|
|
|
return keywords.some(keyword => keyword.toLowerCase().includes(baseRoleQ.value.toLowerCase()));
|
|
|
|
}
|
|
|
|
|
2023-01-12 14:02:26 +02:00
|
|
|
async function updateBaseRole() {
|
2023-01-15 13:52:53 +02:00
|
|
|
await os.apiWithDialog('admin/roles/update-default-policies', {
|
|
|
|
policies,
|
2023-01-12 14:02:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function create() {
|
|
|
|
router.push('/admin/roles/new');
|
|
|
|
}
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.roles,
|
|
|
|
icon: 'ti ti-badges',
|
|
|
|
})));
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
|
|
|
|
</style>
|