2017-02-14 06:59:26 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 20:50:09 +02:00
|
|
|
import $ from 'cafy';
|
2018-03-29 14:32:18 +03:00
|
|
|
import Vote from '../../../../../models/poll-vote';
|
2018-04-07 20:30:37 +03:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import Watching from '../../../../../models/note-watching';
|
|
|
|
import watch from '../../../../../note/watch';
|
|
|
|
import { publishNoteStream } from '../../../../../publishers/stream';
|
2018-04-02 07:33:46 +03:00
|
|
|
import notify from '../../../../../publishers/notify';
|
2017-02-14 06:59:26 +02:00
|
|
|
|
|
|
|
/**
|
2018-04-07 20:30:37 +03:00
|
|
|
* Vote poll of a note
|
2017-02-14 06:59:26 +02:00
|
|
|
*
|
2017-03-01 10:37:01 +02:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2017-02-14 06:59:26 +02:00
|
|
|
*/
|
2017-03-03 21:28:38 +02:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-04-07 20:30:37 +03:00
|
|
|
// Get 'noteId' parameter
|
|
|
|
const [noteId, noteIdErr] = $(params.noteId).id().$;
|
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Get votee
|
2018-04-07 20:30:37 +03:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2017-03-03 21:28:38 +02:00
|
|
|
});
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2018-04-07 20:30:37 +03:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-03-03 21:28:38 +02:00
|
|
|
}
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2018-04-07 20:30:37 +03:00
|
|
|
if (note.poll == null) {
|
2017-03-03 21:28:38 +02:00
|
|
|
return rej('poll not found');
|
|
|
|
}
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Get 'choice' parameter
|
|
|
|
const [choice, choiceError] =
|
2017-03-18 17:01:37 +02:00
|
|
|
$(params.choice).number()
|
2018-04-07 20:30:37 +03:00
|
|
|
.pipe(c => note.poll.choices.some(x => x.id == c))
|
2017-03-08 20:50:09 +02:00
|
|
|
.$;
|
2017-03-03 21:28:38 +02:00
|
|
|
if (choiceError) return rej('invalid choice param');
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// if already voted
|
|
|
|
const exist = await Vote.findOne({
|
2018-04-07 20:30:37 +03:00
|
|
|
noteId: note._id,
|
2018-03-29 08:48:47 +03:00
|
|
|
userId: user._id
|
2017-03-03 21:28:38 +02:00
|
|
|
});
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already voted');
|
|
|
|
}
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Create vote
|
|
|
|
await Vote.insert({
|
2018-03-29 08:48:47 +03:00
|
|
|
createdAt: new Date(),
|
2018-04-07 20:30:37 +03:00
|
|
|
noteId: note._id,
|
2018-03-29 08:48:47 +03:00
|
|
|
userId: user._id,
|
2017-03-03 21:28:38 +02:00
|
|
|
choice: choice
|
|
|
|
});
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Send response
|
|
|
|
res();
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
const inc = {};
|
2018-04-07 20:30:37 +03:00
|
|
|
inc[`poll.choices.${findWithAttr(note.poll.choices, 'id', choice)}.votes`] = 1;
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2017-03-20 06:54:59 +02:00
|
|
|
// Increment votes count
|
2018-04-07 20:30:37 +03:00
|
|
|
await Note.update({ _id: note._id }, {
|
2017-03-03 21:28:38 +02:00
|
|
|
$inc: inc
|
|
|
|
});
|
2017-02-14 06:59:26 +02:00
|
|
|
|
2018-04-07 20:30:37 +03:00
|
|
|
publishNoteStream(note._id, 'poll_voted');
|
2017-03-20 06:54:59 +02:00
|
|
|
|
2017-03-03 21:28:38 +02:00
|
|
|
// Notify
|
2018-04-07 20:30:37 +03:00
|
|
|
notify(note.userId, user._id, 'poll_vote', {
|
|
|
|
noteId: note._id,
|
2017-03-03 21:28:38 +02:00
|
|
|
choice: choice
|
2017-02-14 06:59:26 +02:00
|
|
|
});
|
2017-06-06 18:44:26 +03:00
|
|
|
|
|
|
|
// Fetch watchers
|
|
|
|
Watching
|
|
|
|
.find({
|
2018-04-07 20:30:37 +03:00
|
|
|
noteId: note._id,
|
2018-03-29 08:48:47 +03:00
|
|
|
userId: { $ne: user._id },
|
2017-06-06 18:44:26 +03:00
|
|
|
// 削除されたドキュメントは除く
|
2018-03-29 08:48:47 +03:00
|
|
|
deletedAt: { $exists: false }
|
2017-06-06 18:44:26 +03:00
|
|
|
}, {
|
|
|
|
fields: {
|
2018-03-29 08:48:47 +03:00
|
|
|
userId: true
|
2017-06-06 18:44:26 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.then(watchers => {
|
|
|
|
watchers.forEach(watcher => {
|
2018-03-29 08:48:47 +03:00
|
|
|
notify(watcher.userId, user._id, 'poll_vote', {
|
2018-04-07 20:30:37 +03:00
|
|
|
noteId: note._id,
|
2017-06-06 18:44:26 +03:00
|
|
|
choice: choice
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// この投稿をWatchする
|
2018-03-29 08:48:47 +03:00
|
|
|
if (user.account.settings.autoWatch !== false) {
|
2018-04-07 20:30:37 +03:00
|
|
|
watch(user._id, note);
|
2018-03-05 01:07:09 +02:00
|
|
|
}
|
2017-03-03 21:28:38 +02:00
|
|
|
});
|
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;
|
|
|
|
}
|