blob: 20831a025756f1f6d934f2077765ca4b8f611556 [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.pinot.core.auth;
import java.util.Set;
import java.util.stream.Collectors;
/**
* Container object for basic auth principal
*/
public class BasicAuthPrincipal {
private final String _name;
private final String _token;
private final Set<String> _tables;
private final Set<String> _permissions;
public BasicAuthPrincipal(String name, String token, Set<String> tables, Set<String> permissions) {
_name = name;
_token = token;
_tables = tables;
_permissions = permissions.stream().map(s -> s.toLowerCase()).collect(Collectors.toSet());
}
public String getName() {
return _name;
}
public String getToken() {
return _token;
}
public boolean hasTable(String tableName) {
return _tables.isEmpty() || _tables.contains(tableName);
}
public boolean hasPermission(String permission) {
return _permissions.isEmpty() || _permissions.contains(permission.toLowerCase());
}
@Override
public String toString() {
return "BasicAuthPrincipal{"
+ "_name='" + _name + '\''
+ ", _token='" + _token + '\''
+ ", _tables=" + _tables
+ ", _permissions=" + _permissions
+ '}';
}
}