2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-06-18 02:54:53 +02:00
|
|
|
import User, { pack, ILocalUser } from '../../../../models/user';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-10 14:47:56 +02:00
|
|
|
import deleteFollowing from '../../../../services/following/delete';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unfollow a user
|
|
|
|
*/
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
const follower = user;
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'userId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (userIdErr) return rej('invalid userId 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,
|
2018-04-07 20:58:11 +02:00
|
|
|
'profile': false
|
2017-02-22 05:08:33 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check not following
|
|
|
|
const exist = await Following.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
followerId: follower._id,
|
2018-04-02 14:57:36 +02:00
|
|
|
followeeId: followee._id
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not following');
|
|
|
|
}
|
|
|
|
|
2018-04-10 14:47:56 +02:00
|
|
|
// Delete following
|
|
|
|
deleteFollowing(follower, followee);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-10 14:47:56 +02:00
|
|
|
// Send response
|
2018-06-03 12:53:57 +02:00
|
|
|
res(await pack(followee._id, user));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|