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

25 lines
745 B
JavaScript
Raw Normal View History

import Captions from '/imports/api/captions';
2017-01-18 20:53:33 +08:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import Logger from '/imports/startup/server/logger';
2017-06-01 01:54:43 +08:00
import mapToAcl from '/imports/startup/mapToAcl';
2017-01-18 20:53:33 +08:00
2017-06-01 01:54:43 +08:00
function captions(credentials) {
2017-01-18 20:53:33 +08:00
const { meetingId, requesterUserId, requesterToken } = credentials;
check(meetingId, String);
check(requesterUserId, String);
check(requesterToken, String);
Logger.verbose(`Publishing Captions for ${meetingId} ${requesterUserId} ${requesterToken}`);
2017-01-18 20:53:33 +08:00
return Captions.find({ meetingId });
2017-06-06 03:12:06 +08:00
}
function publish(...args) {
const boundCaptions = captions.bind(this);
return mapToAcl('subscriptions.captions', boundCaptions)(args);
}
Meteor.publish('captions', publish);