30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
import RedisPubSub from '/imports/startup/server/redis';
|
|
import { check } from 'meteor/check';
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
|
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';
|
|
|
|
try {
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
|
|
|
check(meetingId, String);
|
|
check(requesterUserId, String);
|
|
check(downloadable, Match.Maybe(Boolean));
|
|
check(presentationId, String);
|
|
|
|
const payload = {
|
|
presentationId,
|
|
podId: 'DEFAULT_PRESENTATION_POD',
|
|
downloadable,
|
|
};
|
|
|
|
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
} catch (err) {
|
|
Logger.error(`Exception while invoking method setPresentationDownloadable ${err.stack}`);
|
|
}
|
|
}
|