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

147 lines
4.1 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';
2022-11-25 20:31:04 +08:00
import { publicationSafeGuard } from '/imports/api/common/server/helpers';
2021-11-27 00:30:56 +08:00
Meteor.server.setPublicationStrategy('polls', DDPServer.publicationStrategies.NO_MERGE);
2016-10-21 21:21:09 +08:00
async function currentPoll(secretPoll) {
check(secretPoll, Boolean);
const tokenValidation = await AuthTokenValidation.findOneAsync({
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 = await Users.findOneAsync({ 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 = await Polls.findOneAsync(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
async function polls() {
const tokenValidation = await AuthTokenValidation.findOneAsync({
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;
const User = await Users.findOneAsync({ 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 = await Polls.findOneAsync(selector, noKeyOptions);
2022-11-25 20:31:04 +08:00
if (User.presenter || poll?.pollType !== 'R-') {
// Monitor this publication and stop it when user is not a presenter anymore
// or poll type has changed
const comparisonFunc = async () => {
const user = await Users.findOneAsync({ userId, meetingId },
{ fields: { role: 1, userId: 1 } });
const currentPoll = await Polls.findOneAsync(selector, noKeyOptions);
2022-11-25 20:31:04 +08:00
const condition = user.presenter || currentPoll?.pollType !== 'R-';
if (!condition) {
Logger.info(`conditions aren't filled anymore in publication ${this._name}:
user.presenter || currentPoll?.pollType !== 'R-' :${condition}, user.presenter: ${user.presenter} pollType: ${currentPoll?.pollType}`);
}
return condition;
};
publicationSafeGuard(comparisonFunc, this);
2021-11-27 00:30:56 +08:00
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);