bigbluebutton-Github/bigbluebutton-html5/imports/api/users/server/methods/userLeaving.js

67 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-02-07 23:29:27 +08:00
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import RedisPubSub from '/imports/startup/server/redis';
import Logger from '/imports/startup/server/logger';
2020-09-10 19:49:22 +08:00
import AuthTokenValidation from '/imports/api/auth-token-validation';
import Users from '/imports/api/users';
import ClientConnections from '/imports/startup/server/ClientConnections';
export default async function userLeaving(meetingId, userId, connectionId) {
2021-05-06 00:47:43 +08:00
try {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'UserLeaveReqMsg';
check(userId, String);
const selector = {
meetingId,
userId,
};
const user = await Users.findOneAsync(selector);
2021-05-06 00:47:43 +08:00
if (!user) {
Logger.info(`Skipping userLeaving. Could not find ${userId} in ${meetingId}`);
return;
}
const auth = await AuthTokenValidation.findOneAsync({
2021-05-06 00:47:43 +08:00
meetingId,
userId,
}, { sort: { updatedAt: -1 } });
// If the current user connection is not the same that triggered the leave we skip
if (auth?.connectionId !== connectionId) {
Logger.info(`Skipping userLeaving. User connectionId=${user.connectionId} is different from requester connectionId=${connectionId}`);
return false;
}
const payload = {
userId,
sessionId: meetingId,
loggedOut: user.loggedOut || false,
2021-05-06 00:47:43 +08:00
};
ClientConnections.removeClientConnection(`${meetingId}--${userId}`, connectionId);
2022-10-07 21:38:50 +08:00
let reason;
if (user.loggedOut) {
// User explicitly requested logout.
reason = 'logout';
} else if (user.exitReason) {
// User didn't requested logout but exited graciously.
reason = user.exitReason;
} else {
// User didn't exit graciously (disconnection).
reason = 'disconnection';
}
Logger.info(`User '${userId}' is leaving meeting '${meetingId}' reason=${reason}`);
2021-05-06 00:47:43 +08:00
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, userId, payload);
} catch (err) {
Logger.error(`Exception while invoking method userLeaving ${err.stack}`);
2017-03-11 02:33:46 +08:00
}
2017-06-03 03:25:02 +08:00
}