2017-10-12 10:00:28 +08:00
|
|
|
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);
|
|
|
|
|
2017-10-13 03:07:02 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2017-10-13 03:07:02 +08:00
|
|
|
Meteor.publish('captions', publish);
|