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';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2021-05-04 22:38:56 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2017-04-20 02:27:00 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function undoAnnotation(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
|
|
|
|
2021-05-04 22:38:56 +08:00
|
|
|
try {
|
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2017-04-20 02:27:00 +08:00
|
|
|
|
2021-05-04 22:38:56 +08:00
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(whiteboardId, String);
|
2017-04-20 02:27:00 +08:00
|
|
|
|
2021-05-04 22:38:56 +08:00
|
|
|
const payload = {
|
|
|
|
whiteboardId,
|
|
|
|
};
|
2017-04-20 02:27:00 +08:00
|
|
|
|
2021-05-04 22:38:56 +08:00
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
|
|
} catch (err) {
|
|
|
|
Logger.error(`Exception while invoking method undoAnnotation ${err.stack}`);
|
|
|
|
}
|
2017-04-20 02:27:00 +08:00
|
|
|
}
|