72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
import { check } from 'meteor/check';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import Meetings from '/imports/api/meetings';
|
|
import Users from '/imports/api/users';
|
|
|
|
import addChat from '/imports/api/chat/server/modifiers/addChat';
|
|
import clearUserSystemMessages from '/imports/api/chat/server/modifiers/clearUserSystemMessages';
|
|
|
|
import userJoin from '../methods/userJoin';
|
|
|
|
const clearOtherSessions = (sessionUserId, current = false) => {
|
|
const serverSessions = Meteor.server.sessions;
|
|
Object.keys(serverSessions)
|
|
.filter(i => serverSessions[i].userId === sessionUserId)
|
|
.filter(i => i !== current)
|
|
.forEach(i => serverSessions[i].close());
|
|
};
|
|
|
|
export default function handleValidateAuthToken({ body }, meetingId) {
|
|
const { userId, valid, waitForApproval } = body;
|
|
|
|
check(userId, String);
|
|
check(valid, Boolean);
|
|
check(waitForApproval, Boolean);
|
|
|
|
const selector = {
|
|
meetingId,
|
|
userId,
|
|
clientType: 'HTML5',
|
|
};
|
|
|
|
const User = Users.findOne(selector);
|
|
|
|
// If we dont find the user on our collection is a flash user and we can skip
|
|
if (!User) return;
|
|
|
|
// Publish user join message
|
|
if (valid && !waitForApproval) {
|
|
Logger.info('User=', JSON.stringify(User));
|
|
userJoin(meetingId, userId, User.authToken);
|
|
}
|
|
|
|
const modifier = {
|
|
$set: {
|
|
validated: valid,
|
|
approved: !waitForApproval,
|
|
},
|
|
};
|
|
|
|
const cb = (err, numChanged) => {
|
|
if (err) {
|
|
return Logger.error(`Validating auth token: ${err}`);
|
|
}
|
|
|
|
if (numChanged) {
|
|
if (valid) {
|
|
clearUserSystemMessages(meetingId, userId);
|
|
|
|
const sessionUserId = `${meetingId}-${userId}`;
|
|
const currentConnectionId = User.connectionId ? User.connectionId : false;
|
|
clearOtherSessions(sessionUserId, currentConnectionId);
|
|
}
|
|
|
|
return Logger.info(`Validated auth token as ${valid} user=${userId} meeting=${meetingId}`);
|
|
}
|
|
|
|
return Logger.info('No auth to validate');
|
|
};
|
|
|
|
Users.update(selector, modifier, cb);
|
|
}
|