bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/users/server/eventHandlers.js
2017-06-21 13:54:04 -03:00

29 lines
1.7 KiB
JavaScript

import RedisPubSub from '/imports/startup/server/redis2x';
// import handleGetUsers from './handlers/getUsers';
import handleRemoveUser from './handlers/removeUser';
// import handleKickUser from './handlers/kickUser';
// import handlePresenterAssigned from './handlers/presenterAssigned';
// import handleEmojiStatus from './handlers/emojiStatus';
// import handleLockedStatusChange from './handlers/lockedStatusChange';
import handleUserJoined from './handlers/userJoined';
import handleValidateAuthToken from './handlers/validateAuthToken';
import handleVoiceUpdate from './handlers/voiceUpdate';
//import handleListeningOnly from './handlers/listeningOnly';
// RedisPubSub.on('validate_auth_token_reply', handleValidateAuthToken);
// RedisPubSub.on('get_users_reply', handleGetUsers);
RedisPubSub.on('UserJoinedMeetingEvtMsg', handleUserJoined);
// RedisPubSub.on('user_eject_from_meeting', handleKickUser);
// RedisPubSub.on('disconnect_user_message', handleRemoveUser);
RedisPubSub.on('UserLeftMeetingEvtMsg', handleRemoveUser);
// RedisPubSub.on('presenter_assigned_message', handlePresenterAssigned);
// RedisPubSub.on('user_emoji_status_message', handleEmojiStatus);
// RedisPubSub.on('user_locked_message', handleLockedStatusChange);
// RedisPubSub.on('user_unlocked_message', handleLockedStatusChange);
RedisPubSub.on('UserLeftVoiceConfToClientEvtMsg', handleVoiceUpdate);
RedisPubSub.on('UserJoinedVoiceConfToClientEvtMsg', handleVoiceUpdate);
//RedisPubSub.on('user_voice_talking_message', handleVoiceUpdate);
//RedisPubSub.on('user_voice_muted_message', handleVoiceUpdate);
//RedisPubSub.on('user_listening_only', handleListeningOnly);
RedisPubSub.on('ValidateAuthTokenRespMsg', handleValidateAuthToken);