bigbluebutton-Github/bigbluebutton-html5/imports/api/1.1/polls/server/methods/publishVote.js
Klaus Klein ca09b69555 Merge branch 'Acl' into Refactor2x
* Acl:
  Add check to undefined role
  Lint to eslint
  Missing merge file
  Fix lint problems
  Change Acl lookup
  Change ACL to be more extensible
  Fix a few review comments
  Acl refactor working
  Mostly working, still problems with user subs
  Code refactored
2017-06-19 11:28:17 -03:00

57 lines
1.5 KiB
JavaScript

import RedisPubSub from '/imports/startup/server/redis';
import { check } from 'meteor/check';
import Polls from '/imports/api/1.1/polls';
import Logger from '/imports/startup/server/logger';
export default function publishVote(credentials, pollId, pollAnswerId) { // TODO discuss location
const REDIS_CONFIG = Meteor.settings.redis;
const CHANNEL = REDIS_CONFIG.channels.toBBBApps.polling;
const EVENT_NAME = 'vote_poll_user_request_message';
const { meetingId, requesterUserId } = credentials;
const currentPoll = Polls.findOne({
users: requesterUserId,
meetingId,
'poll.answers.id': pollAnswerId,
'poll.id': pollId,
});
check(meetingId, String);
check(requesterUserId, String);
check(pollAnswerId, Number);
check(currentPoll.meetingId, String);
const payload = {
meeting_id: currentPoll.meetingId,
user_id: requesterUserId,
poll_id: currentPoll.poll.id,
question_id: 0,
answer_id: pollAnswerId,
};
const selector = {
users: requesterUserId,
meetingId,
'poll.answers.id': pollAnswerId,
};
const modifier = {
$pull: {
users: requesterUserId,
},
};
const cb = (err) => {
if (err) {
return Logger.error(`Updating Polls collection: ${err}`);
}
return Logger.info(`Updating Polls collection (meetingId: ${meetingId},
pollId: ${currentPoll.poll.id}!)`);
};
Polls.update(selector, modifier, cb);
return RedisPubSub.publish(CHANNEL, EVENT_NAME, payload);
}