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

25 lines
792 B
JavaScript
Raw Normal View History

2016-11-12 03:02:46 +08:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import Presentations from '/imports/api/presentations';
2016-11-12 03:02:46 +08:00
import Logger from '/imports/startup/server/logger';
2017-06-01 01:54:43 +08:00
import mapToAcl from '/imports/startup/mapToAcl';
2016-11-12 03:02:46 +08:00
2017-06-01 01:54:43 +08:00
function presentations(credentials) {
2016-11-12 03:02:46 +08:00
const { meetingId, requesterUserId, requesterToken } = credentials;
check(meetingId, String);
check(requesterUserId, String);
check(requesterToken, String);
Logger.info(`Publishing Presentations for ${meetingId} ${requesterUserId} ${requesterToken}`);
2016-11-12 03:02:46 +08:00
return Presentations.find({ meetingId });
2017-06-06 03:12:06 +08:00
}
function publish(...args) {
const boundPresentations = presentations.bind(this);
return mapToAcl('subscriptions.presentations', boundPresentations)(args);
}
Meteor.publish('presentations', publish);