2017-10-12 10:00:28 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2017-09-29 21:29:55 +08:00
|
|
|
import { check } from 'meteor/check';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2021-05-05 22:34:36 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2017-09-29 21:29:55 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function setPresentation(presentationId, podId) {
|
2018-01-08 08:24:05 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
2017-09-29 21:29:55 +08:00
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'SetCurrentPresentationPubMsg';
|
|
|
|
|
2021-05-05 22:34:36 +08:00
|
|
|
try {
|
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2017-09-29 21:29:55 +08:00
|
|
|
|
2021-05-05 22:34:36 +08:00
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(presentationId, String);
|
|
|
|
check(podId, String);
|
2017-09-29 21:29:55 +08:00
|
|
|
|
2021-05-05 22:34:36 +08:00
|
|
|
const payload = {
|
|
|
|
presentationId,
|
|
|
|
podId,
|
|
|
|
};
|
|
|
|
|
|
|
|
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
|
|
} catch (err) {
|
|
|
|
Logger.error(`Exception while invoking method setPresentation ${err.stack}`);
|
|
|
|
}
|
2017-09-29 21:29:55 +08:00
|
|
|
}
|