2016-10-21 21:21:09 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2017-10-12 08:33:57 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2017-10-12 10:00:28 +08:00
|
|
|
import Polls from '/imports/api/polls';
|
2020-09-02 00:31:11 +08:00
|
|
|
import AuthTokenValidation, { ValidationStates } from '/imports/api/auth-token-validation';
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2020-02-14 03:19:29 +08:00
|
|
|
function currentPoll() {
|
2020-09-02 00:31:11 +08:00
|
|
|
const tokenValidation = AuthTokenValidation.findOne({ connectionId: this.connection.id });
|
|
|
|
|
|
|
|
if (!tokenValidation || tokenValidation.validationStatus !== ValidationStates.VALIDATED) {
|
|
|
|
Logger.warn(`Publishing Polls was requested by unauth connection ${this.connection.id}`);
|
2020-02-07 04:47:28 +08:00
|
|
|
return Polls.find({ meetingId: '' });
|
|
|
|
}
|
2020-09-02 00:31:11 +08:00
|
|
|
|
|
|
|
const { meetingId, userId } = tokenValidation;
|
|
|
|
|
2020-11-24 23:13:09 +08:00
|
|
|
Logger.debug('Publishing Polls', { meetingId, userId });
|
2018-10-10 23:49:58 +08:00
|
|
|
|
|
|
|
const selector = {
|
|
|
|
meetingId,
|
|
|
|
};
|
|
|
|
|
|
|
|
return Polls.find(selector);
|
2020-02-14 03:19:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function publishCurrentPoll(...args) {
|
|
|
|
const boundPolls = currentPoll.bind(this);
|
|
|
|
return boundPolls(...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
Meteor.publish('current-poll', publishCurrentPoll);
|
2018-10-10 23:49:58 +08:00
|
|
|
|
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
function polls() {
|
2020-09-02 00:31:11 +08:00
|
|
|
const tokenValidation = AuthTokenValidation.findOne({ connectionId: this.connection.id });
|
|
|
|
|
|
|
|
if (!tokenValidation || tokenValidation.validationStatus !== ValidationStates.VALIDATED) {
|
|
|
|
Logger.warn(`Publishing Polls was requested by unauth connection ${this.connection.id}`);
|
2020-02-07 04:47:28 +08:00
|
|
|
return Polls.find({ meetingId: '' });
|
|
|
|
}
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2020-09-02 00:31:11 +08:00
|
|
|
const { meetingId, userId } = tokenValidation;
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2020-11-24 23:13:09 +08:00
|
|
|
Logger.debug('Publishing polls', { meetingId, userId });
|
2017-10-12 08:33:57 +08:00
|
|
|
|
2016-10-22 02:56:42 +08:00
|
|
|
const selector = {
|
2017-06-03 03:25:02 +08:00
|
|
|
meetingId,
|
2020-09-02 00:31:11 +08:00
|
|
|
users: userId,
|
2016-10-22 02:56:42 +08:00
|
|
|
};
|
|
|
|
|
2017-06-06 03:12:06 +08:00
|
|
|
return Polls.find(selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
function publish(...args) {
|
|
|
|
const boundPolls = polls.bind(this);
|
2018-11-06 03:30:37 +08:00
|
|
|
return boundPolls(...args);
|
2017-06-06 03:12:06 +08:00
|
|
|
}
|
2016-10-22 02:56:42 +08:00
|
|
|
|
2017-10-13 03:07:02 +08:00
|
|
|
Meteor.publish('polls', publish);
|