2017-02-22 21:42:42 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { check } from 'meteor/check';
|
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
|
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
|
|
|
|
export default function setEmojiStatus(credentials, userId, status) {
|
|
|
|
const REDIS_CONFIG = Meteor.settings.redis;
|
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toBBBApps.users;
|
|
|
|
const EVENT_NAME = 'user_emoji_status_message';
|
|
|
|
|
|
|
|
const { meetingId, requesterUserId } = credentials;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
check(requesterUserId, String);
|
|
|
|
check(userId, String);
|
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
const payload = {
|
2017-02-22 21:42:42 +08:00
|
|
|
emoji_status: status,
|
|
|
|
userid: userId,
|
|
|
|
meeting_id: meetingId,
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
return RedisPubSub.publish(CHANNEL, EVENT_NAME, payload);
|
2017-06-03 03:25:02 +08:00
|
|
|
}
|