44 lines
998 B
JavaScript
44 lines
998 B
JavaScript
import Annotations from '/imports/api/annotations';
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
export default function clearAnnotations(meetingId, whiteboardId, userId) {
|
|
const selector = {};
|
|
|
|
if (meetingId) {
|
|
selector.meetingId = meetingId;
|
|
}
|
|
|
|
if (whiteboardId) {
|
|
selector.whiteboardId = whiteboardId;
|
|
}
|
|
|
|
if (userId) {
|
|
selector.userId = userId;
|
|
}
|
|
|
|
try {
|
|
const numberAffected = Annotations.remove(selector);
|
|
|
|
if (numberAffected) {
|
|
if (userId) {
|
|
Logger.info(`Cleared Annotations for userId=${userId} where whiteboard=${whiteboardId}`);
|
|
return;
|
|
}
|
|
|
|
if (whiteboardId) {
|
|
Logger.info(`Cleared Annotations for whiteboard=${whiteboardId}`);
|
|
return;
|
|
}
|
|
|
|
if (meetingId) {
|
|
Logger.info(`Cleared Annotations (${meetingId})`);
|
|
return;
|
|
}
|
|
|
|
Logger.info('Cleared Annotations (all)');
|
|
}
|
|
} catch (err) {
|
|
Logger.error(`Removing Annotations from collection: ${err}`);
|
|
}
|
|
}
|