bigbluebutton-Github/bigbluebutton-html5/imports/api/polls/server/publishers.js

129 lines
3.2 KiB
JavaScript
Raw Normal View History

2016-10-21 21:21:09 +08:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
2017-10-12 08:33:57 +08:00
import Logger from '/imports/startup/server/logger';
import Users from '/imports/api/users';
import Polls from '/imports/api/polls';
import AuthTokenValidation, {
ValidationStates,
} from '/imports/api/auth-token-validation';
2021-11-27 00:30:56 +08:00
import { DDPServer } from 'meteor/ddp-server';
Meteor.server.setPublicationStrategy('polls', DDPServer.publicationStrategies.NO_MERGE);
2016-10-21 21:21:09 +08:00
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
function currentPoll(secretPoll) {
check(secretPoll, Boolean);
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}`,
);
return Polls.find({ meetingId: '' });
}
const { meetingId, userId } = tokenValidation;
const User = Users.findOne({ userId, meetingId }, { fields: { role: 1, presenter: 1 } });
2021-12-09 03:26:00 +08:00
if (!!User && User.presenter) {
Logger.debug('Publishing Polls', { meetingId, userId });
2018-10-10 23:49:58 +08:00
const selector = {
meetingId,
2021-12-09 03:26:00 +08:00
requester: userId,
};
2018-10-10 23:49:58 +08:00
const options = { fields: {} };
const hasPoll = Polls.findOne(selector);
if ((hasPoll && hasPoll.secretPoll) || secretPoll) {
options.fields.responses = 0;
2021-12-09 03:26:00 +08:00
selector.secretPoll = true;
} else {
selector.secretPoll = false;
}
Mongo.Collection._publishCursor(Polls.find(selector, options), this, 'current-poll');
return this.ready();
}
Logger.warn(
2021-12-09 03:26:00 +08:00
'Publishing current-poll was requested by non-presenter connection',
{ meetingId, userId, connectionId: this.connection.id },
);
Mongo.Collection._publishCursor(Polls.find({ meetingId: '' }), this, 'current-poll');
return this.ready();
}
function publishCurrentPoll(...args) {
const boundPolls = currentPoll.bind(this);
return boundPolls(...args);
}
Meteor.publish('current-poll', publishCurrentPoll);
2018-10-10 23:49:58 +08:00
function polls() {
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}`,
);
return Polls.find({ meetingId: '' });
}
2016-10-21 21:21:09 +08:00
const options = {
fields: {
'answers.numVotes': 0,
responses: 0,
},
};
2021-11-27 00:30:56 +08:00
const noKeyOptions = {
fields: {
'answers.numVotes': 0,
'answers.key': 0,
responses: 0,
},
};
const { meetingId, userId } = tokenValidation;
2021-11-27 00:30:56 +08:00
const User = Users.findOne({ userId, meetingId }, { fields: { role: 1, presenter: 1 } });
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
const selector = {
2017-06-03 03:25:02 +08:00
meetingId,
users: userId,
};
2021-11-27 00:30:56 +08:00
if (User) {
const poll = Polls.findOne(selector, noKeyOptions);
if (User.role === ROLE_MODERATOR || poll?.pollType !== 'R-') {
return Polls.find(selector, options);
}
}
return Polls.find(selector, noKeyOptions);
2017-06-06 03:12:06 +08:00
}
function publish(...args) {
const boundPolls = polls.bind(this);
return boundPolls(...args);
2017-06-06 03:12:06 +08:00
}
Meteor.publish('polls', publish);