com.facebook.presto.jdbc.internal.spi.security.SelectedRole Maven / Gradle / Ivy
/*
* Licensed 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 com.facebook.presto.jdbc.internal.spi.security;
import com.facebook.presto.jdbc.internal.drift.annotations.ThriftConstructor;
import com.facebook.presto.jdbc.internal.drift.annotations.ThriftEnum;
import com.facebook.presto.jdbc.internal.drift.annotations.ThriftEnumValue;
import com.facebook.presto.jdbc.internal.drift.annotations.ThriftField;
import com.facebook.presto.jdbc.internal.drift.annotations.ThriftStruct;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonCreator;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.Optional;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static java.util.Objects.requireNonNull;
@ThriftStruct
public class SelectedRole
{
@ThriftEnum
public enum Type
{
ROLE(1), ALL(2), NONE(3);
private final int value;
Type(int value)
{
this.value = value;
}
@ThriftEnumValue
public int getValue()
{
return value;
}
}
private static final Pattern PATTERN = Pattern.compile("(ROLE|ALL|NONE)(\\{(.+?)\\})?");
private final Type type;
private final Optional role;
@ThriftConstructor
@JsonCreator
public SelectedRole(@JsonProperty("type") Type type, @JsonProperty("role") Optional role)
{
this.type = requireNonNull(type, "type is null");
this.role = requireNonNull(role, "role is null");
if (type == Type.ROLE && !role.isPresent()) {
throw new IllegalArgumentException("Role must be present for the selected role type: " + type);
}
}
@ThriftField(1)
@JsonProperty
public Type getType()
{
return type;
}
@ThriftField(2)
@JsonProperty
public Optional getRole()
{
return role;
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SelectedRole that = (SelectedRole) o;
return type == that.type &&
Objects.equals(role, that.role);
}
@Override
public int hashCode()
{
return Objects.hash(type, role);
}
@Override
public String toString()
{
StringBuilder result = new StringBuilder();
result.append(type);
role.ifPresent(s -> result.append("{").append(s).append("}"));
return result.toString();
}
public static SelectedRole valueOf(String value)
{
Matcher m = PATTERN.matcher(value);
if (m.matches()) {
Type type = Type.valueOf(m.group(1));
Optional role = Optional.ofNullable(m.group(3));
return new SelectedRole(type, role);
}
throw new IllegalArgumentException("Could not parse selected role: " + value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy