2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2016-12-28 23:49:51 +01:00
|
|
|
import User from '../../models/user';
|
|
|
|
import Following from '../../models/following';
|
|
|
|
import event from '../../event';
|
|
|
|
import serializeUser from '../../serializers/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unfollow a user
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
const follower = user;
|
|
|
|
|
|
|
|
// Get 'user_id' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [userId, userIdErr] = $(params.user_id).id().$;
|
2017-03-03 11:33:14 +01:00
|
|
|
if (userIdErr) return rej('invalid user_id param');
|
2017-01-17 21:26:29 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Check if the followee is yourself
|
|
|
|
if (user._id.equals(userId)) {
|
|
|
|
return rej('followee is yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
|
|
|
const followee = await User.findOne({
|
2017-03-03 11:33:14 +01:00
|
|
|
_id: userId
|
2017-02-22 05:08:33 +01:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
|
|
|
profile: false
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check not following
|
|
|
|
const exist = await Following.findOne({
|
|
|
|
follower_id: follower._id,
|
|
|
|
followee_id: followee._id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not following');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete following
|
2017-01-17 03:11:22 +01:00
|
|
|
await Following.update({
|
2016-12-28 23:49:51 +01:00
|
|
|
_id: exist._id
|
|
|
|
}, {
|
|
|
|
$set: {
|
|
|
|
deleted_at: new Date()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
|
|
|
|
// Decrement following count
|
2017-01-17 03:11:22 +01:00
|
|
|
User.update({ _id: follower._id }, {
|
2016-12-28 23:49:51 +01:00
|
|
|
$inc: {
|
|
|
|
following_count: -1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Decrement followers count
|
2017-01-17 03:11:22 +01:00
|
|
|
User.update({ _id: followee._id }, {
|
2016-12-28 23:49:51 +01:00
|
|
|
$inc: {
|
|
|
|
followers_count: -1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Publish follow event
|
|
|
|
event(follower._id, 'unfollow', await serializeUser(followee, follower));
|
|
|
|
});
|