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

85 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import User, { pack as packUser } from '../../../../models/user';
import Following from '../../../../models/following';
2016-12-29 00:49:51 +02:00
import notify from '../../common/notify';
2018-03-31 13:55:00 +03:00
import event from '../../../../common/event';
2016-12-29 00:49:51 +02:00
/**
* 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;
2018-03-29 08:48:47 +03:00
// Get 'userId' parameter
const [userId, userIdErr] = $(params.userId).id().$;
if (userIdErr) return rej('invalid userId 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,
'account.profile': false
2017-02-22 06:08:33 +02:00
}
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({
2018-03-29 08:48:47 +03:00
followerId: follower._id,
followeeId: followee._id,
deletedAt: { $exists: false }
2016-12-29 00:49:51 +02:00
});
if (exist !== null) {
return rej('already following');
}
// Create following
await Following.insert({
2018-03-29 08:48:47 +03:00
createdAt: new Date(),
followerId: follower._id,
followeeId: followee._id
2016-12-29 00:49:51 +02:00
});
// 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: {
2018-03-29 08:48:47 +03:00
followingCount: 1
2016-12-29 00:49:51 +02:00
}
});
// 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: {
2018-03-29 08:48:47 +03:00
followersCount: 1
2016-12-29 00:49:51 +02:00
}
});
// Publish follow event
2018-02-04 07:52:33 +02:00
event(follower._id, 'follow', await packUser(followee, follower));
event(followee._id, 'followed', await packUser(follower, followee));
2016-12-29 00:49:51 +02:00
// Notify
notify(followee._id, follower._id, 'follow');
});