2018-08-14 23:50:49 +02:00
|
|
|
import $ from 'cafy';
|
2021-03-23 09:43:07 +01:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Users } from '../../../../models';
|
2019-07-13 20:18:45 +02:00
|
|
|
import { insertModerationLog } from '../../../../services/insert-moderation-log';
|
2019-07-17 19:03:28 +02:00
|
|
|
import { doPostUnsuspend } from '../../../../services/unsuspend-user';
|
2018-08-14 23:50:49 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定したユーザーの凍結を解除します。',
|
|
|
|
'en-US': 'Unsuspend a user.'
|
2018-08-14 23:50:49 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-11-14 20:15:42 +01:00
|
|
|
requireModerator: true,
|
2018-08-14 23:50:49 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
2018-08-14 23:50:49 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '対象のユーザーID',
|
|
|
|
'en-US': 'The user ID which you want to unsuspend'
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-13 20:18:45 +02:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2018-08-14 23:50:49 +02:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new Error('user not found');
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
await Users.update(user.id, {
|
|
|
|
isSuspended: false
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2019-07-13 20:18:45 +02:00
|
|
|
|
|
|
|
insertModerationLog(me, 'unsuspend', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
2019-07-17 19:03:28 +02:00
|
|
|
|
|
|
|
doPostUnsuspend(user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|