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

28 lines
921 B
JavaScript
Raw Normal View History

import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import RedisPubSub from '/imports/startup/server/redis';
import { extractCredentials } from '/imports/api/common/server/helpers';
2021-05-06 00:53:28 +08:00
import Logger from '/imports/startup/server/logger';
export default function getUserInformation(externalUserId) {
2021-05-06 00:53:28 +08:00
try {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toThirdParty;
const EVENT_NAME = 'LookUpUserReqMsg';
2021-05-06 00:53:28 +08:00
const { meetingId, requesterUserId } = extractCredentials(this.userId);
2021-05-06 00:53:28 +08:00
check(meetingId, String);
check(requesterUserId, String);
check(externalUserId, String);
2021-05-06 00:53:28 +08:00
const payload = {
externalUserId,
};
2021-05-06 00:53:28 +08:00
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
} catch (err) {
Logger.error(`Exception while invoking method getUserInformation ${err.stack}`);
}
}