bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/server/methods/removePresentation.js

29 lines
927 B
JavaScript
Raw Normal View History

import RedisPubSub from '/imports/startup/server/redis';
2017-05-04 00:36:16 +08:00
import { check } from 'meteor/check';
import { extractCredentials } from '/imports/api/common/server/helpers';
2021-05-05 22:34:36 +08:00
import Logger from '/imports/startup/server/logger';
2017-05-04 00:36:16 +08:00
export default function removePresentation(presentationId, podId) {
const REDIS_CONFIG = Meteor.settings.private.redis;
2017-09-08 02:18:14 +08:00
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'RemovePresentationPubMsg';
2017-05-04 00:36:16 +08:00
2021-05-05 22:34:36 +08:00
try {
const { meetingId, requesterUserId } = extractCredentials(this.userId);
2017-05-04 00:36:16 +08:00
2021-05-05 22:34:36 +08:00
check(meetingId, String);
check(requesterUserId, String);
check(presentationId, String);
check(podId, String);
2017-05-04 00:36:16 +08:00
2021-05-05 22:34:36 +08:00
const payload = {
presentationId,
podId,
};
2017-09-08 02:18:14 +08:00
2021-05-05 22:34:36 +08:00
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
} catch (err) {
Logger.error(`Exception while invoking method removePresentation ${err.stack}`);
}
2017-05-04 00:36:16 +08:00
}