30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
import Logger from '/imports/startup/server/logger';
|
|
import Users from '/imports/api/users';
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
|
import ClientConnections from '/imports/startup/server/ClientConnections';
|
|
import { check } from 'meteor/check';
|
|
|
|
export default function userLeftMeeting() { // TODO-- spread the code to method/modifier/handler
|
|
try {
|
|
// so we don't update the db in a method
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
|
|
|
check(meetingId, String);
|
|
check(requesterUserId, String);
|
|
|
|
const selector = {
|
|
meetingId,
|
|
userId: requesterUserId,
|
|
};
|
|
|
|
const numberAffected = Users.update(selector, { $set: { loggedOut: true } });
|
|
|
|
if (numberAffected) {
|
|
Logger.info(`user left id=${requesterUserId} meeting=${meetingId}`);
|
|
ClientConnections.removeClientConnection(this.userId, this.connection.id);
|
|
}
|
|
} catch (err) {
|
|
Logger.error(`Exception while invoking method userLeftMeeting ${err.stack}`);
|
|
}
|
|
}
|