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

23 lines
695 B
JavaScript
Raw Normal View History

2016-11-12 03:02:46 +08:00
import { Meteor } from 'meteor/meteor';
import Presentations from '/imports/api/presentations';
2016-11-12 03:02:46 +08:00
import Logger from '/imports/startup/server/logger';
import { extractCredentials } from '/imports/api/common/server/helpers';
2016-11-12 03:02:46 +08:00
function presentations() {
if (!this.userId) {
return Presentations.find({ meetingId: '' });
}
const { meetingId, requesterUserId } = extractCredentials(this.userId);
2016-11-12 03:02:46 +08:00
Logger.debug(`Publishing Presentations for ${meetingId} ${requesterUserId}`);
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 boundPresentations(...args);
2017-06-06 03:12:06 +08:00
}
Meteor.publish('presentations', publish);