summaryrefslogtreecommitdiff
path: root/src/api/endpoints/following/create.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 19:33:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 19:33:14 +0900
commite2461a9314026d95d5baaea864c5282eed7c5504 (patch)
treef7cc4fc93900572f55c4f48ed6a7f58026cd7264 /src/api/endpoints/following/create.ts
parentいい感じに (diff)
downloadsharkey-e2461a9314026d95d5baaea864c5282eed7c5504.tar.gz
sharkey-e2461a9314026d95d5baaea864c5282eed7c5504.tar.bz2
sharkey-e2461a9314026d95d5baaea864c5282eed7c5504.zip
wip
Diffstat (limited to 'src/api/endpoints/following/create.ts')
-rw-r--r--src/api/endpoints/following/create.ts89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/api/endpoints/following/create.ts b/src/api/endpoints/following/create.ts
new file mode 100644
index 0000000000..0edc122b94
--- /dev/null
+++ b/src/api/endpoints/following/create.ts
@@ -0,0 +1,89 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import it from '../../it';
+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
+ *
+ * @param {any} params
+ * @param {any} user
+ * @return {Promise<any>}
+ */
+module.exports = (params, user) =>
+ new Promise(async (res, rej) =>
+{
+ const follower = user;
+
+ // Get 'user_id' parameter
+ const [userId, userIdErr] = it(params.user_id, 'id', true);
+ if (userIdErr) return rej('invalid user_id param');
+
+ // 自分自身
+ if (user._id.equals(userId)) {
+ return rej('followee is yourself');
+ }
+
+ // Get followee
+ const followee = await User.findOne({
+ _id: userId
+ }, {
+ fields: {
+ data: false,
+ profile: false
+ }
+ });
+
+ if (followee === null) {
+ return rej('user not found');
+ }
+
+ // Check if already following
+ 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
+ User.update(follower._id, {
+ $inc: {
+ following_count: 1
+ }
+ });
+
+ // Increment followers count
+ User.update({ _id: followee._id }, {
+ $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');
+});