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

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { check } from 'meteor/check';
import { AnnotationsStreamer } from '/imports/api/annotations';
import addAnnotation from '../modifiers/addAnnotation';
2016-11-19 01:35:28 +08:00
2018-05-30 22:19:19 +08:00
const ANNOTATION_PROCCESS_INTERVAL = 60;
let annotationsQueue = {};
let annotationsRecieverIsRunning = false;
const proccess = () => {
if (!Object.keys(annotationsQueue).length) {
annotationsRecieverIsRunning = false;
return;
}
annotationsRecieverIsRunning = true;
Object.keys(annotationsQueue).forEach(meetingId => {
AnnotationsStreamer.emit('added', { meetingId, annotations: annotationsQueue[meetingId] });
});
annotationsQueue = {};
2018-05-30 22:19:19 +08:00
Meteor.setTimeout(proccess, ANNOTATION_PROCCESS_INTERVAL);
};
export default function handleWhiteboardSend({ header, body }, meetingId) {
const userId = header.userId;
const annotation = body.annotation;
2016-11-19 01:35:28 +08:00
check(userId, String);
check(annotation, Object);
2016-11-19 01:35:28 +08:00
const whiteboardId = annotation.wbId;
2016-11-19 01:35:28 +08:00
check(whiteboardId, String);
if(!annotationsQueue.hasOwnProperty(meetingId)) {
annotationsQueue[meetingId] = [];
}
annotationsQueue[meetingId].push({ meetingId, whiteboardId, userId, annotation });
if (!annotationsRecieverIsRunning) proccess();
return addAnnotation(meetingId, whiteboardId, userId, annotation);
2017-06-03 03:25:02 +08:00
}