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';
|
2021-07-31 00:47:01 +08:00
|
|
|
import Users from '/imports/api/users';
|
2017-10-12 10:00:28 +08:00
|
|
|
import Polls from '/imports/api/polls';
|
2021-07-31 07:43:27 +08:00
|
|
|
import AuthTokenValidation, {
|
|
|
|
ValidationStates,
|
|
|
|
} from '/imports/api/auth-token-validation';
|
2016-10-21 21:21:09 +08:00
|
|
|
|
2021-07-31 00:47:01 +08:00
|
|
|
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
|
2020-09-02 00:31:11 +08:00
|
|
|
|
2021-07-31 07:43:27 +08:00
|
|
|
function currentPoll(secretPoll) {
|
|
|
|
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;
|
|
|
|
|
2021-08-04 23:13:00 +08:00
|
|
|
const User = Users.findOne({ userId, meetingId }, { fields: { role: 1, presenter: 1 } });
|
2021-07-31 00:47:01 +08:00
|
|
|
|
2021-08-04 23:13:00 +08:00
|
|
|
if (!!User && (User.role === ROLE_MODERATOR || User.presenter)) {
|
|
|
|
Logger.debug('Publishing Polls', { meetingId, userId });
|
2018-10-10 23:49:58 +08:00
|
|
|
|
2021-08-04 23:13:00 +08:00
|
|
|
const selector = {
|
|
|
|
meetingId,
|
|
|
|
};
|
2018-10-10 23:49:58 +08:00
|
|
|
|
2021-08-06 23:23:36 +08:00
|
|
|
const options = { fields: {} };
|
2021-07-03 03:58:33 +08:00
|
|
|
|
2021-08-06 23:23:36 +08:00
|
|
|
const hasPoll = Polls.findOne(selector);
|
2021-07-03 03:58:33 +08:00
|
|
|
|
2021-08-06 23:23:36 +08:00
|
|
|
if ((hasPoll && hasPoll.secretPoll) || secretPoll) {
|
|
|
|
options.fields.responses = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Polls.find(selector, options);
|
2021-07-03 03:58:33 +08:00
|
|
|
}
|
|
|
|
|
2021-08-04 23:13:00 +08:00
|
|
|
Logger.warn(
|
|
|
|
'Publishing current-poll was requested by non-moderator connection',
|
|
|
|
{ meetingId, userId, connectionId: this.connection.id },
|
|
|
|
);
|
|
|
|
return Polls.find({ meetingId: '' });
|
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() {
|
2021-07-31 07:43:27 +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
|
|
|
|
2021-07-03 03:58:33 +08:00
|
|
|
const options = {
|
|
|
|
fields: {
|
|
|
|
'answers.numVotes': 0,
|
|
|
|
responses: 0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-07-03 03:58:33 +08:00
|
|
|
return Polls.find(selector, options);
|
2017-06-06 03:12:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|