bigbluebutton-Github/bigbluebutton-html5/imports/api/users/server/methods/changeRole.js

39 lines
1.1 KiB
JavaScript

import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import RedisPubSub from '/imports/startup/server/redis';
import Logger from '/imports/startup/server/logger';
import Users from '/imports/api/users';
export default function changeRole(credentials, userId, role) {
const REDIS_CONFIG = Meteor.settings.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'ChangeUserRoleCmdMsg';
const { meetingId, requesterUserId } = credentials;
check(meetingId, String);
check(requesterUserId, String);
check(userId, String);
check(role, String);
const User = Users.findOne({
meetingId,
userId,
});
if (!User) {
throw new Meteor.Error(
'user-not-found', `You need a valid user to be able to set '${role}'`);
}
const payload = {
userId,
role,
changedBy: requesterUserId,
};
Logger.verbose(`User '${userId}' setted as '${role} role by '${requesterUserId}' from meeting '${meetingId}'`);
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
}