2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Vote from '../../../../../models/poll-vote';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import Watching from '../../../../../models/note-watching';
|
2018-04-07 21:02:12 +02:00
|
|
|
import watch from '../../../../../services/note/watch';
|
2019-02-05 06:14:23 +01:00
|
|
|
import { publishNoteStream } from '../../../../../services/stream';
|
|
|
|
import notify from '../../../../../services/create-notification';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../../define';
|
2019-01-21 05:27:19 +01:00
|
|
|
import createNote from '../../../../../services/note/create';
|
|
|
|
import User from '../../../../../models/user';
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定した投稿のアンケートに投票します。',
|
|
|
|
'en-US': 'Vote poll of a note.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
kind: 'vote-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 14:49:36 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
choice: {
|
|
|
|
validator: $.num
|
|
|
|
},
|
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2017-03-03 20:28:38 +01:00
|
|
|
// Get votee
|
2018-04-07 19:30:37 +02:00
|
|
|
const note = await Note.findOne({
|
2018-11-01 19:32:24 +01:00
|
|
|
_id: ps.noteId
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
if (note.poll == null) {
|
2017-03-03 20:28:38 +01:00
|
|
|
return rej('poll not found');
|
|
|
|
}
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
if (!note.poll.choices.some(x => x.id == ps.choice)) return rej('invalid choice param');
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// if already voted
|
|
|
|
const exist = await Vote.findOne({
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: note._id,
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: user._id
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
if (exist !== null) {
|
|
|
|
return rej('already voted');
|
|
|
|
}
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Create vote
|
|
|
|
await Vote.insert({
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: note._id,
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: user._id,
|
2018-11-01 19:32:24 +01:00
|
|
|
choice: ps.choice
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Send response
|
|
|
|
res();
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
const inc: any = {};
|
2018-11-01 19:32:24 +01:00
|
|
|
inc[`poll.choices.${note.poll.choices.findIndex(c => c.id == ps.choice)}.votes`] = 1;
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2017-03-20 05:54:59 +01:00
|
|
|
// Increment votes count
|
2018-04-07 19:30:37 +02:00
|
|
|
await Note.update({ _id: note._id }, {
|
2017-03-03 20:28:38 +01:00
|
|
|
$inc: inc
|
|
|
|
});
|
2017-02-14 05:59:26 +01:00
|
|
|
|
2018-10-07 04:06:17 +02:00
|
|
|
publishNoteStream(note._id, 'pollVoted', {
|
2018-11-01 19:32:24 +01:00
|
|
|
choice: ps.choice,
|
2018-10-07 04:06:17 +02:00
|
|
|
userId: user._id.toHexString()
|
|
|
|
});
|
2017-03-20 05:54:59 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Notify
|
2018-04-07 19:30:37 +02:00
|
|
|
notify(note.userId, user._id, 'poll_vote', {
|
|
|
|
noteId: note._id,
|
2018-11-01 19:32:24 +01:00
|
|
|
choice: ps.choice
|
2017-02-14 05:59:26 +01:00
|
|
|
});
|
2017-06-06 17:44:26 +02:00
|
|
|
|
|
|
|
// Fetch watchers
|
|
|
|
Watching
|
|
|
|
.find({
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: note._id,
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: { $ne: user._id },
|
2017-06-06 17:44:26 +02:00
|
|
|
// 削除されたドキュメントは除く
|
2018-03-29 07:48:47 +02:00
|
|
|
deletedAt: { $exists: false }
|
2017-06-06 17:44:26 +02:00
|
|
|
}, {
|
|
|
|
fields: {
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: true
|
2017-06-06 17:44:26 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.then(watchers => {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const watcher of watchers) {
|
2018-03-29 07:48:47 +02:00
|
|
|
notify(watcher.userId, user._id, 'poll_vote', {
|
2018-04-07 19:30:37 +02:00
|
|
|
noteId: note._id,
|
2018-11-01 19:32:24 +01:00
|
|
|
choice: ps.choice
|
2017-06-06 17:44:26 +02:00
|
|
|
});
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2017-06-06 17:44:26 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// この投稿をWatchする
|
2018-04-07 20:58:11 +02:00
|
|
|
if (user.settings.autoWatch !== false) {
|
2018-04-07 19:30:37 +02:00
|
|
|
watch(user._id, note);
|
2018-03-05 00:07:09 +01:00
|
|
|
}
|
2019-01-21 05:27:19 +01:00
|
|
|
|
|
|
|
// リモート投票の場合リプライ送信
|
|
|
|
if (note._user.host != null) {
|
|
|
|
const pollOwner = await User.findOne({
|
|
|
|
_id: note.userId
|
|
|
|
});
|
|
|
|
|
|
|
|
createNote(user, {
|
|
|
|
createdAt: new Date(),
|
|
|
|
text: ps.choice.toString(),
|
|
|
|
reply: note,
|
|
|
|
visibility: 'specified',
|
|
|
|
visibleUsers: [ pollOwner ],
|
|
|
|
});
|
|
|
|
}
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|