111 lines
3.5 KiB
Java
111 lines
3.5 KiB
Java
package com.baeldung;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.SQLException;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
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.UnknownAccountException;
|
|
import org.apache.shiro.authc.UsernamePasswordToken;
|
|
import org.apache.shiro.authz.AuthorizationInfo;
|
|
import org.apache.shiro.authz.SimpleAuthorizationInfo;
|
|
import org.apache.shiro.realm.jdbc.JdbcRealm;
|
|
import org.apache.shiro.subject.PrincipalCollection;
|
|
|
|
public class MyCustomRealm extends JdbcRealm {
|
|
|
|
private Map<String, String> credentials = new HashMap<>();
|
|
private Map<String, Set<String>> roles = new HashMap<>();
|
|
private Map<String, Set<String>> perm = new HashMap<>();
|
|
|
|
{
|
|
credentials.put("user", "password");
|
|
credentials.put("user2", "password2");
|
|
credentials.put("user3", "password3");
|
|
|
|
roles.put("user", new HashSet<>(Arrays.asList("admin")));
|
|
roles.put("user2", new HashSet<>(Arrays.asList("editor")));
|
|
roles.put("user3", new HashSet<>(Arrays.asList("author")));
|
|
|
|
perm.put("admin", new HashSet<>(Arrays.asList("*")));
|
|
perm.put("editor", new HashSet<>(Arrays.asList("articles:*")));
|
|
perm.put("author",
|
|
new HashSet<>(Arrays.asList("articles:compose",
|
|
"articles:save")));
|
|
|
|
}
|
|
|
|
@Override
|
|
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token)
|
|
throws AuthenticationException {
|
|
|
|
UsernamePasswordToken uToken = (UsernamePasswordToken) token;
|
|
|
|
if(uToken.getUsername() == null
|
|
|| uToken.getUsername().isEmpty()
|
|
|| !credentials.containsKey(uToken.getUsername())
|
|
) {
|
|
throw new UnknownAccountException("username not found!");
|
|
}
|
|
|
|
|
|
return new SimpleAuthenticationInfo(
|
|
uToken.getUsername(), credentials.get(uToken.getUsername()),
|
|
getName());
|
|
}
|
|
|
|
@Override
|
|
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
|
|
Set<String> roleNames = new HashSet<>();
|
|
Set<String> permissions = new HashSet<>();
|
|
|
|
principals.forEach(p -> {
|
|
try {
|
|
Set<String> roles = getRoleNamesForUser(null, (String) p);
|
|
roleNames.addAll(roles);
|
|
permissions.addAll(getPermissions(null, null,roles));
|
|
} catch (SQLException e) {
|
|
e.printStackTrace();
|
|
}
|
|
});
|
|
|
|
SimpleAuthorizationInfo info = new SimpleAuthorizationInfo(roleNames);
|
|
info.setStringPermissions(permissions);
|
|
return info;
|
|
}
|
|
|
|
@Override
|
|
protected Set<String> getRoleNamesForUser(Connection conn, String username) throws SQLException {
|
|
if(!roles.containsKey(username)) {
|
|
throw new SQLException("username not found!");
|
|
}
|
|
|
|
return roles.get(username);
|
|
}
|
|
|
|
@Override
|
|
protected Set<String> getPermissions(Connection conn, String username, Collection<String> roleNames) throws SQLException {
|
|
for (String role : roleNames) {
|
|
if (!perm.containsKey(role)) {
|
|
throw new SQLException("role not found!");
|
|
}
|
|
}
|
|
|
|
Set<String> finalSet = new HashSet<>();
|
|
for (String role : roleNames) {
|
|
finalSet.addAll(perm.get(role));
|
|
}
|
|
|
|
return finalSet;
|
|
}
|
|
|
|
}
|