summaryrefslogtreecommitdiff
path: root/src/api/endpoints/posts/polls
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-27 16:50:36 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-02-27 17:39:24 +0900
commit7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b (patch)
tree4b9021c01b3eb5f79653ffef5a3587dd0a1af4f5 /src/api/endpoints/posts/polls
parentFix typo: notifcation -> notification (diff)
downloadsharkey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.tar.gz
sharkey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.tar.bz2
sharkey-7bf27dc4ed3fd07cabeb932842b8ae6eacf24a0b.zip
Clean up
Diffstat (limited to 'src/api/endpoints/posts/polls')
-rw-r--r--src/api/endpoints/posts/polls/vote.js119
1 files changed, 59 insertions, 60 deletions
diff --git a/src/api/endpoints/posts/polls/vote.js b/src/api/endpoints/posts/polls/vote.js
index f1842069d4..40cd8a7e2c 100644
--- a/src/api/endpoints/posts/polls/vote.js
+++ b/src/api/endpoints/posts/polls/vote.js
@@ -16,84 +16,83 @@ import notify from '../../../common/notify';
* @return {Promise<object>}
*/
module.exports = (params, user) =>
- new Promise(async (res, rej) =>
-{
- // Get 'post_id' parameter
- const postId = params.post_id;
- if (postId === undefined || postId === null) {
- return rej('post_id is required');
- }
+ new Promise(async (res, rej) => {
+ // Get 'post_id' parameter
+ const 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');
- }
+ // Validate id
+ if (!mongo.ObjectID.isValid(postId)) {
+ return rej('incorrect post_id');
+ }
- // Get votee
- const post = await Post.findOne({
- _id: new mongo.ObjectID(postId)
- });
+ // Get votee
+ const post = await Post.findOne({
+ _id: new mongo.ObjectID(postId)
+ });
- if (post === null) {
- return rej('post not found');
- }
+ if (post === null) {
+ return rej('post not found');
+ }
- if (post.poll == null) {
- return rej('poll not found');
- }
+ if (post.poll == null) {
+ return rej('poll not found');
+ }
- // Get 'choice' parameter
- const choice = params.choice;
- if (choice == null) {
- return rej('choice is required');
- }
+ // Get 'choice' parameter
+ const choice = params.choice;
+ if (choice == null) {
+ return rej('choice is required');
+ }
- // Validate choice
- if (!post.poll.choices.some(x => x.id == choice)) {
- return rej('invalid choice');
- }
+ // Validate choice
+ if (!post.poll.choices.some(x => x.id == choice)) {
+ return rej('invalid choice');
+ }
- // Check arleady voted
- const exist = await Vote.findOne({
- post_id: post._id,
- user_id: user._id
- });
+ // Check arleady voted
+ const exist = await Vote.findOne({
+ post_id: post._id,
+ user_id: user._id
+ });
- if (exist !== null) {
- return rej('already voted');
- }
+ if (exist !== null) {
+ return rej('already voted');
+ }
- // Create vote
- await Vote.insert({
- created_at: new Date(),
- post_id: post._id,
- user_id: user._id,
- choice: choice
- });
+ // Create vote
+ await Vote.insert({
+ created_at: new Date(),
+ post_id: post._id,
+ user_id: user._id,
+ choice: choice
+ });
- // Send response
- res();
+ // Send response
+ res();
- const inc = {};
- inc[`poll.choices.${ findWithAttr(post.poll.choices, 'id', choice) }.votes`] = 1;
+ const inc = {};
+ inc[`poll.choices.${findWithAttr(post.poll.choices, 'id', choice)}.votes`] = 1;
- console.log(inc);
+ console.log(inc);
- // Increment likes count
- Post.update({ _id: post._id }, {
- $inc: inc
- });
+ // Increment likes count
+ Post.update({ _id: post._id }, {
+ $inc: inc
+ });
- // Notify
- notify(post.user_id, user._id, 'poll_vote', {
- post_id: post._id,
- choice: choice
+ // Notify
+ notify(post.user_id, user._id, 'poll_vote', {
+ post_id: post._id,
+ choice: choice
+ });
});
-});
function findWithAttr(array, attr, value) {
for (let i = 0; i < array.length; i += 1) {
- if(array[i][attr] === value) {
+ if (array[i][attr] === value) {
return i;
}
}