bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/handlers/whiteboardSend.js

59 lines
2.0 KiB
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { check } from 'meteor/check';
2019-10-23 09:26:25 +08:00
import AnnotationsStreamer from '/imports/api/annotations/server/streamer';
import addAnnotation from '../modifiers/addAnnotation';
2020-12-10 23:07:06 +08:00
import Metrics from '/imports/startup/server/metrics';
2016-11-19 01:35:28 +08:00
2020-12-11 01:07:46 +08:00
const { queueMetrics } = Meteor.settings.private.redis.metrics;
const {
annotationsQueueProcessInterval: ANNOTATION_PROCESS_INTERVAL,
} = Meteor.settings.public.whiteboard;
2018-05-30 22:19:19 +08:00
let annotationsQueue = {};
let annotationsRecieverIsRunning = false;
const process = () => {
if (!Object.keys(annotationsQueue).length) {
annotationsRecieverIsRunning = false;
return;
}
annotationsRecieverIsRunning = true;
2019-10-23 09:26:25 +08:00
Object.keys(annotationsQueue).forEach((meetingId) => {
AnnotationsStreamer(meetingId).emit('added', { meetingId, annotations: annotationsQueue[meetingId] });
2020-12-16 03:20:32 +08:00
if (queueMetrics) {
Metrics.setAnnotationQueueLength(meetingId, 0);
}
});
annotationsQueue = {};
Meteor.setTimeout(process, ANNOTATION_PROCESS_INTERVAL);
};
export default async function handleWhiteboardSend({ envelope, header, body }, meetingId) {
const userId = header.userId;
const whiteboardId = body.whiteboardId;
const annotations = body.annotations;
const instanceIdFromMessage = parseInt(envelope.routing.html5InstanceId, 10) || 1;
const myInstanceId = parseInt(body.myInstanceId, 10) || 1;
2016-11-19 01:35:28 +08:00
check(userId, String);
2016-11-19 01:35:28 +08:00
check(whiteboardId, String);
check(annotations, Array);
2016-11-19 01:35:28 +08:00
2020-12-11 01:07:46 +08:00
if (!annotationsQueue.hasOwnProperty(meetingId)) {
annotationsQueue[meetingId] = [];
}
// we use a for loop here instead of a map because we need to guarantee the order of the annotations.
for (const annotation of annotations) {
2022-05-21 01:25:41 +08:00
annotationsQueue[meetingId].push({ meetingId, whiteboardId, userId: annotation.userId, annotation });
if (instanceIdFromMessage === myInstanceId) {
await addAnnotation(meetingId, whiteboardId, annotation.userId, annotation);
}
}
2020-12-11 01:07:46 +08:00
if (queueMetrics) {
Metrics.setAnnotationQueueLength(meetingId, annotationsQueue[meetingId].length);
}
if (!annotationsRecieverIsRunning) process();
2017-06-03 03:25:02 +08:00
}