bigbluebutton-Github/bigbluebutton-html5/imports/api/users/server/modifiers/addUser.js

110 lines
2.9 KiB
JavaScript
Raw Normal View History

import { check } from 'meteor/check';
import Logger from '/imports/startup/server/logger';
import Users from '/imports/api/users';
import Meetings from '/imports/api/meetings';
import VoiceUsers from '/imports/api/voice-users/';
2020-07-17 23:08:02 +08:00
import _ from 'lodash';
import SanitizeHTML from 'sanitize-html';
2017-10-12 09:02:23 +08:00
import stringHash from 'string-hash';
import flat from 'flat';
import addVoiceUser from '/imports/api/voice-users/server/modifiers/addVoiceUser';
2017-10-12 09:02:23 +08:00
const COLOR_LIST = [
2018-05-30 00:40:50 +08:00
'#7b1fa2', '#6a1b9a', '#4a148c', '#5e35b1', '#512da8', '#4527a0',
2017-10-12 09:02:23 +08:00
'#311b92', '#3949ab', '#303f9f', '#283593', '#1a237e', '#1976d2', '#1565c0',
2018-05-30 00:40:50 +08:00
'#0d47a1', '#0277bd', '#01579b',
2017-10-12 09:02:23 +08:00
];
2020-07-17 23:08:02 +08:00
export default function addUser(meetingId, userData) {
const user = userData;
const sanitizedName = SanitizeHTML(userData.name, {
allowedTags: [],
allowedAttributes: {},
});
// if user typed only tags
user.name = sanitizedName.length === 0
? _.escape(userData.name)
: sanitizedName;
check(meetingId, String);
2017-02-24 01:59:56 +08:00
2017-10-12 09:02:23 +08:00
check(user, {
intId: String,
extId: String,
name: String,
role: String,
guest: Boolean,
authed: Boolean,
waitingForAcceptance: Match.Maybe(Boolean),
guestStatus: String,
2017-10-12 09:02:23 +08:00
emoji: String,
presenter: Boolean,
locked: Boolean,
avatar: String,
clientType: String,
2017-10-12 09:02:23 +08:00
});
const userId = user.intId;
const selector = {
meetingId,
userId,
};
const Meeting = Meetings.findOne({ meetingId });
2017-10-12 09:02:23 +08:00
/* While the akka-apps dont generate a color we just pick one
from a list based on the userId */
const color = COLOR_LIST[stringHash(user.intId) % COLOR_LIST.length];
2017-06-05 22:16:19 +08:00
const modifier = {
2017-10-12 09:02:23 +08:00
$set: Object.assign(
{
meetingId,
sortName: user.name.trim().toLowerCase(),
color,
2019-11-20 01:49:18 +08:00
mobile: false,
2019-02-08 01:56:33 +08:00
breakoutProps: {
isBreakoutUser: Meeting.meetingProp.isBreakout,
parentId: Meeting.breakoutProps.parentId,
},
2019-03-12 08:34:34 +08:00
effectiveConnectionType: null,
2019-02-27 01:40:01 +08:00
inactivityCheck: false,
responseDelay: 0,
loggedOut: false,
2017-10-12 09:02:23 +08:00
},
flat(user),
),
};
// Only add an empty VoiceUser if there isn't one already and if the user coming in isn't a
// dial-in user. We want to avoid overwriting good data
if (user.clientType !== 'dial-in-user' && !VoiceUsers.findOne({ meetingId, intId: userId })) {
addVoiceUser(meetingId, {
voiceUserId: '',
intId: userId,
callerName: user.name,
callerNum: '',
muted: false,
talking: false,
callingWith: '',
listenOnly: false,
voiceConf: '',
joined: false,
});
}
2017-10-12 09:02:23 +08:00
try {
const { insertedId } = Users.upsert(selector, modifier);
if (insertedId) {
Logger.info(`Added user id=${userId} meeting=${meetingId}`);
} else {
Logger.info(`Upserted user id=${userId} meeting=${meetingId}`);
}
} catch (err) {
Logger.error(`Adding user to collection: ${err}`);
}
2017-06-03 03:25:02 +08:00
}