27 lines
1.1 KiB
JavaScript
27 lines
1.1 KiB
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import pendingAuthenticationsStore from '../store/pendingAuthentications';
|
|
import BannedUsers from '../store/bannedUsers';
|
|
|
|
export default function validateAuthToken(meetingId, requesterUserId, requesterToken, externalId) {
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
const EVENT_NAME = 'ValidateAuthTokenReqMsg';
|
|
|
|
// Check if externalId is banned from the meeting
|
|
if (externalId && BannedUsers.has(meetingId, externalId)) return;
|
|
|
|
// Store reference of methodInvocationObject ( to postpone the connection userId definition )
|
|
pendingAuthenticationsStore.add(meetingId, requesterUserId, requesterToken, this);
|
|
|
|
const payload = {
|
|
userId: requesterUserId,
|
|
authToken: requesterToken,
|
|
};
|
|
|
|
Logger.info(`User '${requesterUserId}' is trying to validate auth token for meeting '${meetingId}' from connection '${this.connection.id}'`);
|
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
}
|