2017-10-12 10:00:28 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2016-10-22 02:56:42 +08:00
|
|
|
import { check } from 'meteor/check';
|
2017-10-12 10:00:28 +08:00
|
|
|
import Polls from '/imports/api/polls';
|
2016-10-22 02:56:42 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function publishVote(id, pollAnswerId) { // TODO discuss location
|
2018-01-08 08:24:05 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
2017-10-12 08:33:57 +08:00
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'RespondToPollReqMsg';
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2017-12-13 00:19:24 +08:00
|
|
|
/*
|
|
|
|
We keep an array of people who were in the meeting at the time the poll
|
|
|
|
was started. The poll is published to them only.
|
|
|
|
Once they vote - their ID is removed and they cannot see the poll anymore
|
|
|
|
*/
|
2016-10-22 02:56:42 +08:00
|
|
|
const currentPoll = Polls.findOne({
|
|
|
|
users: requesterUserId,
|
2017-06-03 03:25:02 +08:00
|
|
|
meetingId,
|
2017-10-12 08:33:57 +08:00
|
|
|
'answers.id': pollAnswerId,
|
|
|
|
id,
|
2016-10-22 02:56:42 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
check(pollAnswerId, Number);
|
2019-07-07 06:48:33 +08:00
|
|
|
check(currentPoll, Object);
|
2016-10-22 02:56:42 +08:00
|
|
|
check(currentPoll.meetingId, String);
|
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
const payload = {
|
2017-10-12 08:33:57 +08:00
|
|
|
requesterId: requesterUserId,
|
|
|
|
pollId: currentPoll.id,
|
|
|
|
questionId: 0,
|
|
|
|
answerId: pollAnswerId,
|
2016-10-22 02:56:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const selector = {
|
|
|
|
users: requesterUserId,
|
2017-06-03 03:25:02 +08:00
|
|
|
meetingId,
|
2017-10-12 08:33:57 +08:00
|
|
|
'answers.id': pollAnswerId,
|
2016-10-22 02:56:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const modifier = {
|
|
|
|
$pull: {
|
2016-10-21 21:21:09 +08:00
|
|
|
users: requesterUserId,
|
2016-10-22 02:56:42 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2017-06-06 03:12:06 +08:00
|
|
|
const cb = (err) => {
|
2016-10-22 02:56:42 +08:00
|
|
|
if (err) {
|
2017-10-13 03:07:02 +08:00
|
|
|
return Logger.error(`Updating Polls collection: ${err}`);
|
2016-10-21 21:21:09 +08:00
|
|
|
}
|
2016-10-22 02:56:42 +08:00
|
|
|
|
2019-03-09 05:12:00 +08:00
|
|
|
return Logger.info(`Updating Polls collection (meetingId: ${meetingId}, `
|
|
|
|
+ `pollId: ${currentPoll.id}!)`);
|
2016-10-22 02:56:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Polls.update(selector, modifier, cb);
|
2017-10-12 08:33:57 +08:00
|
|
|
|
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
2016-10-21 21:21:09 +08:00
|
|
|
}
|