Sharkey/src/api/endpoints/posts/polls/vote.js

101 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-02-14 06:59:26 +02:00
'use strict';
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
import Vote from '../../../models/poll-vote';
import Post from '../../../models/post';
import notify from '../../../common/notify';
/**
* Vote poll of a post
*
* @param {Object} params
* @param {Object} user
* @return {Promise<object>}
*/
module.exports = (params, user) =>
2017-02-27 09:50:36 +02:00
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');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Validate id
if (!mongo.ObjectID.isValid(postId)) {
return rej('incorrect post_id');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Get votee
const post = await Post.findOne({
_id: new mongo.ObjectID(postId)
});
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
if (post === null) {
return rej('post not found');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
if (post.poll == null) {
return rej('poll not found');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Get 'choice' parameter
const choice = params.choice;
if (choice == null) {
return rej('choice is required');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Validate choice
if (!post.poll.choices.some(x => x.id == choice)) {
return rej('invalid choice');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:51:46 +02:00
// already voted
2017-02-27 09:50:36 +02:00
const exist = await Vote.findOne({
post_id: post._id,
user_id: user._id
});
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
if (exist !== null) {
return rej('already voted');
}
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Create vote
await Vote.insert({
created_at: new Date(),
post_id: post._id,
user_id: user._id,
choice: choice
});
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Send response
res();
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
const inc = {};
inc[`poll.choices.${findWithAttr(post.poll.choices, 'id', choice)}.votes`] = 1;
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
console.log(inc);
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Increment likes count
Post.update({ _id: post._id }, {
$inc: inc
});
2017-02-14 06:59:26 +02:00
2017-02-27 09:50:36 +02:00
// Notify
notify(post.user_id, user._id, 'poll_vote', {
post_id: post._id,
choice: choice
});
2017-02-14 06:59:26 +02:00
});
function findWithAttr(array, attr, value) {
for (let i = 0; i < array.length; i += 1) {
2017-02-27 09:50:36 +02:00
if (array[i][attr] === value) {
2017-02-14 06:59:26 +02:00
return i;
}
}
return -1;
}