2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
2018-04-03 17:18:06 +09:00
|
|
|
import User from '../../../../models/user';
|
2018-03-29 20:32:18 +09:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-03 17:18:06 +09:00
|
|
|
import queue from '../../../../queue';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unfollow a user
|
|
|
|
*
|
2017-03-01 17:37:01 +09:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-03-04 04:28:38 +09:00
|
|
|
module.exports = (params, user) => 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
|
|
|
|
const [userId, userIdErr] = $(params.userId).id().$;
|
|
|
|
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-03-26 00:19:07 +09:00
|
|
|
'account.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-03 17:18:06 +09:00
|
|
|
queue.create('http', {
|
|
|
|
type: 'unfollow',
|
|
|
|
id: exist._id
|
|
|
|
}).save(error => {
|
|
|
|
if (error) {
|
|
|
|
return rej('unfollow failed');
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2018-04-03 17:18:06 +09:00
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
|
|
|
});
|