2018-08-13 18:05:58 +02:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-03-14 07:16:07 +01:00
|
|
|
import deleteFollowing from '../../../../services/following/delete';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Users, Followings } from '../../../../models';
|
|
|
|
import { User } from '../../../../models/entities/user';
|
2018-08-13 18:05:58 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2018-08-17 12:17:23 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定したユーザーを凍結します。',
|
|
|
|
'en-US': 'Suspend a user.'
|
2018-08-17 12:17:23 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2018-08-17 12:17:23 +02:00
|
|
|
requireCredential: true,
|
2018-11-14 20:15:42 +01:00
|
|
|
requireModerator: true,
|
2018-08-17 12:17:23 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
2018-08-17 12:17:23 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '対象のユーザーID',
|
|
|
|
'en-US': 'The user ID which you want to suspend'
|
2018-08-17 12:17:23 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-17 12:17:23 +02:00
|
|
|
}
|
2018-08-13 18:05:58 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2018-08-17 12:17:23 +02:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new Error('user not found');
|
2018-08-17 12:17:23 +02:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:03:58 +02:00
|
|
|
if (user.isAdmin) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new Error('cannot suspend admin');
|
2018-08-20 18:03:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-11 00:12:10 +01:00
|
|
|
if (user.isModerator) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new Error('cannot suspend moderator');
|
2019-01-11 00:12:10 +01:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
await Users.update(user.id, {
|
|
|
|
isSuspended: true
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2018-08-17 12:17:23 +02:00
|
|
|
|
2019-03-14 07:16:07 +01:00
|
|
|
unFollowAll(user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2019-03-14 07:16:07 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
async function unFollowAll(follower: User) {
|
|
|
|
const followings = await Followings.find({
|
|
|
|
followerId: follower.id
|
2019-03-14 07:16:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
for (const following of followings) {
|
2019-04-07 14:50:36 +02:00
|
|
|
const followee = await Users.findOne({
|
|
|
|
id: following.followeeId
|
2019-03-14 07:16:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee == null) {
|
|
|
|
throw `Cant find followee ${following.followeeId}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
await deleteFollowing(follower, followee, true);
|
|
|
|
}
|
|
|
|
}
|