package com.bigdata.suitable.common.component;
import org.spring work.security.access.AccessDecisionManager;
import org.spring work.security.access.AccessDeniedException;
import org.spring work.security.access.ConfigAttribute;
import org.spring work.security.authentication.InsufficientAuthenticationException;
import org.spring work.security.core.Authentication;
import org.spring work.security.core.GrantedAuthority;
import org.spring work.stereotype.Component;
import java.util.Collection;
import java.util.Iterator;
/**
* @ProjectName: car-back
* @Package: com.bigdata.car.common.component
* @ClassName: BAccessDecisionManager
* @Author: zhaowei
* @Date: 2020/6/12 19:46
* @Version: 1.0
*/
// decide 方法是判定是否拥有权限的决策方法,
//authentication 是释CustomUserService中循环添加到 GrantedAuthority 对象中的权限信息集合.
// 包含客户端发起的请求的requset信息,可转换为 HttpServletRequest request = ((FilterInvocation) ).getHttpRequest();
//configAttributes 为MyInvocationSecurity dataSource的getAttributes( )这个方法返回的结果,此方法是为了判定用户请求的url 是否在权限表中,如果在权限表中,则返回给 decide 方法,用来判定用户是否有此权限。如果不在权限表中则放行。
@Component
public class BAccessDecisionManager implements AccessDecisionManager {
@Override
public void decide(Authentication authentication, o, Collection<ConfigAttribute> configAttributes) throws AccessDeniedException, InsufficientAuthenticationException {
if(null== configAttributes || configAttributes.size() <=0) {
return;
}
ConfigAttribute c;
String needRole;
for(Iterator<ConfigAttribute> iter = configAttributes.iterator(); iter.hasNext(); ) {
c = iter.next();
needRole = c.getAttribute();
for(GrantedAuthority ga : authentication.getAuthorities()) {//authentication 为在注释1 中循环添加到 GrantedAuthority 对象中的权限信息集合
if(needRole.trim().equals(ga.getAuthority())) {
return;
}
}
}
throw new AccessDeniedException("无访问权限");
}
@Override
public boolean supports(ConfigAttribute configAttribute) {
return true;
}
@Override
public boolean supports(Class<?> aClass) {
return true;
}
}