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';
|
|
|
|
|
|
|
|
export default function setEmojiStatus(credentials, userId, status) {
|
|
|
|
const REDIS_CONFIG = Meteor.settings.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
|
|
|
|
|
|
|
const { meetingId, requesterUserId } = credentials;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2017-05-20 00:05:09 +08:00
|
|
|
Logger.verbose(`User '${userId}' emoji status updated to '${status}' by '${
|
|
|
|
requesterUserId}' from meeting '${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
|
|
|
}
|