yumechi-no-kuni/src/server/api/endpoints/notes/polls/vote.ts

109 lines
2.3 KiB
TypeScript
Raw Normal View History

2018-07-07 05:19:00 -05:00
import $ from 'cafy'; import ID from '../../../../../misc/cafy-id';
2018-03-29 06:32:18 -05:00
import Vote from '../../../../../models/poll-vote';
2018-04-07 12:30:37 -05:00
import Note from '../../../../../models/note';
import Watching from '../../../../../models/note-watching';
2018-04-07 14:02:12 -05:00
import watch from '../../../../../services/note/watch';
2018-07-07 05:19:00 -05:00
import { publishNoteStream } from '../../../../../stream';
2018-07-07 13:15:54 -05:00
import notify from '../../../../../notify';
2018-06-17 19:54:53 -05:00
import { ILocalUser } from '../../../../../models/user';
2017-02-13 22:59:26 -06:00
2018-07-16 14:36:44 -05:00
export const meta = {
desc: {
ja: '指定した投稿のアンケートに投票します。',
en: 'Vote poll of a note.'
},
requireCredential: true,
kind: 'vote-write'
};
2018-07-05 12:58:29 -05:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-04-07 12:30:37 -05:00
// Get 'noteId' parameter
2018-05-02 04:06:16 -05:00
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
2018-04-07 12:30:37 -05:00
if (noteIdErr) return rej('invalid noteId param');
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
// Get votee
2018-04-07 12:30:37 -05:00
const note = await Note.findOne({
_id: noteId
2017-03-03 13:28:38 -06:00
});
2017-02-13 22:59:26 -06:00
2018-04-07 12:30:37 -05:00
if (note === null) {
return rej('note not found');
2017-03-03 13:28:38 -06:00
}
2017-02-13 22:59:26 -06:00
2018-04-07 12:30:37 -05:00
if (note.poll == null) {
2017-03-03 13:28:38 -06:00
return rej('poll not found');
}
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
// Get 'choice' parameter
const [choice, choiceError] =
2018-05-02 04:06:16 -05:00
$.num
2018-04-07 12:30:37 -05:00
.pipe(c => note.poll.choices.some(x => x.id == c))
2018-05-02 04:06:16 -05:00
.get(params.choice);
2017-03-03 13:28:38 -06:00
if (choiceError) return rej('invalid choice param');
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
// if already voted
const exist = await Vote.findOne({
2018-04-07 12:30:37 -05:00
noteId: note._id,
2018-03-29 00:48:47 -05:00
userId: user._id
2017-03-03 13:28:38 -06:00
});
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
if (exist !== null) {
return rej('already voted');
}
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
// Create vote
await Vote.insert({
2018-03-29 00:48:47 -05:00
createdAt: new Date(),
2018-04-07 12:30:37 -05:00
noteId: note._id,
2018-03-29 00:48:47 -05:00
userId: user._id,
2017-03-03 13:28:38 -06:00
choice: choice
});
2017-02-13 22:59:26 -06:00
2017-03-03 13:28:38 -06:00
// Send response
res();
2017-02-13 22:59:26 -06:00
2018-06-17 19:54:53 -05:00
const inc: any = {};
inc[`poll.choices.${note.poll.choices.findIndex(c => c.id == choice)}.votes`] = 1;
2017-02-13 22:59:26 -06:00
2017-03-19 23:54:59 -05:00
// Increment votes count
2018-04-07 12:30:37 -05:00
await Note.update({ _id: note._id }, {
2017-03-03 13:28:38 -06:00
$inc: inc
});
2017-02-13 22:59:26 -06:00
2018-04-07 12:30:37 -05:00
publishNoteStream(note._id, 'poll_voted');
2017-03-19 23:54:59 -05:00
2017-03-03 13:28:38 -06:00
// Notify
2018-04-07 12:30:37 -05:00
notify(note.userId, user._id, 'poll_vote', {
noteId: note._id,
2017-03-03 13:28:38 -06:00
choice: choice
2017-02-13 22:59:26 -06:00
});
2017-06-06 10:44:26 -05:00
// Fetch watchers
Watching
.find({
2018-04-07 12:30:37 -05:00
noteId: note._id,
2018-03-29 00:48:47 -05:00
userId: { $ne: user._id },
2017-06-06 10:44:26 -05:00
// 削除されたドキュメントは除く
2018-03-29 00:48:47 -05:00
deletedAt: { $exists: false }
2017-06-06 10:44:26 -05:00
}, {
fields: {
2018-03-29 00:48:47 -05:00
userId: true
2017-06-06 10:44:26 -05:00
}
})
.then(watchers => {
watchers.forEach(watcher => {
2018-03-29 00:48:47 -05:00
notify(watcher.userId, user._id, 'poll_vote', {
2018-04-07 12:30:37 -05:00
noteId: note._id,
2017-06-06 10:44:26 -05:00
choice: choice
});
});
});
// この投稿をWatchする
2018-04-07 13:58:11 -05:00
if (user.settings.autoWatch !== false) {
2018-04-07 12:30:37 -05:00
watch(user._id, note);
2018-03-04 17:07:09 -06:00
}
2017-03-03 13:28:38 -06:00
});