iceshrimp-legacy/src/server/api/endpoints/admin/suspend-user.ts

53 lines
967 B
TypeScript
Raw Normal View History

2018-08-13 18:05:58 +02:00
import $ from 'cafy';
2018-11-01 19:32:24 +01:00
import ID, { transform } from '../../../../misc/cafy-id';
2018-08-13 18:05:58 +02:00
import getParams from '../../get-params';
import User from '../../../../models/user';
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
},
requireCredential: true,
requireAdmin: true,
params: {
2018-11-01 19:32:24 +01:00
userId: {
validator: $.type(ID),
transform: transform,
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
};
export default (params: any) => new Promise(async (res, rej) => {
2018-08-17 12:17:23 +02:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
const user = await User.findOne({
_id: ps.userId
});
if (user == null) {
return rej('user not found');
}
2018-08-20 18:03:58 +02:00
if (user.isAdmin) {
return rej('cannot suspend admin');
}
2018-08-17 12:17:23 +02:00
await User.findOneAndUpdate({
_id: user._id
}, {
$set: {
isSuspended: true
}
});
res();
2018-08-13 18:05:58 +02:00
});