2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-04-03 10:18:06 +02:00
|
|
|
import User from '../../../../models/user';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-03 10:18:06 +02:00
|
|
|
import queue from '../../../../queue';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'userId' parameter
|
|
|
|
const [userId, userIdErr] = $(params.userId).id().$;
|
|
|
|
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-03-25 17:19:07 +02:00
|
|
|
'account.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-03 10:18:06 +02:00
|
|
|
queue.create('http', {
|
|
|
|
type: 'unfollow',
|
|
|
|
id: exist._id
|
|
|
|
}).save(error => {
|
|
|
|
if (error) {
|
|
|
|
return rej('unfollow failed');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-04-03 10:18:06 +02:00
|
|
|
// Send response
|
|
|
|
res();
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
});
|