2017-02-22 21:42:42 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { check } from 'meteor/check';
|
2017-10-12 10:00:28 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
2017-02-22 21:42:42 +08:00
|
|
|
import Logger from '/imports/startup/server/logger';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2017-02-22 21:42:42 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function setEmojiStatus(userId, status) {
|
2018-01-08 08:24:05 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
2017-10-12 09:02:23 +08:00
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'ChangeUserEmojiCmdMsg';
|
2017-02-22 21:42:42 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2017-02-22 21:42:42 +08:00
|
|
|
|
|
|
|
check(userId, String);
|
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
const payload = {
|
2017-10-12 09:02:23 +08:00
|
|
|
emoji: status,
|
|
|
|
userId,
|
2017-02-22 21:42:42 +08:00
|
|
|
};
|
|
|
|
|
2020-11-24 03:35:59 +08:00
|
|
|
Logger.verbose('User emoji status updated', {
|
|
|
|
userId, status, requesterUserId, meetingId,
|
|
|
|
});
|
2017-02-22 21:42:42 +08:00
|
|
|
|
2017-10-12 09:02:23 +08:00
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
2017-06-03 03:25:02 +08:00
|
|
|
}
|