Sharkey/src/server/api/endpoints/mute/delete.ts

60 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-06-18 03:54:53 +03:00
import User, { ILocalUser } from '../../../../models/user';
2018-03-29 14:32:18 +03:00
import Mute from '../../../../models/mute';
2017-12-21 23:03:54 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'ユーザーのミュートを解除します。',
'en-US': 'Unmute a user'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
kind: 'account/write'
};
2018-07-05 20:58:29 +03:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2017-12-21 23:03:54 +02:00
const muter = user;
2018-03-29 08:48:47 +03:00
// Get 'userId' parameter
2018-05-02 12:06:16 +03:00
const [userId, userIdErr] = $.type(ID).get(params.userId);
2018-03-29 08:48:47 +03:00
if (userIdErr) return rej('invalid userId param');
2017-12-21 23:03:54 +02:00
// Check if the mutee is yourself
if (user._id.equals(userId)) {
return rej('mutee is yourself');
}
// Get mutee
const mutee = await User.findOne({
_id: userId
}, {
fields: {
data: false,
profile: false
2017-12-21 23:03:54 +02:00
}
});
if (mutee === null) {
return rej('user not found');
}
// Check not muting
const exist = await Mute.findOne({
2018-03-29 08:48:47 +03:00
muterId: muter._id,
muteeId: mutee._id
2017-12-21 23:03:54 +02:00
});
if (exist === null) {
return rej('already not muting');
}
// Delete mute
await Mute.remove({
2017-12-21 23:03:54 +02:00
_id: exist._id
});
// Send response
res();
});