summaryrefslogtreecommitdiff
path: root/src/api/endpoints/following
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2016-12-29 07:49:51 +0900
committersyuilo <syuilotan@yahoo.co.jp>2016-12-29 07:49:51 +0900
commitb3f42e62af698a67c2250533c437569559f1fdf9 (patch)
treecdf6937576e99cccf85e6fa3aa8860a1173c7cfb /src/api/endpoints/following
downloadsharkey-b3f42e62af698a67c2250533c437569559f1fdf9.tar.gz
sharkey-b3f42e62af698a67c2250533c437569559f1fdf9.tar.bz2
sharkey-b3f42e62af698a67c2250533c437569559f1fdf9.zip
Initial commit :four_leaf_clover:
Diffstat (limited to 'src/api/endpoints/following')
-rw-r--r--src/api/endpoints/following/create.js86
-rw-r--r--src/api/endpoints/following/delete.js83
2 files changed, 169 insertions, 0 deletions
diff --git a/src/api/endpoints/following/create.js b/src/api/endpoints/following/create.js
new file mode 100644
index 0000000000..da714cb180
--- /dev/null
+++ b/src/api/endpoints/following/create.js
@@ -0,0 +1,86 @@
+'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
+ *
+ * @param {Object} params
+ * @param {Object} user
+ * @return {Promise<object>}
+ */
+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');
+ }
+
+ // 自分自身
+ if (user._id.equals(userId)) {
+ return rej('followee is yourself');
+ }
+
+ // Get followee
+ const followee = await User.findOne({
+ _id: new mongo.ObjectID(userId)
+ });
+
+ if (followee === null) {
+ return rej('user not found');
+ }
+
+ // Check arleady 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.updateOne({ _id: follower._id }, {
+ $inc: {
+ following_count: 1
+ }
+ });
+
+ // Increment followers count
+ User.updateOne({ _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');
+});
diff --git a/src/api/endpoints/following/delete.js b/src/api/endpoints/following/delete.js
new file mode 100644
index 0000000000..f1096801b6
--- /dev/null
+++ b/src/api/endpoints/following/delete.js
@@ -0,0 +1,83 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import * as mongo from 'mongodb';
+import User from '../../models/user';
+import Following from '../../models/following';
+import event from '../../event';
+import serializeUser from '../../serializers/user';
+
+/**
+ * Unfollow a user
+ *
+ * @param {Object} params
+ * @param {Object} user
+ * @return {Promise<object>}
+ */
+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');
+ }
+
+ // Check if the followee is yourself
+ if (user._id.equals(userId)) {
+ return rej('followee is yourself');
+ }
+
+ // Get followee
+ const followee = await User.findOne({
+ _id: new mongo.ObjectID(userId)
+ });
+
+ if (followee === null) {
+ return rej('user not found');
+ }
+
+ // Check not following
+ const exist = await Following.findOne({
+ follower_id: follower._id,
+ followee_id: followee._id,
+ deleted_at: { $exists: false }
+ });
+
+ if (exist === null) {
+ return rej('already not following');
+ }
+
+ // Delete following
+ await Following.updateOne({
+ _id: exist._id
+ }, {
+ $set: {
+ deleted_at: new Date()
+ }
+ });
+
+ // Send response
+ res();
+
+ // Decrement following count
+ User.updateOne({ _id: follower._id }, {
+ $inc: {
+ following_count: -1
+ }
+ });
+
+ // Decrement followers count
+ User.updateOne({ _id: followee._id }, {
+ $inc: {
+ followers_count: -1
+ }
+ });
+
+ // Publish follow event
+ event(follower._id, 'unfollow', await serializeUser(followee, follower));
+});