bigbluebutton-Github/bigbluebutton-html5/imports/api/video-streams/server/methods/userShareWebcam.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-09-01 23:26:57 +08:00
import { Meteor } from 'meteor/meteor';
2017-09-19 21:53:27 +08:00
import { check } from 'meteor/check';
2017-09-01 23:26:57 +08:00
import Logger from '/imports/startup/server/logger';
import RedisPubSub from '/imports/startup/server/redis';
import { extractCredentials } from '/imports/api/common/server/helpers';
2017-09-01 23:26:57 +08:00
export default function userShareWebcam(stream) {
2021-05-06 01:52:50 +08:00
try {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'UserBroadcastCamStartMsg';
const { meetingId, requesterUserId } = extractCredentials(this.userId);
2017-09-01 23:26:57 +08:00
2021-05-06 01:52:50 +08:00
check(meetingId, String);
check(requesterUserId, String);
check(stream, String);
2021-05-06 01:52:50 +08:00
Logger.info(`user sharing webcam: ${meetingId} ${requesterUserId}`);
2017-09-01 23:26:57 +08:00
2021-05-06 01:52:50 +08:00
// const actionName = 'joinVideo';
/* TODO throw an error if user has no permission to share webcam
if (!isAllowedTo(actionName, credentials)) {
throw new Meteor.Error('not-allowed', `You are not allowed to share webcam`);
} */
2017-09-01 23:26:57 +08:00
2021-05-06 01:52:50 +08:00
const payload = {
stream,
};
2017-09-01 23:26:57 +08:00
2021-05-06 01:52:50 +08:00
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
} catch (err) {
Logger.error(`Exception while invoking method userShareWebcam ${err.stack}`);
}
2017-09-01 23:26:57 +08:00
}