diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 16:50:36 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-27 17:39:24 +0900 |
| commit | 7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b (patch) | |
| tree | 4b9021c01b3eb5f79653ffef5a3587dd0a1af4f5 /src/api/endpoints/posts/likes/delete.js | |
| parent | Fix typo: notifcation -> notification (diff) | |
| download | misskey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.tar.gz misskey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.tar.bz2 misskey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.zip | |
Clean up
Diffstat (limited to 'src/api/endpoints/posts/likes/delete.js')
| -rw-r--r-- | src/api/endpoints/posts/likes/delete.js | 109 |
1 files changed, 54 insertions, 55 deletions
diff --git a/src/api/endpoints/posts/likes/delete.js b/src/api/endpoints/posts/likes/delete.js index e3dee23bf2..c2b8f53375 100644 --- a/src/api/endpoints/posts/likes/delete.js +++ b/src/api/endpoints/posts/likes/delete.js @@ -17,69 +17,68 @@ import User from '../../../models/user'; * @return {Promise<object>} */ module.exports = (params, user) => - new Promise(async (res, rej) => -{ - // Get 'post_id' parameter - let postId = params.post_id; - if (postId === undefined || postId === null) { - return rej('post_id is required'); - } - - // Validate id - if (!mongo.ObjectID.isValid(postId)) { - return rej('incorrect post_id'); - } + new Promise(async (res, rej) => { + // Get 'post_id' parameter + let postId = params.post_id; + if (postId === undefined || postId === null) { + return rej('post_id is required'); + } - // Get likee - const post = await Post.findOne({ - _id: new mongo.ObjectID(postId) - }); + // Validate id + if (!mongo.ObjectID.isValid(postId)) { + return rej('incorrect post_id'); + } - if (post === null) { - return rej('post not found'); - } + // Get likee + const post = await Post.findOne({ + _id: new mongo.ObjectID(postId) + }); - // Check arleady liked - const exist = await Like.findOne({ - post_id: post._id, - user_id: user._id, - deleted_at: { $exists: false } - }); + if (post === null) { + return rej('post not found'); + } - if (exist === null) { - return rej('already not liked'); - } + // Check arleady liked + const exist = await Like.findOne({ + post_id: post._id, + user_id: user._id, + deleted_at: { $exists: false } + }); - // Delete like - await Like.update({ - _id: exist._id - }, { - $set: { - deleted_at: new Date() + if (exist === null) { + return rej('already not liked'); } - }); - // Send response - res(); + // Delete like + await Like.update({ + _id: exist._id + }, { + $set: { + deleted_at: new Date() + } + }); - // Decrement likes count - Post.update({ _id: post._id }, { - $inc: { - likes_count: -1 - } - }); + // Send response + res(); - // Decrement user likes count - User.update({ _id: user._id }, { - $inc: { - likes_count: -1 - } - }); + // Decrement likes count + Post.update({ _id: post._id }, { + $inc: { + likes_count: -1 + } + }); - // Decrement user liked count - User.update({ _id: post.user_id }, { - $inc: { - liked_count: -1 - } + // Decrement user likes count + User.update({ _id: user._id }, { + $inc: { + likes_count: -1 + } + }); + + // Decrement user liked count + User.update({ _id: post.user_id }, { + $inc: { + liked_count: -1 + } + }); }); -}); |