2018-04-24 04:13:06 -05:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-06-17 19:54:53 -05:00
|
|
|
import User, { pack, ILocalUser } from '../../../../models/user';
|
2018-03-29 06:32:18 -05:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-05 13:10:25 -05:00
|
|
|
import create from '../../../../services/following/create';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Follow a user
|
|
|
|
*/
|
2018-06-17 19:54:53 -05:00
|
|
|
module.exports = (params: any, user: ILocalUser) => 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
|
2018-05-02 04:06:16 -05:00
|
|
|
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
2018-03-29 00:48:47 -05:00
|
|
|
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-04-07 15:02:50 -05:00
|
|
|
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
|
2018-06-03 05:53:57 -05:00
|
|
|
res(await pack(followee._id, user));
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|