Sharkey/src/api/endpoints/following/create.ts

86 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-03 12:33:14 +02:00
import it from '../../it';
2016-12-29 00:49:51 +02:00
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 10:37:01 +02:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
const follower = user;
// Get 'user_id' parameter
2017-03-03 12:33:14 +02:00
const [userId, userIdErr] = it(params.user_id, 'id', true);
if (userIdErr) return rej('invalid user_id param');
2017-01-17 22:26:29 +02:00
2016-12-29 00:49:51 +02:00
// 自分自身
if (user._id.equals(userId)) {
return rej('followee is yourself');
}
// Get followee
const followee = await User.findOne({
2017-03-03 12:33:14 +02:00
_id: userId
2017-02-22 06:08:33 +02:00
}, {
fields: {
data: false,
profile: false
}
2016-12-29 00:49:51 +02:00
});
if (followee === null) {
return rej('user not found');
}
2017-02-27 09:31:33 +02:00
// Check if already following
2016-12-29 00:49:51 +02: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 04:11:22 +02:00
User.update(follower._id, {
2016-12-29 00:49:51 +02:00
$inc: {
following_count: 1
}
});
// Increment followers count
2017-01-17 04:11:22 +02:00
User.update({ _id: followee._id }, {
2016-12-29 00:49:51 +02: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');
});