2017-10-12 10:00:28 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2017-05-04 00:36:16 +08:00
|
|
|
import { check } from 'meteor/check';
|
2017-10-12 10:00:28 +08:00
|
|
|
import Presentations from '/imports/api/presentations';
|
2017-05-04 00:36:16 +08:00
|
|
|
|
2018-09-05 00:56:10 +08:00
|
|
|
export default function removePresentation(credentials, presentationId, podId) {
|
2017-09-29 20:44:36 +08:00
|
|
|
const PRESENTATION_CONFIG = Meteor.settings.public.presentation;
|
2018-01-08 08:24:05 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
2017-09-08 02:18:14 +08:00
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'RemovePresentationPubMsg';
|
2017-05-04 00:36:16 +08:00
|
|
|
|
2017-06-07 20:28:41 +08:00
|
|
|
const { meetingId, requesterUserId } = credentials;
|
2017-05-04 00:36:16 +08:00
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(presentationId, String);
|
2018-09-05 00:56:10 +08:00
|
|
|
check(podId, String);
|
2017-05-04 00:36:16 +08:00
|
|
|
|
2017-09-29 22:10:35 +08:00
|
|
|
const presentationToDelete = Presentations.findOne({
|
2017-06-07 20:28:41 +08:00
|
|
|
meetingId,
|
2017-09-08 02:18:14 +08:00
|
|
|
id: presentationId,
|
2018-09-05 00:56:10 +08:00
|
|
|
podId,
|
2017-05-04 00:36:16 +08:00
|
|
|
});
|
|
|
|
|
2017-09-29 22:10:35 +08:00
|
|
|
if (presentationToDelete.name === PRESENTATION_CONFIG.defaultPresentationFile) {
|
2017-06-07 20:28:41 +08:00
|
|
|
throw new Meteor.Error('not-allowed', 'You are not allowed to remove the default slide');
|
2017-05-04 00:36:16 +08:00
|
|
|
}
|
|
|
|
|
2017-06-07 20:28:41 +08:00
|
|
|
const payload = {
|
2017-09-08 02:18:14 +08:00
|
|
|
presentationId,
|
2018-09-05 00:56:10 +08:00
|
|
|
podId,
|
2017-09-08 02:18:14 +08:00
|
|
|
};
|
|
|
|
|
2017-09-23 04:43:07 +08:00
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
2017-05-04 00:36:16 +08:00
|
|
|
}
|