2017-10-12 08:52:57 +08:00
|
|
|
import Acl from '/imports/startup/acl';
|
|
|
|
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';
|
|
|
|
|
2017-05-11 02:59:17 +08:00
|
|
|
export default function undoAnnotation(credentials, whiteboardId) {
|
2017-04-20 02:27:00 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.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
|
|
|
|
2017-10-12 08:52:57 +08:00
|
|
|
const allowed = Acl.can('methods.undoAnnotation', credentials) || getMultiUserStatus(meetingId);
|
|
|
|
if (!allowed) {
|
|
|
|
throw new Meteor.Error(
|
|
|
|
'not-allowed', `User ${requesterUserId} is not allowed to undo the annotation`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|