2017-10-12 08:52:57 +08:00
|
|
|
import { getMultiUserStatus } from '/imports/api/common/server/helpers';
|
2017-10-12 10:00:28 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2017-04-20 02:27:00 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { check } from 'meteor/check';
|
|
|
|
|
2018-08-01 21:21:33 +08:00
|
|
|
import isPodPresenter from '/imports/api/presentation-pods/server/utils/isPodPresenter';
|
|
|
|
|
2017-05-11 02:59:17 +08:00
|
|
|
export default function undoAnnotation(credentials, whiteboardId) {
|
2018-01-08 08:24:05 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
2017-10-12 08:52:57 +08:00
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'UndoWhiteboardPubMsg';
|
2017-04-20 02:27:00 +08:00
|
|
|
|
|
|
|
const { meetingId, requesterUserId, requesterToken } = credentials;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(requesterToken, String);
|
2017-05-11 02:59:17 +08:00
|
|
|
check(whiteboardId, String);
|
2017-04-20 02:27:00 +08:00
|
|
|
|
2018-08-01 21:21:33 +08:00
|
|
|
const allowed = isPodPresenter(meetingId, whiteboardId, requesterUserId)
|
|
|
|
|| getMultiUserStatus(meetingId, whiteboardId);
|
|
|
|
|
2017-10-12 08:52:57 +08:00
|
|
|
if (!allowed) {
|
2018-01-08 08:25:56 +08:00
|
|
|
throw new Meteor.Error('not-allowed', `User ${requesterUserId} is not allowed to undo the annotation`);
|
2017-10-12 08:52:57 +08:00
|
|
|
}
|
|
|
|
|
2017-07-15 07:20:16 +08:00
|
|
|
const payload = {
|
2017-10-12 08:52:57 +08:00
|
|
|
whiteboardId,
|
2017-04-20 02:27:00 +08:00
|
|
|
};
|
|
|
|
|
2017-10-12 08:52:57 +08:00
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
2017-04-20 02:27:00 +08:00
|
|
|
}
|