2016-10-21 21:21:09 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2021-12-02 01:47:08 +08:00
|
|
|
import { check } from 'meteor/check';
|
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';
|
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
|
|
|
|
2023-03-07 21:47:43 +08:00
|
|
|
async function currentPoll(secretPoll) {
|
2021-12-02 01:47:08 +08:00
|
|
|
check(secretPoll, Boolean);
|
2023-03-07 21:47:43 +08:00
|
|
|
const tokenValidation = await AuthTokenValidation.findOneAsync({
|
2021-07-31 07:43:27 +08:00
|
|
|
connectionId: this.connection.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (
|
2021-10-05 04:01:20 +08:00
|
|
|
!tokenValidation
|
|
|
|
|| tokenValidation.validationStatus !== ValidationStates.VALIDATED
|
2021-07-31 07:43:27 +08:00
|
|
|
) {
|
|
|
|
Logger.warn(
|
2021-10-05 04:01:20 +08:00
|
|
|
`Publishing Polls was requested by unauth connection ${this.connection.id}`,
|
2021-07-31 07:43:27 +08:00
|
|
|
);
|
2023-03-07 21:47:43 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
return Polls.find({ meetingId: '' });
|
|
|
|
}
|
2020-09-02 00:31:11 +08:00
|
|
|
|
|
|
|
const { meetingId, userId } = tokenValidation;
|
|
|
|
|
2023-03-07 21:47:43 +08:00
|
|
|
const User = await Users.findOneAsync({ userId, meetingId },
|
|
|
|
{ fields: { role: 1, presenter: 1 } });
|
2021-07-31 00:47:01 +08:00
|
|
|
|
2021-12-09 03:26:00 +08:00
|
|
|
if (!!User && User.presenter) {
|
2021-08-04 23:13:00 +08:00
|
|
|
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,
|
2021-12-09 03:26:00 +08:00
|
|
|
requester: userId,
|
2021-08-04 23:13:00 +08:00
|
|
|
};
|
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
|
|
|
|
2023-03-07 21:47:43 +08:00
|
|
|
const hasPoll = await Polls.findOneAsync(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;
|
2021-12-09 03:26:00 +08:00
|
|
|
selector.secretPoll = true;
|
|
|
|
} else {
|
|
|
|
selector.secretPoll = false;
|
2021-08-06 23:23:36 +08:00
|
|
|
}
|
2021-10-05 04:01:20 +08:00
|
|
|
Mongo.Collection._publishCursor(Polls.find(selector, options), this, 'current-poll');
|
|
|
|
return this.ready();
|
2021-07-03 03:58:33 +08:00
|
|
|
}
|
|
|
|
|
2021-08-04 23:13:00 +08:00
|
|
|
Logger.warn(
|
2021-12-09 03:26:00 +08:00
|
|
|
'Publishing current-poll was requested by non-presenter connection',
|
2021-08-04 23:13:00 +08:00
|
|
|
{ meetingId, userId, connectionId: this.connection.id },
|
|
|
|
);
|
2021-10-05 04:01:20 +08:00
|
|
|
Mongo.Collection._publishCursor(Polls.find({ meetingId: '' }), this, 'current-poll');
|
|
|
|
return this.ready();
|
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
|
|
|
|
2023-03-07 21:47:43 +08:00
|
|
|
async function polls() {
|
|
|
|
const tokenValidation = await AuthTokenValidation.findOneAsync({
|
2021-07-31 07:43:27 +08:00
|
|
|
connectionId: this.connection.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (
|
2021-10-05 04:01:20 +08:00
|
|
|
!tokenValidation
|
|
|
|
|| tokenValidation.validationStatus !== ValidationStates.VALIDATED
|
2021-07-31 07:43:27 +08:00
|
|
|
) {
|
|
|
|
Logger.warn(
|
2021-10-05 04:01:20 +08:00
|
|
|
`Publishing Polls was requested by unauth connection ${this.connection.id}`,
|
2021-07-31 07:43:27 +08:00
|
|
|
);
|
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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-11-27 00:30:56 +08:00
|
|
|
const noKeyOptions = {
|
|
|
|
fields: {
|
|
|
|
'answers.numVotes': 0,
|
|
|
|
'answers.key': 0,
|
|
|
|
responses: 0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-09-02 00:31:11 +08:00
|
|
|
const { meetingId, userId } = tokenValidation;
|
2023-03-07 21:47:43 +08:00
|
|
|
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
|
|
|
|
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-11-27 00:30:56 +08:00
|
|
|
if (User) {
|
2023-03-07 21:47:43 +08:00
|
|
|
const poll = await Polls.findOneAsync(selector, noKeyOptions);
|
2022-11-25 20:31:04 +08:00
|
|
|
if (User.presenter || poll?.pollType !== 'R-') {
|
2023-03-07 21:47:43 +08:00
|
|
|
// 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);
|
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);
|