2018-11-01 19:32:24 +01:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import User from '../../../../models/user';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Mute from '../../../../models/mute';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2017-12-21 22:03:54 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'ユーザーのミュートを解除します。',
|
|
|
|
'en-US': 'Unmute a user'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
kind: 'account/write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 14:49:36 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-11-01 19:32:24 +01:00
|
|
|
const muter = user;
|
2017-12-21 22:03:54 +01:00
|
|
|
|
|
|
|
// Check if the mutee is yourself
|
2018-11-01 19:32:24 +01:00
|
|
|
if (user._id.equals(ps.userId)) {
|
2017-12-21 22:03:54 +01:00
|
|
|
return rej('mutee is yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get mutee
|
|
|
|
const mutee = await User.findOne({
|
2018-11-01 19:32:24 +01:00
|
|
|
_id: ps.userId
|
2017-12-21 22:03:54 +01:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
2018-04-17 07:52:28 +02:00
|
|
|
profile: false
|
2017-12-21 22:03:54 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (mutee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check not muting
|
|
|
|
const exist = await Mute.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
muterId: muter._id,
|
2018-04-17 07:52:28 +02:00
|
|
|
muteeId: mutee._id
|
2017-12-21 22:03:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not muting');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mute
|
2018-04-17 07:52:28 +02:00
|
|
|
await Mute.remove({
|
2017-12-21 22:03:54 +01:00
|
|
|
_id: exist._id
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|