f43b77c19f
Conflicts: bigbluebutton-html5/imports/startup/client/base.jsx bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx bigbluebutton-html5/imports/ui/components/app/container.jsx bigbluebutton-html5/imports/ui/components/screenshare/service.js bigbluebutton-html5/imports/ui/components/video-dock/component.jsx bigbluebutton-html5/imports/ui/components/video-dock/container.jsx bigbluebutton-html5/private/locales/en.json bigbluebutton-html5/server/main.js
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import { check } from 'meteor/check';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import RedisPubSub from '/imports/startup/server/redis2x';
|
|
|
|
export default function userUnshareWebcam(credentials, message) {
|
|
const REDIS_CONFIG = Meteor.settings.redis;
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
const EVENT_NAME = 'UserBroadcastCamStopMsg';
|
|
|
|
const { meetingId, requesterUserId, requesterToken } = credentials;
|
|
|
|
Logger.info(' user unsharing webcam: ', credentials);
|
|
|
|
check(meetingId, String);
|
|
check(requesterUserId, String);
|
|
check(requesterToken, String);
|
|
// check(message, Object);
|
|
|
|
// 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`);
|
|
} */
|
|
|
|
const payload = {
|
|
stream: message,
|
|
isHtml5Client: true,
|
|
};
|
|
|
|
const header = {
|
|
meetingId,
|
|
name: EVENT_NAME,
|
|
userId: requesterUserId,
|
|
};
|
|
|
|
return RedisPubSub.publish(CHANNEL, EVENT_NAME, meetingId, payload, header);
|
|
}
|