2019-04-06 06:32:21 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { check } from 'meteor/check';
|
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2019-04-06 06:32:21 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function getUserInformation(externalUserId) {
|
2019-04-06 06:32:21 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toThirdParty;
|
|
|
|
const EVENT_NAME = 'LookUpUserReqMsg';
|
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2019-04-06 06:32:21 +08:00
|
|
|
check(externalUserId, String);
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
externalUserId,
|
|
|
|
};
|
|
|
|
|
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
|
|
}
|