2017-12-21 23:03:54 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 12:13:06 +03:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-03-29 14:32:18 +03:00
|
|
|
import User from '../../../../models/user';
|
|
|
|
import Mute from '../../../../models/mute';
|
2017-12-21 23:03:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mute a user
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
const muter = user;
|
|
|
|
|
2018-03-29 08:48:47 +03:00
|
|
|
// Get 'userId' parameter
|
2018-04-27 13:12:15 +03:00
|
|
|
const [userId, userIdErr] = $(params.userId).type(ID).get();
|
2018-03-29 08:48:47 +03:00
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2017-12-21 23:03:54 +02:00
|
|
|
|
|
|
|
// 自分自身
|
|
|
|
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 08:52:28 +03:00
|
|
|
profile: false
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (mutee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if already muting
|
|
|
|
const exist = await Mute.findOne({
|
2018-03-29 08:48:47 +03:00
|
|
|
muterId: muter._id,
|
2018-04-17 08:52:28 +03:00
|
|
|
muteeId: mutee._id
|
2017-12-21 23:03:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already muting');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create mute
|
|
|
|
await Mute.insert({
|
2018-03-29 08:48:47 +03:00
|
|
|
createdAt: new Date(),
|
|
|
|
muterId: muter._id,
|
|
|
|
muteeId: mutee._id,
|
2017-12-21 23:03:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|