2018-08-16 19:20:02 +08:00
|
|
|
import Presentations from '/imports/api/presentations';
|
2019-08-01 03:10:41 +08:00
|
|
|
import { Slides } from '/imports/api/slides';
|
2018-08-16 19:20:02 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2018-08-16 19:20:02 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function zoomSlide(slideNumber, podId, widthRatio, heightRatio, x, y) { // TODO-- send presentationId and SlideId
|
2018-08-16 19:20:02 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
|
|
|
|
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'ResizeAndMovePagePubMsg';
|
2020-02-07 04:47:28 +08:00
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2018-08-16 19:20:02 +08:00
|
|
|
|
|
|
|
const selector = {
|
|
|
|
meetingId,
|
|
|
|
podId,
|
|
|
|
current: true,
|
|
|
|
};
|
|
|
|
const Presentation = Presentations.findOne(selector);
|
|
|
|
|
|
|
|
if (!Presentation) {
|
|
|
|
throw new Meteor.Error('presentation-not-found', 'You need a presentation to be able to switch slides');
|
|
|
|
}
|
|
|
|
|
|
|
|
const Slide = Slides.findOne({
|
|
|
|
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,
|
|
|
|
xOffset: x,
|
|
|
|
yOffset: y,
|
|
|
|
widthRatio,
|
|
|
|
heightRatio,
|
|
|
|
};
|
|
|
|
|
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
|
|
}
|