enjoy 跟 shiro 配合有案例吗?

如下面页中某些区域的权限判断代码在enjoy应该如何实现呢?

<shiro:hasPermission name="sys:add">

        <li><a href="#">添加</a></li>

</shiro:hasPermission>

<shiro:hasPermission name="sys:edit">

        <li><a href="#">修改</a></li>

</shiro:hasPermission>


评论区

doocal

2017-09-13 08:33

找到一个类(作者不知道,应该不介意 ~!~),直接 addSharedObject 放入公享对象,搞定。

//放入共享对象
engine.addSharedObject("Shiro", new ShiroExt());

//页面调用
#if(Shiro.hasPermission("sys:edit"))
有权限
#else
无权限
#end


//Shiro 类
public class ShiroExt {
/**
* The guest tag
*
* @return
*/
public boolean isGuest() {
return getSubject() == null || getSubject().getPrincipal() == null;
}

/**
* The user tag
*
* @return
*/
public boolean isUser() {
return getSubject() != null && getSubject().getPrincipal() != null;
}

/**
* The authenticated tag
*
* @return
*/
public boolean isAuthenticated() {
return getSubject() != null && getSubject().isAuthenticated();
}

public boolean isNotAuthenticated() {
return !isAuthenticated();
}

/**
* The principal tag
*
* @param map
* @return
*/
public String principal(Map map) {
String strValue = null;
if (getSubject() != null) {

// Get the principal to print out
Object principal;
String type = map != null ? (String) map.get("type") : null;
if (type == null) {
principal = getSubject().getPrincipal();
} else {
principal = getPrincipalFromClassName(type);
}
String property = map != null ? (String) map.get("property") : null;
// Get the string value of the principal
if (principal != null) {
if (property == null) {
strValue = principal.toString();
} else {
strValue = getPrincipalProperty(principal, property);
}
}

}

if (strValue != null) {
return strValue;
} else {
return null;
}
}

/**
* The hasRole tag
*
* @param roleName
* @return
*/
public boolean hasRole(String roleName) {
return getSubject() != null && getSubject().hasRole(roleName);
}

/**
* The lacksRole tag
*
* @param roleName
* @return
*/
public boolean lacksRole(String roleName) {
boolean hasRole = getSubject() != null
&& getSubject().hasRole(roleName);
return !hasRole;
}

/**
* The hasAnyRole tag
*
* @param roleNames
* @return
*/
public boolean hasAnyRole(String roleNames) {
boolean hasAnyRole = false;

Subject subject = getSubject();

if (subject != null) {

// Iterate through roles and check to see if the user has one of the
// roles
for (String role : roleNames.split(",")) {

if (subject.hasRole(role.trim())) {
hasAnyRole = true;
break;
}

}

}

return hasAnyRole;
}

/**
* The hasPermission tag
*
* @param p
* @return
*/
public boolean hasPermission(String p) {
return getSubject() != null && getSubject().isPermitted(p);
}

/**
* The lacksPermission tag
*
* @param p
* @return
*/
public boolean lacksPermission(String p) {
return !hasPermission(p);
}

@SuppressWarnings({"unchecked"})
private Object getPrincipalFromClassName(String type) {
Object principal = null;

try {
Class cls = Class.forName(type);
principal = getSubject().getPrincipals().oneByType(cls);
} catch (ClassNotFoundException e) {

}
return principal;
}

private String getPrincipalProperty(Object principal, String property) {
String strValue = null;

try {
BeanInfo bi = Introspector.getBeanInfo(principal.getClass());

// Loop through the properties to get the string value of the
// specified property
boolean foundProperty = false;
for (PropertyDescriptor pd : bi.getPropertyDescriptors()) {
if (pd.getName().equals(property)) {
Object value = pd.getReadMethod().invoke(principal,
(Object[]) null);
strValue = String.valueOf(value);
foundProperty = true;
break;
}
}

if (!foundProperty) {
final String message = "Property [" + property + "] not found in principal of type ["
+ principal.getClass().getName() + "]";

throw new RuntimeException(message);
}

} catch (Exception e) {
final String message = "Error reading property [" + property + "] from principal of type ["
+ principal.getClass().getName() + "]";

throw new RuntimeException(message, e);
}

return strValue;
}

protected Subject getSubject() {
return SecurityUtils.getSubject();
}

public static void main(String[] args) {
GroupTemplate gt = new GroupTemplate();
gt.registerFunctionPackage("shiro", new ShiroExt());

}

}

JFinal

2017-09-14 00:04

这里有一个比较好的项目,参考一下: https://gitee.com/jfinal/LMS

小蜗牛

2017-09-14 08:56

@JFinal 谢谢波大

热门反馈

扫码入社