/** * The MIT License (MIT) * Copyright (c) 2020 铭软科技(mingsoft.net) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package net.mingsoft.basic.security; import java.util.List; import org.apache.commons.lang3.StringUtils; import org.apache.shiro.authc.AuthenticationException; import org.apache.shiro.authc.AuthenticationInfo; import org.apache.shiro.authc.AuthenticationToken; import org.apache.shiro.authc.SimpleAuthenticationInfo; import org.apache.shiro.authc.UsernamePasswordToken; import org.apache.shiro.authc.credential.SimpleCredentialsMatcher; import org.apache.shiro.authz.AuthorizationInfo; import org.apache.shiro.authz.SimpleAuthorizationInfo; import org.apache.shiro.cache.Cache; import org.apache.shiro.realm.AuthorizingRealm; import org.apache.shiro.subject.PrincipalCollection; import org.apache.shiro.subject.SimplePrincipalCollection; import org.springframework.beans.factory.annotation.Autowired; import net.mingsoft.basic.biz.IManagerBiz; import net.mingsoft.basic.biz.IModelBiz; import net.mingsoft.basic.entity.ManagerEntity; import net.mingsoft.basic.entity.ModelEntity; import net.mingsoft.base.entity.BaseEntity; /** * shiro权限控制 * * @author killfenQQ:78750478 * @version 版本号:<br/> * 创建日期:2015年9月9日<br/> * 历史修订:<br/> */ public class BaseAuthRealm extends AuthorizingRealm { /** * 管理员业务层 */ @Autowired private IManagerBiz managerBiz; /** * 模块业务层 */ @Autowired private IModelBiz modelBiz; /** * 构造 */ public BaseAuthRealm() { // TODO Auto-generated constructor stub super(); // 设置认证token的实现类 setAuthenticationTokenClass(UsernamePasswordToken.class); // 设置加密算法 setCredentialsMatcher(new SimpleCredentialsMatcher()); } /** * 功能操作授权 */ protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) { String loginName = (String) principalCollection.fromRealm(getName()).iterator().next(); ManagerEntity newManager = new ManagerEntity(); newManager.setManagerName(loginName); ManagerEntity manager = (ManagerEntity) managerBiz.getEntity(newManager); if (null == manager) { return null; } else { SimpleAuthorizationInfo result = new SimpleAuthorizationInfo(); // 查询管理员对应的角色 List<BaseEntity> models = modelBiz.queryModelByRoleId(manager.getManagerRoleID()); for (BaseEntity e:models) { ModelEntity me = (ModelEntity) e; if (!StringUtils.isEmpty(me.getModelUrl())) { result.addStringPermission(me.getModelUrl()); } } return result; } } /** * 新登用户验证 */ protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException { UsernamePasswordToken upToken = (UsernamePasswordToken) token; ManagerEntity newManager = new ManagerEntity(); newManager.setManagerName(upToken.getUsername()); ManagerEntity manager = (ManagerEntity) managerBiz.getEntity(newManager); if (manager != null) { return new SimpleAuthenticationInfo(manager.getManagerName(), manager.getManagerPassword(), getName()); } return null; } /** * 更新用户授权信息缓存. */ public void clearCachedAuthorizationInfo(String principal) { SimplePrincipalCollection principals = new SimplePrincipalCollection(principal, getName()); clearCachedAuthorizationInfo(principals); } /** * 清除所有用户授权信息缓存. */ public void clearAllCachedAuthorizationInfo() { Cache<Object, AuthorizationInfo> cache = getAuthorizationCache(); if (cache != null) { for (Object key : cache.keys()) { cache.remove(key); } } } }