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