2017-10-12 10:00:28 +08:00
|
|
|
import Screenshare from '/imports/api/screenshare';
|
2017-10-12 05:52:19 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import Logger from '/imports/startup/server/logger';
|
2020-09-02 00:31:11 +08:00
|
|
|
import AuthTokenValidation, { ValidationStates } from '/imports/api/auth-token-validation';
|
2016-05-07 04:15:47 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
function screenshare() {
|
2020-09-02 00:31:11 +08:00
|
|
|
const tokenValidation = AuthTokenValidation.findOne({ connectionId: this.connection.id });
|
|
|
|
|
|
|
|
if (!tokenValidation || tokenValidation.validationStatus !== ValidationStates.VALIDATED) {
|
|
|
|
Logger.warn(`Publishing Screenshare was requested by unauth connection ${this.connection.id}`);
|
2020-02-07 04:47:28 +08:00
|
|
|
return Screenshare.find({ meetingId: '' });
|
|
|
|
}
|
2017-06-06 03:12:06 +08:00
|
|
|
|
2020-09-02 00:31:11 +08:00
|
|
|
const { meetingId, userId } = tokenValidation;
|
|
|
|
|
2020-11-24 23:13:09 +08:00
|
|
|
Logger.debug('Publishing Screenshare', { meetingId, userId });
|
2017-10-12 05:52:19 +08:00
|
|
|
|
|
|
|
return Screenshare.find({ meetingId });
|
|
|
|
}
|
2017-06-06 03:12:06 +08:00
|
|
|
|
|
|
|
function publish(...args) {
|
2017-10-12 05:52:19 +08:00
|
|
|
const boundScreenshare = screenshare.bind(this);
|
2018-11-06 03:30:37 +08:00
|
|
|
return boundScreenshare(...args);
|
2017-06-06 03:12:06 +08:00
|
|
|
}
|
|
|
|
|
2017-10-12 05:52:19 +08:00
|
|
|
Meteor.publish('screenshare', publish);
|