56 lines
1.5 KiB
JavaScript
Executable File
56 lines
1.5 KiB
JavaScript
Executable File
import { Meteor } from 'meteor/meteor';
|
|
import Breakouts from '/imports/api/breakouts';
|
|
import Users from '/imports/api/users';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import AuthTokenValidation, { ValidationStates } from '/imports/api/auth-token-validation';
|
|
|
|
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
|
|
|
|
function breakouts(role) {
|
|
const tokenValidation = AuthTokenValidation.findOne({ connectionId: this.connection.id });
|
|
|
|
if (!tokenValidation || tokenValidation.validationStatus !== ValidationStates.VALIDATED) {
|
|
Logger.warn(`Publishing Breakouts was requested by unauth connection ${this.connection.id}`);
|
|
return Breakouts.find({ meetingId: '' });
|
|
}
|
|
const { meetingId, userId } = tokenValidation;
|
|
Logger.debug(`Publishing Breakouts for ${meetingId} ${userId}`);
|
|
|
|
const User = Users.findOne({ userId, meetingId }, { fields: { role: 1 } });
|
|
if (!!User && User.role === ROLE_MODERATOR) {
|
|
const presenterSelector = {
|
|
$or: [
|
|
{ parentMeetingId: meetingId },
|
|
{ breakoutId: meetingId },
|
|
],
|
|
};
|
|
|
|
return Breakouts.find(presenterSelector);
|
|
}
|
|
|
|
const selector = {
|
|
$or: [
|
|
{
|
|
parentMeetingId: meetingId,
|
|
freeJoin: true,
|
|
},
|
|
{
|
|
parentMeetingId: meetingId,
|
|
'users.userId': userId,
|
|
},
|
|
{
|
|
breakoutId: meetingId,
|
|
},
|
|
],
|
|
};
|
|
|
|
return Breakouts.find(selector);
|
|
}
|
|
|
|
function publish(...args) {
|
|
const boundBreakouts = breakouts.bind(this);
|
|
return boundBreakouts(...args);
|
|
}
|
|
|
|
Meteor.publish('breakouts', publish);
|