bigbluebutton-Github/bigbluebutton-html5/imports/api/slides/server/methods/switchSlide.js

57 lines
1.7 KiB
JavaScript
Raw Normal View History

import Presentations from '/imports/api/presentations';
import { Slides } from '/imports/api/slides';
2016-10-21 19:41:17 +08:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import RedisPubSub from '/imports/startup/server/redis';
import { extractCredentials } from '/imports/api/common/server/helpers';
2021-05-06 00:17:26 +08:00
import Logger from '/imports/startup/server/logger';
2016-10-21 19:41:17 +08:00
export default async function switchSlide(slideNumber, podId) {
// TODO-- send presentationId and SlideId
const REDIS_CONFIG = Meteor.settings.private.redis;
2017-10-12 08:59:35 +08:00
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'SetCurrentPagePubMsg';
2021-05-06 00:17:26 +08:00
try {
const { meetingId, requesterUserId } = extractCredentials(this.userId);
check(meetingId, String);
check(requesterUserId, String);
check(slideNumber, Number);
check(podId, String);
const selector = {
meetingId,
podId,
current: true,
};
const Presentation = await Presentations.findOneAsync(selector);
2021-05-06 00:17:26 +08:00
if (!Presentation) {
throw new Meteor.Error('presentation-not-found', 'You need a presentation to be able to switch slides');
}
const Slide = await Slides.findOneAsync({
2021-05-06 00:17:26 +08:00
meetingId,
podId,
presentationId: Presentation.id,
num: slideNumber,
});
if (!Slide) {
throw new Meteor.Error('slide-not-found', `Slide number ${slideNumber} not found in the current presentation`);
}
const payload = {
podId,
presentationId: Presentation.id,
pageId: Slide.id,
};
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
} catch (err) {
Logger.error(`Exception while invoking method switchSlide ${err.stack}`);
2016-10-21 19:41:17 +08:00
}
2017-06-03 03:25:02 +08:00
}