org.languagetool.server.GroupRoles Maven / Gradle / Ivy
/* LanguageTool, a natural language style checker
* Copyright (C) 2020 Fabian Richter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.server;
import com.google.common.collect.Sets;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.stream.Collectors;
public enum GroupRoles {
// one user can have multiple roles
// basic user types - each user should only have one of those
EXISTING_MEMBER, // previously existing account, can only be removed from group, can't be deleted by owner/admin
MEMBER, // fully managed account, deleted on removal from the group
OWNER, // user who created group, full privileges
// flags for privileges
ADMIN, // full privileges
EDITOR; // can edit dictionary
public static final String SEPARATOR = ",";
// encode/decode for storage in database
public static String encode(List roles) {
String role = roles.stream().map(GroupRoles::name).collect(Collectors.joining(GroupRoles.SEPARATOR));
return role;
}
public static List decode(String value) {
String[] roleValues = value.split(GroupRoles.SEPARATOR);
return Arrays.stream(roleValues).map(GroupRoles::valueOf).collect(Collectors.toList());
}
public static boolean hasPermissions(@Nullable String role, GroupRoles... roles) {
if (role == null) {
return false;
}
HashSet userRoles = Sets.newHashSet(decode(role));
HashSet requiredRoles = Sets.newHashSet(Arrays.asList(roles));
return !Sets.intersection(userRoles, requiredRoles).isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy