32 lines
776 B
JavaScript
32 lines
776 B
JavaScript
|
import { check } from 'meteor/check';
|
||
|
import Logger from '/imports/startup/server/logger';
|
||
|
import Users from '/imports/api/users';
|
||
|
|
||
|
export default function updateUserConnectionId(meetingId, userId, connectionId) {
|
||
|
check(meetingId, String);
|
||
|
check(userId, String);
|
||
|
check(connectionId, String);
|
||
|
|
||
|
const selector = { meetingId, userId };
|
||
|
|
||
|
const modifier = {
|
||
|
$set: {
|
||
|
currentConnectionId: connectionId,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const User = Users.findOne(selector);
|
||
|
|
||
|
if (User) {
|
||
|
try {
|
||
|
const updated = Users.update(selector, modifier);
|
||
|
|
||
|
if (updated) {
|
||
|
Logger.info(`Updated connection user=${userId} connectionid=${connectionId} meeting=${meetingId}`);
|
||
|
}
|
||
|
} catch (err) {
|
||
|
Logger.error(`Updating user connection: ${err}`);
|
||
|
}
|
||
|
}
|
||
|
}
|