2018-08-13 19:05:58 +03:00
|
|
|
import $ from 'cafy';
|
2021-03-23 10:43:07 +02:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-03-14 08:16:07 +02:00
|
|
|
import deleteFollowing from '../../../../services/following/delete';
|
2020-01-01 19:47:20 +02:00
|
|
|
import { Users, Followings, Notifications } from '../../../../models';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { User } from '../../../../models/entities/user';
|
2019-07-13 21:18:45 +03:00
|
|
|
import { insertModerationLog } from '../../../../services/insert-moderation-log';
|
2019-07-17 20:03:28 +03:00
|
|
|
import { doPostSuspend } from '../../../../services/suspend-user';
|
2021-07-18 13:57:53 +03:00
|
|
|
import { publishUserEvent } from '@/services/stream';
|
2018-08-13 19:05:58 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-11-14 21:15:42 +02:00
|
|
|
requireModerator: true,
|
2018-08-17 13:17:23 +03:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2018-08-17 13:17:23 +03:00
|
|
|
}
|
2018-08-13 19:05:58 +03:00
|
|
|
};
|
|
|
|
|
2019-07-13 21:18:45 +03:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2018-08-17 13:17:23 +03:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('user not found');
|
2018-08-17 13:17:23 +03:00
|
|
|
}
|
|
|
|
|
2018-08-20 19:03:58 +03:00
|
|
|
if (user.isAdmin) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('cannot suspend admin');
|
2018-08-20 19:03:58 +03:00
|
|
|
}
|
|
|
|
|
2019-01-11 01:12:10 +02:00
|
|
|
if (user.isModerator) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('cannot suspend moderator');
|
2019-01-11 01:12:10 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
await Users.update(user.id, {
|
|
|
|
isSuspended: true
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2018-08-17 13:17:23 +03:00
|
|
|
|
2019-07-13 21:18:45 +03:00
|
|
|
insertModerationLog(me, 'suspend', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
|
|
|
|
2021-07-18 13:57:53 +03:00
|
|
|
// Terminate streaming
|
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
publishUserEvent(user.id, 'terminate', {});
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:03:28 +03:00
|
|
|
(async () => {
|
|
|
|
await doPostSuspend(user).catch(e => {});
|
|
|
|
await unFollowAll(user).catch(e => {});
|
2020-01-01 19:47:20 +02:00
|
|
|
await readAllNotify(user).catch(e => {});
|
2019-07-17 20:03:28 +03:00
|
|
|
})();
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2019-03-14 08:16:07 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
async function unFollowAll(follower: User) {
|
|
|
|
const followings = await Followings.find({
|
|
|
|
followerId: follower.id
|
2019-03-14 08:16:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
for (const following of followings) {
|
2019-04-07 15:50:36 +03:00
|
|
|
const followee = await Users.findOne({
|
|
|
|
id: following.followeeId
|
2019-03-14 08:16:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee == null) {
|
|
|
|
throw `Cant find followee ${following.followeeId}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
await deleteFollowing(follower, followee, true);
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 19:47:20 +02:00
|
|
|
|
|
|
|
async function readAllNotify(notifier: User) {
|
|
|
|
await Notifications.update({
|
|
|
|
notifierId: notifier.id,
|
|
|
|
isRead: false,
|
|
|
|
}, {
|
|
|
|
isRead: true
|
|
|
|
});
|
|
|
|
}
|