Apache Shiro を使用する Tapestry-Security を使用しています
承認と認証を処理するカスタム レルムがあります。私たちの認証は、技術的には、ユーザー名とロールのセットを返すリモート サービスを使用して行われます。ユーザー名をカスタム AuthenticationToken に渡すだけで、ローカル データベースにクエリを実行し、SimpleAuthenticationInfo を設定できます。
リモート サービスから返されたロールのリストを使用して、AuthorizationInfo doGetAuthorizationInfo メソッドを設定する方法がわかりません。以下は、レルムを設定するために使用しているコードです。
ログインクラス
//Remote authentication service
RemoteLoginClient client = new RemoteLoginClient();
RemoteSubject authenticate = client.authenticate(username, password);
//tapestry security authentication
Subject currentUser = SecurityUtils.getSubject();
CustomAuthenticationToken token = new
CustomAuthenticationToken(authenticate.getUsername());
System.out.println("roles" + authenticate.getRoles());
currentUser.login(token);
customRealm 内の AuthorizationInfo メソッド public class CustomRealm extends AuthorizingRealm {
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
CustomAuthenticationToken upToken = (CustomAuthenticationToken ) token;
String email = upToken.getUsername();
ApplicationUser applicationUser = (ApplicationUser) session.createCriteria(ApplicationUser.class)
.add(Restrictions.like("email", email + "%"))
.uniqueResult();
if (applicationUser == null) {
throw new UnknownAccountException("User doesn't exist in EPRS database");
}
return buildAuthenticationInfo(applicationUser.getId());
}
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
//Not sure how to populate the principle or
//read the principle to populate the SimpleAuthorizationInfo
return new SimpleAuthorizationInfo(roleNames);
}