2018-11-02 09:05:53 -05:00
|
|
|
<template>
|
2018-11-04 01:16:05 -05:00
|
|
|
<div class="ucnffhbtogqgscfmqcymwmmupoknpfsw">
|
2018-11-02 09:05:53 -05:00
|
|
|
<ui-card>
|
2018-11-22 17:01:14 -06:00
|
|
|
<div slot="title"><fa :icon="faTerminal"/> {{ $t('operation') }}</div>
|
2018-11-02 09:05:53 -05:00
|
|
|
<section class="fit-top">
|
2018-11-22 17:01:14 -06:00
|
|
|
<ui-input v-model="target" type="text">
|
|
|
|
<span>{{ $t('username-or-userid') }}</span>
|
2018-11-02 09:05:53 -05:00
|
|
|
</ui-input>
|
2018-11-22 17:01:14 -06:00
|
|
|
<ui-button @click="resetPassword"><fa :icon="faKey"/> {{ $t('reset-password') }}</ui-button>
|
2018-11-20 23:44:49 -06:00
|
|
|
<ui-horizon-group>
|
2018-11-22 17:01:14 -06:00
|
|
|
<ui-button @click="verifyUser" :disabled="verifying"><fa :icon="faCertificate"/> {{ $t('verify') }}</ui-button>
|
2018-11-20 23:44:49 -06:00
|
|
|
<ui-button @click="unverifyUser" :disabled="unverifying">{{ $t('unverify') }}</ui-button>
|
|
|
|
</ui-horizon-group>
|
2018-11-22 17:01:14 -06:00
|
|
|
<ui-horizon-group>
|
|
|
|
<ui-button @click="suspendUser" :disabled="suspending"><fa :icon="faSnowflake"/> {{ $t('suspend') }}</ui-button>
|
|
|
|
<ui-button @click="unsuspendUser" :disabled="unsuspending">{{ $t('unsuspend') }}</ui-button>
|
|
|
|
</ui-horizon-group>
|
|
|
|
<ui-button @click="showUser"><fa :icon="faSearch"/> {{ $t('lookup') }}</ui-button>
|
|
|
|
<ui-textarea v-if="user" :value="user | json5" readonly tall style="margin-top:16px;"></ui-textarea>
|
2018-11-02 09:05:53 -05:00
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
|
|
|
|
<ui-card>
|
2018-11-22 17:01:14 -06:00
|
|
|
<div slot="title"><fa :icon="faUsers"/> {{ $t('users.title') }}</div>
|
2018-11-02 09:05:53 -05:00
|
|
|
<section class="fit-top">
|
2018-11-22 17:01:14 -06:00
|
|
|
<ui-horizon-group inputs>
|
|
|
|
<ui-select v-model="sort">
|
|
|
|
<span slot="label">{{ $t('users.sort.title') }}</span>
|
|
|
|
<option value="-createdAt">{{ $t('users.sort.createdAtAsc') }}</option>
|
|
|
|
<option value="+createdAt">{{ $t('users.sort.createdAtDesc') }}</option>
|
|
|
|
<option value="-updatedAt">{{ $t('users.sort.updatedAtAsc') }}</option>
|
|
|
|
<option value="+updatedAt">{{ $t('users.sort.updatedAtDesc') }}</option>
|
|
|
|
</ui-select>
|
|
|
|
<ui-select v-model="origin">
|
|
|
|
<span slot="label">{{ $t('users.origin.title') }}</span>
|
|
|
|
<option value="combined">{{ $t('users.origin.combined') }}</option>
|
|
|
|
<option value="local">{{ $t('users.origin.local') }}</option>
|
|
|
|
<option value="remote">{{ $t('users.origin.remote') }}</option>
|
|
|
|
</ui-select>
|
2018-11-20 23:44:49 -06:00
|
|
|
</ui-horizon-group>
|
2018-11-22 17:01:14 -06:00
|
|
|
<div class="kofvwchc" v-for="user in users">
|
|
|
|
<div>
|
|
|
|
<a :href="user | userPage(null, true)">
|
|
|
|
<mk-avatar class="avatar" :user="user" :disable-link="true"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<header>
|
|
|
|
<b>{{ user | userName }}</b>
|
|
|
|
<span class="username">@{{ user | acct }}</span>
|
|
|
|
</header>
|
|
|
|
<div>
|
2018-11-23 16:01:40 -06:00
|
|
|
<span>{{ $t('users.updatedAt') }}: <mk-time :time="user.updatedAt" mode="detail"/></span>
|
2018-11-22 17:01:14 -06:00
|
|
|
</div>
|
|
|
|
<div>
|
2018-11-23 16:01:40 -06:00
|
|
|
<span>{{ $t('users.createdAt') }}: <mk-time :time="user.createdAt" mode="detail"/></span>
|
2018-11-22 17:01:14 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<ui-button v-if="existMore" @click="fetchUsers">{{ $t('@.load-more') }}</ui-button>
|
2018-11-02 09:05:53 -05:00
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-11-08 12:44:35 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
import i18n from '../../i18n';
|
2018-11-02 09:05:53 -05:00
|
|
|
import parseAcct from "../../../../misc/acct/parse";
|
2018-11-22 17:01:14 -06:00
|
|
|
import { faCertificate, faUsers, faTerminal, faSearch, faKey } from '@fortawesome/free-solid-svg-icons';
|
2018-11-20 23:44:49 -06:00
|
|
|
import { faSnowflake } from '@fortawesome/free-regular-svg-icons';
|
2018-11-02 09:05:53 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('admin/views/users.vue'),
|
2018-11-14 13:24:40 -06:00
|
|
|
|
2018-11-02 09:05:53 -05:00
|
|
|
data() {
|
|
|
|
return {
|
2018-11-22 17:01:14 -06:00
|
|
|
user: null,
|
|
|
|
target: null,
|
2018-11-02 09:05:53 -05:00
|
|
|
verifying: false,
|
|
|
|
unverifying: false,
|
|
|
|
suspending: false,
|
2018-11-20 23:44:49 -06:00
|
|
|
unsuspending: false,
|
2018-11-22 17:01:14 -06:00
|
|
|
sort: '+createdAt',
|
|
|
|
origin: 'combined',
|
|
|
|
limit: 10,
|
|
|
|
offset: 0,
|
|
|
|
users: [],
|
|
|
|
existMore: false,
|
|
|
|
faTerminal, faCertificate, faUsers, faSnowflake, faSearch, faKey
|
2018-11-02 09:05:53 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-11-22 17:01:14 -06:00
|
|
|
watch: {
|
|
|
|
sort() {
|
|
|
|
this.users = [];
|
|
|
|
this.offset = 0;
|
|
|
|
this.fetchUsers();
|
|
|
|
},
|
|
|
|
|
|
|
|
origin() {
|
|
|
|
this.users = [];
|
|
|
|
this.offset = 0;
|
|
|
|
this.fetchUsers();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.fetchUsers();
|
|
|
|
},
|
|
|
|
|
2018-11-02 09:05:53 -05:00
|
|
|
methods: {
|
2018-11-22 17:01:14 -06:00
|
|
|
async fetchUser() {
|
|
|
|
try {
|
|
|
|
return await this.$root.api('users/show', this.target.startsWith('@') ? parseAcct(this.target) : { userId: this.target });
|
|
|
|
} catch (e) {
|
|
|
|
if (e == 'user not found') {
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: this.$t('user-not-found')
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: e.toString()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async showUser() {
|
|
|
|
const user = await this.fetchUser();
|
|
|
|
this.$root.api('admin/show-user', { userId: user.id }).then(info => {
|
|
|
|
this.user = info;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async resetPassword() {
|
|
|
|
const user = await this.fetchUser();
|
|
|
|
this.$root.api('admin/reset-password', { userId: user.id }).then(res => {
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('password-updated', { password: res.password })
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-11-02 09:05:53 -05:00
|
|
|
async verifyUser() {
|
|
|
|
this.verifying = true;
|
|
|
|
|
|
|
|
const process = async () => {
|
2018-11-22 17:01:14 -06:00
|
|
|
const user = await this.fetchUser();
|
2018-11-14 13:24:40 -06:00
|
|
|
await this.$root.api('admin/verify-user', { userId: user.id });
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('verified')
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
await process().catch(e => {
|
2018-11-14 13:24:40 -06:00
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: e.toString()
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
this.verifying = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
async unverifyUser() {
|
|
|
|
this.unverifying = true;
|
|
|
|
|
|
|
|
const process = async () => {
|
2018-11-22 17:01:14 -06:00
|
|
|
const user = await this.fetchUser();
|
2018-11-14 13:24:40 -06:00
|
|
|
await this.$root.api('admin/unverify-user', { userId: user.id });
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('unverified')
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
await process().catch(e => {
|
2018-11-14 13:24:40 -06:00
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: e.toString()
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
this.unverifying = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
async suspendUser() {
|
|
|
|
this.suspending = true;
|
|
|
|
|
|
|
|
const process = async () => {
|
2018-11-22 17:01:14 -06:00
|
|
|
const user = await this.fetchUser();
|
2018-11-14 13:24:40 -06:00
|
|
|
await this.$root.api('admin/suspend-user', { userId: user.id });
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('suspended')
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
await process().catch(e => {
|
2018-11-14 13:24:40 -06:00
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: e.toString()
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
this.suspending = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
async unsuspendUser() {
|
|
|
|
this.unsuspending = true;
|
|
|
|
|
|
|
|
const process = async () => {
|
2018-11-22 17:01:14 -06:00
|
|
|
const user = await this.fetchUser();
|
2018-11-14 13:24:40 -06:00
|
|
|
await this.$root.api('admin/unsuspend-user', { userId: user.id });
|
|
|
|
this.$root.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('unsuspended')
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
await process().catch(e => {
|
2018-11-14 13:24:40 -06:00
|
|
|
this.$root.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: e.toString()
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
this.unsuspending = false;
|
2018-11-22 17:01:14 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
fetchUsers() {
|
|
|
|
this.$root.api('users', {
|
|
|
|
origin: this.origin,
|
|
|
|
sort: this.sort,
|
|
|
|
offset: this.offset,
|
|
|
|
limit: this.limit + 1
|
|
|
|
}).then(users => {
|
|
|
|
if (users.length == this.limit + 1) {
|
|
|
|
users.pop();
|
|
|
|
this.existMore = true;
|
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
|
|
|
this.users = this.users.concat(users);
|
|
|
|
this.offset += this.limit;
|
|
|
|
});
|
2018-11-02 09:05:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2018-11-04 01:16:05 -05:00
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.ucnffhbtogqgscfmqcymwmmupoknpfsw
|
|
|
|
@media (min-width 500px)
|
|
|
|
padding 16px
|
|
|
|
|
2018-11-22 17:01:14 -06:00
|
|
|
.kofvwchc
|
|
|
|
display flex
|
|
|
|
padding 16px 0
|
|
|
|
border-top solid 1px var(--faceDivider)
|
|
|
|
|
|
|
|
> div:first-child
|
|
|
|
> a
|
|
|
|
> .avatar
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
|
|
|
|
> div:last-child
|
|
|
|
flex 1
|
|
|
|
padding-left 16px
|
|
|
|
|
|
|
|
> header
|
|
|
|
> .username
|
|
|
|
margin-left 8px
|
|
|
|
opacity 0.7
|
|
|
|
|
2018-11-04 01:16:05 -05:00
|
|
|
</style>
|