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

30 lines
1.0 KiB
JavaScript
Raw Normal View History

import RedisPubSub from '/imports/startup/server/redis';
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';
export default function setPresentationDownloadable(presentationId, downloadable) {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'SetPresentationDownloadablePubMsg';
2021-05-05 22:34:36 +08:00
try {
const { meetingId, requesterUserId } = extractCredentials(this.userId);
2021-05-05 22:34:36 +08:00
check(meetingId, String);
check(requesterUserId, String);
check(downloadable, Match.Maybe(Boolean));
2021-05-05 22:34:36 +08:00
check(presentationId, String);
2021-05-05 22:34:36 +08:00
const payload = {
presentationId,
podId: 'DEFAULT_PRESENTATION_POD',
downloadable,
};
2021-05-05 22:34:36 +08:00
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
} catch (err) {
Logger.error(`Exception while invoking method setPresentationDownloadable ${err.stack}`);
}
}