2017-12-21 22:03:54 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-03-29 13:32:18 +02:00
|
|
|
import User from '../../../../models/user';
|
|
|
|
import Mute from '../../../../models/mute';
|
2017-12-21 22:03:54 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unmute a user
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
const muter = user;
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'userId' parameter
|
2018-04-27 12:12:15 +02:00
|
|
|
const [userId, userIdErr] = $(params.userId).type(ID).get();
|
2018-03-29 07:48:47 +02:00
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2017-12-21 22:03:54 +01: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,
|
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
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|