2017-06-29 02:14:29 +08:00
|
|
|
import Cursor from '/imports/api/2.0/cursor';
|
2017-06-22 21:22:52 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { check } from 'meteor/check';
|
|
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
|
|
|
|
import mapToAcl from '/imports/startup/mapToAcl';
|
|
|
|
|
|
|
|
function cursor(credentials) {
|
|
|
|
const { meetingId, requesterUserId, requesterToken } = credentials;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(requesterToken, String);
|
|
|
|
|
2017-06-29 02:14:29 +08:00
|
|
|
Logger.debug(`Publishing Cursor2x for ${meetingId} ${requesterUserId} ${requesterToken}`);
|
2017-06-22 21:22:52 +08:00
|
|
|
|
|
|
|
return Cursor.find({ meetingId });
|
|
|
|
}
|
|
|
|
|
|
|
|
function publish(...args) {
|
|
|
|
const boundCursor = cursor.bind(this);
|
|
|
|
return mapToAcl('subscriptions.cursor', boundCursor)(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
Meteor.publish('cursor2x', publish);
|
|
|
|
|