blob: 9b39dccb9cdd22dfd9494d207423a047f7daccba [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License") + you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openmeetings.db.util;
import static org.apache.openmeetings.util.OpenmeetingsVariables.webAppRootKey;
import java.util.Set;
import org.apache.openmeetings.db.entity.calendar.Appointment;
import org.apache.openmeetings.db.entity.room.Room;
import org.apache.openmeetings.db.entity.room.RoomGroup;
import org.apache.openmeetings.db.entity.room.RoomModerator;
import org.apache.openmeetings.db.entity.user.GroupUser;
import org.apache.openmeetings.db.entity.user.User;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
public class AuthLevelUtil {
private static final Logger log = Red5LoggerFactory.getLogger(AuthLevelUtil.class, webAppRootKey);
private static boolean check(Set<User.Right> rights, User.Right level) {
boolean result = rights.contains(level);
log.debug(String.format("Level %s :: %s", level, result ? "[GRANTED]" : "[DENIED]"));
return result;
}
public static boolean hasUserLevel(Set<User.Right> rights) {
return check(rights, User.Right.Room);
}
public static Room.Right getRoomRight(User u, Room r, Appointment a, int userCount) {
Room.Right result = null;
if (hasAdminLevel(u.getRights())) {
//admin user get superModerator level, no-one can kick him/her
result = Room.Right.superModerator;
} else if (r.isAppointment() && a != null) {
// appointment owner is super moderator
if (u.getId().equals(a.getOwner().getId())) {
result = Room.Right.superModerator;
}
}
if (result == null) {
if (!r.isModerated() && 1 == userCount) {
//room is not moderated, first user is moderator!
result = Room.Right.moderator;
}
//performing loop here to set possible 'superModerator' right
for (RoomModerator rm : r.getModerators()) {
if (u.getId().equals(rm.getUser().getId())) {
result = rm.isSuperModerator() ? Room.Right.superModerator : Room.Right.moderator;
break;
}
}
//no need to loop if client is moderator
if (result == null && !r.getRoomGroups().isEmpty()) {
for (RoomGroup rg : r.getRoomGroups()) {
for (GroupUser gu : u.getGroupUsers()) {
if (gu.getGroup().getId().equals(rg.getGroup().getId()) && gu.isModerator()) {
result = Room.Right.moderator;
break;
}
}
if (result != null) {
break;
}
}
}
}
return result;
}
public static boolean hasAdminLevel(Set<User.Right> rights) {
return check(rights, User.Right.Admin);
}
public static boolean hasWebServiceLevel(Set<User.Right> rights) {
return check(rights, User.Right.Soap);
}
public static boolean hasLoginLevel(Set<User.Right> rights) {
return check(rights, User.Right.Login);
}
}