org.noear.solon.auth.AuthProcessorBase Maven / Gradle / Ivy
/*
* Copyright 2017-2024 noear.org and authors
*
* 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
*
* https://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.noear.solon.auth;
import org.noear.solon.auth.annotation.Logical;
import java.util.List;
/**
* 认证处理器加强基类
*
* @author noear
* @since 1.4
*/
public abstract class AuthProcessorBase implements AuthProcessor {
/**
* 验证IP
*/
@Override
public boolean verifyIp(String ip) {
return false;
}
/**
* 验证登录状态
*/
@Override
public boolean verifyLogined() {
return false;
}
/**
* 验证路径(一般使用路径验证)
*
* @param path 路径
* @param method 请求方式
*/
@Override
public boolean verifyPath(String path, String method) {
return false;
}
/**
* 验证特定权限(有特殊情况用权限验证)
*
* @param permissions 权限
* @param logical 认证的逻辑关系
*/
@Override
public boolean verifyPermissions(String[] permissions, Logical logical) {
List list = getPermissions();
if (list == null || list.size() == 0) {
return false;
}
if (Logical.AND == logical) {
boolean isOk = true;
for (String v : permissions) {
isOk = isOk && list.contains(v);
}
return isOk;
} else {
for (String v : permissions) {
if (list.contains(v)) {
return true;
}
}
return false;
}
}
/**
* 验证特定角色(有特殊情况用角色验证)
*
* @param roles 角色
* @param logical 认证的逻辑关系
*/
@Override
public boolean verifyRoles(String[] roles, Logical logical) {
List list = getRoles();
if (list == null || list.size() == 0) {
return false;
}
if (Logical.AND == logical) {
boolean isOk = true;
for (String v : roles) {
isOk = isOk && list.contains(v);
}
return isOk;
} else {
for (String v : roles) {
if (list.contains(v)) {
return true;
}
}
return false;
}
}
/**
* 获取用户权限列表
*/
protected abstract List getPermissions();
/**
* 获取用户角色列表
*/
protected abstract List getRoles();
}