2017-10-12 10:00:28 +08:00
|
|
|
import VoiceUsers from '/imports/api/voice-users';
|
2017-08-01 03:36:41 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import Logger from '/imports/startup/server/logger';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2017-08-01 03:36:41 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
function voiceUser() {
|
|
|
|
if (!this.userId) {
|
|
|
|
return VoiceUsers.find({ meetingId: '' });
|
|
|
|
}
|
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2017-08-01 03:36:41 +08:00
|
|
|
|
2019-03-09 00:00:16 +08:00
|
|
|
Logger.debug(`Publishing Voice User for ${meetingId} ${requesterUserId}`);
|
2017-08-01 03:36:41 +08:00
|
|
|
|
2017-08-01 21:10:12 +08:00
|
|
|
return VoiceUsers.find({ meetingId });
|
2017-08-01 03:36:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function publish(...args) {
|
|
|
|
const boundVoiceUser = voiceUser.bind(this);
|
2018-11-06 03:30:37 +08:00
|
|
|
return boundVoiceUser(...args);
|
2017-08-01 03:36:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Meteor.publish('voiceUsers', publish);
|