2017-02-23 02:59:47 +08:00
|
|
|
import { check } from 'meteor/check';
|
2017-10-12 09:02:23 +08:00
|
|
|
import Users from '/imports/api/2.0/users';
|
2017-02-23 02:59:47 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2017-10-12 09:02:23 +08:00
|
|
|
import removeVoiceUser from '/imports/api/2.0/voice-users/server/modifiers/removeVoiceUser';
|
2017-02-23 02:59:47 +08:00
|
|
|
|
|
|
|
const CLIENT_TYPE_HTML = 'HTML5';
|
|
|
|
|
|
|
|
export default function removeUser(meetingId, userId) {
|
|
|
|
check(meetingId, String);
|
|
|
|
check(userId, String);
|
|
|
|
|
|
|
|
const selector = {
|
|
|
|
meetingId,
|
|
|
|
userId,
|
|
|
|
};
|
|
|
|
|
|
|
|
const modifier = {
|
|
|
|
$set: {
|
2017-10-12 09:02:23 +08:00
|
|
|
connectionStatus: 'offline',
|
|
|
|
validated: false,
|
|
|
|
emoji: 'none',
|
|
|
|
presenter: false,
|
|
|
|
role: 'VIEWER',
|
2017-02-23 02:59:47 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2017-10-12 09:02:23 +08:00
|
|
|
removeVoiceUser(meetingId, {
|
|
|
|
voiceConf: '',
|
|
|
|
voiceUserId: '',
|
|
|
|
intId: userId,
|
|
|
|
});
|
|
|
|
|
|
|
|
const cb = (err) => {
|
2017-02-23 02:59:47 +08:00
|
|
|
if (err) {
|
|
|
|
return Logger.error(`Removing user from collection: ${err}`);
|
|
|
|
}
|
|
|
|
|
2017-10-12 09:02:23 +08:00
|
|
|
return Logger.info(`Removed ${CLIENT_TYPE_HTML} user id=${userId} meeting=${meetingId}`);
|
2017-02-23 02:59:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
return Users.update(selector, modifier, cb);
|
2017-06-03 03:25:02 +08:00
|
|
|
}
|