2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-04-01 05:43:26 -05:00
|
|
|
import User from '../../../../models/user';
|
2018-03-29 06:32:18 -05:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-05 04:43:06 -05:00
|
|
|
import create from '../../../../api/following/create';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Follow a user
|
|
|
|
*
|
2017-03-01 02:37:01 -06:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
const follower = user;
|
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
// Get 'userId' parameter
|
|
|
|
const [userId, userIdErr] = $(params.userId).id().$;
|
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2017-01-17 14:26:29 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// 自分自身
|
|
|
|
if (user._id.equals(userId)) {
|
|
|
|
return rej('followee is yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
|
|
|
const followee = await User.findOne({
|
2017-03-03 04:33:14 -06:00
|
|
|
_id: userId
|
2017-02-21 22:08:33 -06:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
2018-03-25 10:19:07 -05:00
|
|
|
'account.profile': false
|
2017-02-21 22:08:33 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
2017-02-27 01:31:33 -06:00
|
|
|
// Check if already following
|
2016-12-28 16:49:51 -06:00
|
|
|
const exist = await Following.findOne({
|
2018-03-29 00:48:47 -05:00
|
|
|
followerId: follower._id,
|
2018-04-02 07:57:36 -05:00
|
|
|
followeeId: followee._id
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already following');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create following
|
2018-04-05 04:43:06 -05:00
|
|
|
create(follower, followee);
|
2018-04-01 05:43:26 -05:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|