2016-12-28 22:49:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import User from '../../models/user';
|
|
|
|
import Following from '../../models/following';
|
|
|
|
import notify from '../../common/notify';
|
|
|
|
import event from '../../event';
|
|
|
|
import serializeUser from '../../serializers/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Follow a user
|
|
|
|
*
|
2017-03-01 08:37:01 +00:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 22:49:51 +00:00
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
const follower = user;
|
|
|
|
|
|
|
|
// Get 'user_id' parameter
|
|
|
|
let userId = params.user_id;
|
|
|
|
if (userId === undefined || userId === null) {
|
|
|
|
return rej('user_id is required');
|
|
|
|
}
|
|
|
|
|
2017-01-17 20:26:29 +00:00
|
|
|
// Validate id
|
|
|
|
if (!mongo.ObjectID.isValid(userId)) {
|
|
|
|
return rej('incorrect user_id');
|
|
|
|
}
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
// 自分自身
|
|
|
|
if (user._id.equals(userId)) {
|
|
|
|
return rej('followee is yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
|
|
|
const followee = await User.findOne({
|
|
|
|
_id: new mongo.ObjectID(userId)
|
2017-02-22 04:08:33 +00:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
|
|
|
profile: false
|
|
|
|
}
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
2017-02-27 07:31:33 +00:00
|
|
|
// Check if already following
|
2016-12-28 22:49:51 +00:00
|
|
|
const exist = await Following.findOne({
|
|
|
|
follower_id: follower._id,
|
|
|
|
followee_id: followee._id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already following');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create following
|
|
|
|
await Following.insert({
|
|
|
|
created_at: new Date(),
|
|
|
|
follower_id: follower._id,
|
|
|
|
followee_id: followee._id
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
|
|
|
|
// Increment following count
|
2017-01-17 02:11:22 +00:00
|
|
|
User.update(follower._id, {
|
2016-12-28 22:49:51 +00:00
|
|
|
$inc: {
|
|
|
|
following_count: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Increment followers count
|
2017-01-17 02:11:22 +00:00
|
|
|
User.update({ _id: followee._id }, {
|
2016-12-28 22:49:51 +00:00
|
|
|
$inc: {
|
|
|
|
followers_count: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Publish follow event
|
|
|
|
event(follower._id, 'follow', await serializeUser(followee, follower));
|
|
|
|
event(followee._id, 'followed', await serializeUser(follower, followee));
|
|
|
|
|
|
|
|
// Notify
|
|
|
|
notify(followee._id, follower._id, 'follow');
|
|
|
|
});
|