2021-04-16 10:34:06 +02:00
|
|
|
<template>
|
2022-01-04 07:36:14 +01:00
|
|
|
<MkSpacer :content-max="500" :margin-min="16" :margin-max="32">
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormSuspense :p="init">
|
2022-01-04 07:36:14 +01:00
|
|
|
<div class="_formRoot">
|
|
|
|
<div class="_formBlock aeakzknw">
|
|
|
|
<MkAvatar class="avatar" :user="user" :show-indicator="true"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<FormLink :to="userPage(user)">Profile</FormLink>
|
|
|
|
|
|
|
|
<div class="_formBlock">
|
|
|
|
<MkKeyValue :copy="acct(user)" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>Acct</template>
|
|
|
|
<template #value><span class="_monospace">{{ acct(user) }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
|
|
|
|
<MkKeyValue :copy="user.id" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>ID</template>
|
|
|
|
<template #value><span class="_monospace">{{ user.id }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<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>
|
2022-03-25 08:27:41 +01:00
|
|
|
{{ $ts.reflectMayTakeTime }}
|
2022-01-04 07:36:14 +01:00
|
|
|
<FormButton v-if="user.host == null && iAmModerator" class="_formBlock" @click="resetPassword"><i class="fas fa-key"></i> {{ $ts.resetPassword }}</FormButton>
|
|
|
|
</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-03 16:14:50 +02:00
|
|
|
<MkObjectView v-if="info && $i.isAdmin" tall :value="info">
|
|
|
|
</MkObjectView>
|
|
|
|
|
2022-01-04 14:42:04 +01:00
|
|
|
<MkObjectView tall :value="user">
|
|
|
|
</MkObjectView>
|
2021-04-23 05:00:07 +02:00
|
|
|
</div>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSuspense>
|
2022-01-04 07:36:14 +01:00
|
|
|
</MkSpacer>
|
2021-04-16 10:34:06 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-04-16 14:47:12 +02:00
|
|
|
import { computed, defineAsyncComponent, defineComponent } from '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';
|
|
|
|
import FormSuspense from '@/components/form/suspense.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 * as symbols from '@/symbols';
|
|
|
|
import { url } from '@/config';
|
|
|
|
import { userPage, acct } from '@/filters/user';
|
2021-04-16 10:34:06 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2022-01-04 07:36:14 +01:00
|
|
|
FormSection,
|
2021-04-16 10:34:06 +02:00
|
|
|
FormTextarea,
|
2021-04-23 05:00:07 +02:00
|
|
|
FormSwitch,
|
2022-01-04 14:42:04 +01:00
|
|
|
MkObjectView,
|
2021-04-16 10:34:06 +02:00
|
|
|
FormButton,
|
|
|
|
FormLink,
|
2022-01-04 07:36:14 +01:00
|
|
|
MkKeyValue,
|
2021-04-16 10:34:06 +02:00
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
userId: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-16 14:47:12 +02:00
|
|
|
[symbols.PAGE_INFO]: computed(() => ({
|
2021-04-23 05:00:07 +02:00
|
|
|
title: this.user ? acct(this.user) : this.$ts.userInfo,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-info-circle',
|
2022-01-04 07:36:14 +01:00
|
|
|
bg: 'var(--bg)',
|
2021-04-16 14:47:12 +02:00
|
|
|
actions: this.user ? [this.user.url ? {
|
|
|
|
text: this.user.url,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-external-link-alt',
|
2021-04-16 14:47:12 +02:00
|
|
|
handler: () => {
|
|
|
|
window.open(this.user.url, '_blank');
|
|
|
|
}
|
|
|
|
} : undefined].filter(x => x !== undefined) : [],
|
|
|
|
})),
|
2021-04-22 15:29:33 +02:00
|
|
|
init: null,
|
2021-04-16 10:34:06 +02:00
|
|
|
user: null,
|
2021-04-23 05:00:07 +02:00
|
|
|
info: null,
|
2022-01-04 07:36:14 +01:00
|
|
|
ap: null,
|
2021-04-23 05:00:07 +02:00
|
|
|
moderator: false,
|
|
|
|
silenced: false,
|
|
|
|
suspended: false,
|
2021-11-18 15:52:51 +01:00
|
|
|
};
|
2021-04-23 05:00:07 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
iAmModerator(): boolean {
|
|
|
|
return this.$i && (this.$i.isAdmin || this.$i.isModerator);
|
2021-04-16 10:34:06 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
watch: {
|
|
|
|
userId: {
|
|
|
|
handler() {
|
2021-04-23 05:00:07 +02:00
|
|
|
this.init = this.createFetcher();
|
2021-04-22 15:29:33 +02:00
|
|
|
},
|
|
|
|
immediate: true
|
2022-01-04 07:36:14 +01:00
|
|
|
},
|
|
|
|
user() {
|
|
|
|
os.api('ap/get', {
|
|
|
|
uri: this.user.uri || `${url}/users/${this.user.id}`
|
|
|
|
}).then(res => {
|
|
|
|
this.ap = res;
|
|
|
|
});
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
2021-04-16 10:34:06 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
number,
|
|
|
|
bytes,
|
2021-04-23 05:00:07 +02:00
|
|
|
userPage,
|
|
|
|
acct,
|
|
|
|
|
|
|
|
createFetcher() {
|
|
|
|
if (this.iAmModerator) {
|
|
|
|
return () => Promise.all([os.api('users/show', {
|
|
|
|
userId: this.userId
|
|
|
|
}), os.api('admin/show-user', {
|
|
|
|
userId: this.userId
|
|
|
|
})]).then(([user, info]) => {
|
|
|
|
this.user = user;
|
|
|
|
this.info = info;
|
|
|
|
this.moderator = this.info.isModerator;
|
|
|
|
this.silenced = this.info.isSilenced;
|
|
|
|
this.suspended = this.info.isSuspended;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return () => os.api('users/show', {
|
|
|
|
userId: this.userId
|
|
|
|
}).then((user) => {
|
|
|
|
this.user = user;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
refreshUser() {
|
|
|
|
this.init = this.createFetcher();
|
|
|
|
},
|
|
|
|
|
|
|
|
async updateRemoteUser() {
|
2021-04-23 05:05:15 +02:00
|
|
|
await os.apiWithDialog('federation/update-remote-user', { userId: this.user.id });
|
2021-04-23 05:00:07 +02:00
|
|
|
this.refreshUser();
|
|
|
|
},
|
|
|
|
|
|
|
|
async resetPassword() {
|
2021-07-28 07:45:56 +02:00
|
|
|
const { password } = await os.api('admin/reset-password', {
|
2021-04-23 05:00:07 +02:00
|
|
|
userId: this.user.id,
|
2021-07-28 07:45:56 +02:00
|
|
|
});
|
|
|
|
|
2021-11-18 10:45:58 +01:00
|
|
|
os.alert({
|
2021-07-28 07:45:56 +02:00
|
|
|
type: 'success',
|
|
|
|
text: this.$t('newPasswordIs', { password })
|
2021-04-23 05:00:07 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async toggleSilence(v) {
|
2021-11-18 10:45:58 +01:00
|
|
|
const confirm = await os.confirm({
|
2021-04-23 05:00:07 +02:00
|
|
|
type: 'warning',
|
|
|
|
text: v ? this.$ts.silenceConfirm : this.$ts.unsilenceConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) {
|
|
|
|
this.silenced = !v;
|
|
|
|
} else {
|
|
|
|
await os.api(v ? 'admin/silence-user' : 'admin/unsilence-user', { userId: this.user.id });
|
|
|
|
await this.refreshUser();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async toggleSuspend(v) {
|
2021-11-18 10:45:58 +01:00
|
|
|
const confirm = await os.confirm({
|
2021-04-23 05:00:07 +02:00
|
|
|
type: 'warning',
|
|
|
|
text: v ? this.$ts.suspendConfirm : this.$ts.unsuspendConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) {
|
|
|
|
this.suspended = !v;
|
|
|
|
} else {
|
|
|
|
await os.api(v ? 'admin/suspend-user' : 'admin/unsuspend-user', { userId: this.user.id });
|
|
|
|
await this.refreshUser();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async toggleModerator(v) {
|
|
|
|
await os.api(v ? 'admin/moderators/add' : 'admin/moderators/remove', { userId: this.user.id });
|
|
|
|
await this.refreshUser();
|
|
|
|
},
|
|
|
|
|
|
|
|
async deleteAllFiles() {
|
2021-11-18 10:45:58 +01:00
|
|
|
const confirm = await os.confirm({
|
2021-04-23 05:00:07 +02:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$ts.deleteAllFilesConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
const process = async () => {
|
|
|
|
await os.api('admin/delete-all-files-of-a-user', { userId: this.user.id });
|
|
|
|
os.success();
|
|
|
|
};
|
2022-05-26 15:53:09 +02:00
|
|
|
await process().catch(err => {
|
2021-11-18 10:45:58 +01:00
|
|
|
os.alert({
|
2021-04-23 05:00:07 +02:00
|
|
|
type: 'error',
|
2022-05-26 15:53:09 +02:00
|
|
|
text: err.toString(),
|
2021-04-23 05:00:07 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
await this.refreshUser();
|
|
|
|
},
|
2021-04-16 10:34:06 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2021-04-23 05:00:07 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.aeakzknw {
|
|
|
|
> .avatar {
|
|
|
|
display: block;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|