2021-04-16 10:34:06 +02:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2022-06-22 09:29:21 +02:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkSpacer :content-max="500" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
2022-06-21 17:10:34 +02:00
|
|
|
<div v-if="tab === 'overview'" class="_formRoot">
|
2022-06-20 10:38:49 +02:00
|
|
|
<div class="_formBlock aeakzknw">
|
|
|
|
<MkAvatar class="avatar" :user="user" :show-indicator="true"/>
|
2022-06-23 06:39:28 +02:00
|
|
|
<div class="body">
|
|
|
|
<span class="name"><MkUserName class="name" :user="user"/></span>
|
|
|
|
<span class="sub"><span class="acct _monospace">@{{ acct(user) }}</span></span>
|
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
2022-01-04 07:36:14 +01:00
|
|
|
|
2022-06-26 07:17:55 +02:00
|
|
|
<MkInfo v-if="user.username.includes('.')" class="_formBlock">{{ i18n.ts.isSystemAccount }}</MkInfo>
|
|
|
|
|
2022-06-21 17:10:34 +02:00
|
|
|
<div v-if="user.url" class="_formLinksGrid _formBlock">
|
|
|
|
<FormLink :to="userPage(user)">Profile</FormLink>
|
|
|
|
<FormLink :to="user.url" :external="true">Profile (remote)</FormLink>
|
|
|
|
</div>
|
|
|
|
<FormLink v-else class="_formBlock" :to="userPage(user)">Profile</FormLink>
|
2022-06-20 14:05:18 +02:00
|
|
|
|
2022-06-21 17:10:34 +02:00
|
|
|
<FormLink v-if="user.host" class="_formBlock" :to="`/instance-info/${user.host}`">{{ i18n.ts.instanceInfo }}</FormLink>
|
2022-01-04 07:36:14 +01:00
|
|
|
|
|
|
|
<div class="_formBlock">
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkKeyValue :copy="user.id" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>ID</template>
|
|
|
|
<template #value><span class="_monospace">{{ user.id }}</span></template>
|
2022-01-04 07:36:14 +01:00
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSection v-if="iAmModerator">
|
|
|
|
<template #label>Moderation</template>
|
|
|
|
<FormSwitch v-if="user.host == null && $i.isAdmin && (moderator || !user.isAdmin)" v-model="moderator" class="_formBlock" @update:modelValue="toggleModerator">{{ $ts.moderator }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="silenced" class="_formBlock" @update:modelValue="toggleSilence">{{ $ts.silence }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="suspended" class="_formBlock" @update:modelValue="toggleSuspend">{{ $ts.suspend }}</FormSwitch>
|
|
|
|
{{ $ts.reflectMayTakeTime }}
|
2022-06-27 16:49:16 +02:00
|
|
|
<div class="_formBlock">
|
|
|
|
<FormButton v-if="user.host == null && iAmModerator" inline style="margin-right: 8px;" @click="resetPassword"><i class="fas fa-key"></i> {{ $ts.resetPassword }}</FormButton>
|
|
|
|
<FormButton v-if="$i.isAdmin" inline danger @click="deleteAccount">{{ $ts.deleteAccount }}</FormButton>
|
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>ActivityPub</template>
|
|
|
|
|
|
|
|
<div class="_formBlock">
|
|
|
|
<MkKeyValue v-if="user.host" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>{{ $ts.instanceInfo }}</template>
|
|
|
|
<template #value><MkA :to="`/instance-info/${user.host}`" class="_link">{{ user.host }} <i class="fas fa-angle-right"></i></MkA></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue v-else oneline style="margin: 1em 0;">
|
|
|
|
<template #key>{{ $ts.instanceInfo }}</template>
|
|
|
|
<template #value>(Local user)</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
|
|
<template #key>{{ $ts.updatedAt }}</template>
|
|
|
|
<template #value><MkTime v-if="user.lastFetchedAt" mode="detail" :time="user.lastFetchedAt"/><span v-else>N/A</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue v-if="ap" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>Type</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.type }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<FormButton v-if="user.host != null" class="_formBlock" @click="updateRemoteUser"><i class="fas fa-sync"></i> {{ $ts.updateRemoteUser }}</FormButton>
|
|
|
|
</FormSection>
|
2022-06-21 17:10:34 +02:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'chart'" class="_formRoot">
|
|
|
|
<div class="cmhjzshm">
|
|
|
|
<div class="selects">
|
|
|
|
<MkSelect v-model="chartSrc" style="margin: 0 10px 0 0; flex: 1;">
|
|
|
|
<option value="per-user-notes">{{ $ts.notes }}</option>
|
|
|
|
</MkSelect>
|
|
|
|
</div>
|
|
|
|
<div class="charts">
|
|
|
|
<div class="label">{{ i18n.t('recentNHours', { n: 90 }) }}</div>
|
|
|
|
<MkChart class="chart" :src="chartSrc" span="hour" :limit="90" :args="{ user, withoutAll: true }" :detailed="true"></MkChart>
|
|
|
|
<div class="label">{{ i18n.t('recentNDays', { n: 90 }) }}</div>
|
|
|
|
<MkChart class="chart" :src="chartSrc" span="day" :limit="90" :args="{ user, withoutAll: true }" :detailed="true"></MkChart>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-24 14:43:28 +02:00
|
|
|
<div v-else-if="tab === 'files'" class="_formRoot">
|
|
|
|
<MkFileListForAdmin :pagination="filesPagination" view-mode="grid"/>
|
|
|
|
</div>
|
2022-06-22 16:40:53 +02:00
|
|
|
<div v-else-if="tab === 'ap'" class="_formRoot">
|
|
|
|
<MkObjectView v-if="ap" tall :value="user">
|
|
|
|
</MkObjectView>
|
|
|
|
</div>
|
2022-06-21 17:10:34 +02:00
|
|
|
<div v-else-if="tab === 'raw'" class="_formRoot">
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkObjectView v-if="info && $i.isAdmin" tall :value="info">
|
|
|
|
</MkObjectView>
|
|
|
|
|
|
|
|
<MkObjectView tall :value="user">
|
|
|
|
</MkObjectView>
|
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-16 10:34:06 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, defineAsyncComponent, defineComponent, watch } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2022-06-21 17:10:34 +02:00
|
|
|
import MkChart from '@/components/chart.vue';
|
2022-01-04 14:42:04 +01:00
|
|
|
import MkObjectView from '@/components/object-view.vue';
|
2022-01-04 07:36:14 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
|
|
|
import MkKeyValue from '@/components/key-value.vue';
|
2022-06-21 17:10:34 +02:00
|
|
|
import MkSelect from '@/components/form/select.vue';
|
2022-01-04 07:36:14 +01:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2022-06-24 14:43:28 +02:00
|
|
|
import MkFileListForAdmin from '@/components/file-list-for-admin.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import { url } from '@/config';
|
|
|
|
import { userPage, acct } from '@/filters/user';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { iAmModerator } from '@/account';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
userId: string;
|
|
|
|
}>();
|
|
|
|
|
2022-06-21 17:10:34 +02:00
|
|
|
let tab = $ref('overview');
|
|
|
|
let chartSrc = $ref('per-user-notes');
|
2022-06-20 10:38:49 +02:00
|
|
|
let user = $ref<null | misskey.entities.UserDetailed>();
|
|
|
|
let init = $ref();
|
|
|
|
let info = $ref();
|
|
|
|
let ap = $ref(null);
|
|
|
|
let moderator = $ref(false);
|
|
|
|
let silenced = $ref(false);
|
|
|
|
let suspended = $ref(false);
|
2022-06-24 14:43:28 +02:00
|
|
|
const filesPagination = {
|
|
|
|
endpoint: 'admin/drive/files' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.userId,
|
|
|
|
})),
|
|
|
|
};
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
function createFetcher() {
|
|
|
|
if (iAmModerator) {
|
|
|
|
return () => Promise.all([os.api('users/show', {
|
|
|
|
userId: props.userId,
|
|
|
|
}), os.api('admin/show-user', {
|
|
|
|
userId: props.userId,
|
|
|
|
})]).then(([_user, _info]) => {
|
|
|
|
user = _user;
|
|
|
|
info = _info;
|
|
|
|
moderator = info.isModerator;
|
|
|
|
silenced = info.isSilenced;
|
|
|
|
suspended = info.isSuspended;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return () => os.api('users/show', {
|
|
|
|
userId: props.userId,
|
|
|
|
}).then((res) => {
|
|
|
|
user = res;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-04-16 10:34:06 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function refreshUser() {
|
|
|
|
init = createFetcher();
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function updateRemoteUser() {
|
|
|
|
await os.apiWithDialog('federation/update-remote-user', { userId: user.id });
|
|
|
|
refreshUser();
|
|
|
|
}
|
2021-04-16 10:34:06 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function resetPassword() {
|
|
|
|
const { password } = await os.api('admin/reset-password', {
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2021-04-16 10:34:06 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
os.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: i18n.t('newPasswordIs', { password }),
|
|
|
|
});
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function toggleSilence(v) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: v ? i18n.ts.silenceConfirm : i18n.ts.unsilenceConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) {
|
|
|
|
silenced = !v;
|
|
|
|
} else {
|
|
|
|
await os.api(v ? 'admin/silence-user' : 'admin/unsilence-user', { userId: user.id });
|
|
|
|
await refreshUser();
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function toggleSuspend(v) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: v ? i18n.ts.suspendConfirm : i18n.ts.unsuspendConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) {
|
|
|
|
suspended = !v;
|
|
|
|
} else {
|
|
|
|
await os.api(v ? 'admin/suspend-user' : 'admin/unsuspend-user', { userId: user.id });
|
|
|
|
await refreshUser();
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function toggleModerator(v) {
|
|
|
|
await os.api(v ? 'admin/moderators/add' : 'admin/moderators/remove', { userId: user.id });
|
|
|
|
await refreshUser();
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function deleteAllFiles() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteAllFilesConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
const process = async () => {
|
|
|
|
await os.api('admin/delete-all-files-of-a-user', { userId: user.id });
|
|
|
|
os.success();
|
|
|
|
};
|
|
|
|
await process().catch(err => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: err.toString(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
await refreshUser();
|
|
|
|
}
|
2021-07-28 07:45:56 +02:00
|
|
|
|
2022-06-27 16:49:16 +02:00
|
|
|
async function deleteAccount() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
|
|
|
|
const typed = await os.inputText({
|
|
|
|
text: i18n.t('typeToConfirm', { x: user?.username }),
|
|
|
|
});
|
|
|
|
if (typed.canceled) return;
|
|
|
|
|
|
|
|
if (typed.result === user?.username) {
|
|
|
|
await os.apiWithDialog('admin/delete-account', {
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'input not match',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => props.userId, () => {
|
|
|
|
init = createFetcher();
|
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => user, () => {
|
|
|
|
os.api('ap/get', {
|
2022-06-22 16:40:53 +02:00
|
|
|
uri: user.uri ?? `${url}/users/${user.id}`,
|
2022-06-20 10:38:49 +02:00
|
|
|
}).then(res => {
|
|
|
|
ap = res;
|
|
|
|
});
|
|
|
|
});
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 14:05:18 +02:00
|
|
|
const headerActions = $computed(() => []);
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-21 17:10:34 +02:00
|
|
|
const headerTabs = $computed(() => [{
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'overview',
|
2022-06-21 17:10:34 +02:00
|
|
|
title: i18n.ts.overview,
|
|
|
|
icon: 'fas fa-info-circle',
|
|
|
|
}, {
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'chart',
|
2022-06-21 17:10:34 +02:00
|
|
|
title: i18n.ts.charts,
|
|
|
|
icon: 'fas fa-chart-simple',
|
2022-06-24 14:43:28 +02:00
|
|
|
}, iAmModerator ? {
|
|
|
|
key: 'files',
|
|
|
|
title: i18n.ts.files,
|
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
} : null, {
|
2022-06-22 16:40:53 +02:00
|
|
|
key: 'ap',
|
|
|
|
title: 'AP',
|
|
|
|
icon: 'fas fa-share-alt',
|
2022-06-21 17:10:34 +02:00
|
|
|
}, {
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'raw',
|
2022-06-29 08:41:06 +02:00
|
|
|
title: 'Raw',
|
2022-06-21 17:10:34 +02:00
|
|
|
icon: 'fas fa-code',
|
2022-06-24 14:43:28 +02:00
|
|
|
}].filter(x => x != null));
|
2021-04-23 05:00:07 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: user ? acct(user) : i18n.ts.userInfo,
|
|
|
|
icon: 'fas fa-info-circle',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
})));
|
2021-04-16 10:34:06 +02:00
|
|
|
</script>
|
2021-04-23 05:00:07 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.aeakzknw {
|
2022-06-23 06:39:28 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-04-23 05:00:07 +02:00
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2022-06-23 06:39:28 +02:00
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .sub {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 85%;
|
|
|
|
opacity: 0.7;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
}
|
|
|
|
}
|
2022-06-21 17:10:34 +02:00
|
|
|
|
|
|
|
.cmhjzshm {
|
|
|
|
> .selects {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 0 16px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .charts {
|
|
|
|
> .label {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 05:00:07 +02:00
|
|
|
</style>
|