bigbluebutton-Github/bigbluebutton-html5/imports/api/common/server/helpers.js

69 lines
2.0 KiB
JavaScript
Raw Normal View History

import Users from '/imports/api/users';
import Logger from '/imports/startup/server/logger';
2016-05-13 01:43:59 +08:00
2018-04-12 21:41:32 +08:00
const MSG_DIRECT_TYPE = 'DIRECT';
const NODE_USER = 'nodeJSapp';
2016-05-13 01:43:59 +08:00
2019-11-15 01:07:02 +08:00
export const spokeTimeoutHandles = {};
export const clearSpokeTimeout = (meetingId, userId) => {
if (spokeTimeoutHandles[`${meetingId}-${userId}`]) {
Meteor.clearTimeout(spokeTimeoutHandles[`${meetingId}-${userId}`]);
delete spokeTimeoutHandles[`${meetingId}-${userId}`];
}
};
export const indexOf = [].indexOf || function (item) {
for (let i = 0, l = this.length; i < l; i += 1) {
2017-06-03 03:25:02 +08:00
if (i in this && this[i] === item) {
return i;
2016-06-28 02:24:37 +08:00
}
2017-06-03 03:25:02 +08:00
}
2016-06-28 02:24:37 +08:00
2017-06-03 03:25:02 +08:00
return -1;
};
export const processForHTML5ServerOnly = (fn) => (message, ...args) => {
2018-04-12 21:41:32 +08:00
const { envelope } = message;
const { routing } = envelope;
const { msgType, meetingId, userId } = routing;
2018-04-12 21:41:32 +08:00
const selector = {
userId,
meetingId,
};
const user = Users.findOne(selector);
const shouldSkip = user && msgType === MSG_DIRECT_TYPE && userId !== NODE_USER && user.clientType !== 'HTML5';
2018-04-12 21:41:32 +08:00
if (shouldSkip) return () => { };
2018-04-23 20:30:14 +08:00
return fn(message, ...args);
2018-04-12 21:41:32 +08:00
};
export const extractCredentials = (credentials) => {
if (!credentials) return {};
const credentialsArray = credentials.split('--');
const meetingId = credentialsArray[0];
const requesterUserId = credentialsArray[1];
return { meetingId, requesterUserId };
};
// Creates a background job to periodically check the result of the provided function.
// The provided function is publication-specific and must check the "survival condition" of the publication.
export const publicationSafeGuard = function (fn, self) {
let stopped = false;
const periodicCheck = function () {
if (stopped) return;
if (!fn()) {
self.added(self._name, 'publication-stop-marker', { id: 'publication-stop-marker', stopped: true });
self.stop();
} else Meteor.setTimeout(periodicCheck, 1000);
};
self.onStop(() => {
stopped = true;
Logger.info(`Publication ${self._name} has stopped in server side`);
});
periodicCheck();
};