ОК, я нашел обходной путь, который не является на 100% правильным с моей точки зрения, но предложения приветствуются:)
public void login() throws IOException, LoginException {
log.debug("Trying to login with username " + username);
try {
getRequest().login(username, password);
HttpSession session = getRequest().getSession(true);
Subject subject = (Subject) session
.getAttribute("javax.security.auth.subject");
if (subject == null) {
log.debug("Subject is null, creating new one");
subject = new Subject();
subject.getPrincipals().add(new PlainRolePrincipal("USER"));
subject.getPrincipals().add(new PlainRolePrincipal("ADMIN"));
}
log.debug("HAS USER " + getRequest().isUserInRole("USER"));
log.debug("HAS ADMIN " + getRequest().isUserInRole("ADMIN"));
log.debug("HAS REPORT " + getRequest().isUserInRole("REPORT"));
session.setAttribute("javax.security.auth.subject", subject);
log.debug("USER principal === " + getRequest().getUserPrincipal());
FacesContext.getCurrentInstance().getExternalContext()
.redirect("pages/home.jsf");
} catch (ServletException e) {
FacesContext.getCurrentInstance().addMessage("Login",
new FacesMessage("Invalid Username/Password combination"));
e.printStackTrace();
}
}
Также я использую следующий информационный компонент для получения объекта ипроверьте принципалы.
@ManagedBean(name = "userInfo")
@SessionScoped
public class UserInformation {
/**
* Fetches current logged in username.
*
* @return
*/
public String getUsername() {
return FacesContext.getCurrentInstance().getExternalContext()
.getRemoteUser();
}
public boolean isUserInRole(String roleName) {
Subject subject = (Subject) getRequest().getSession().getAttribute(
"javax.security.auth.subject");
for (Principal p : subject.getPrincipals()) {
if (p.getName().equals(roleName)) {
return true;
}
}
return false;
}
public static HttpServletRequest getRequest() {
Object request = FacesContext.getCurrentInstance().getExternalContext()
.getRequest();
return request instanceof HttpServletRequest ? (HttpServletRequest) request
: null;
}
}
Поэтому, чтобы обойти механизм isUserInRole, реальный метод isUserInRole возвращает только значение true для USER, поскольку эта роль устанавливается при аутентификации.
Со страниц JSF, которые я теперь могу сделать
<p:menuitem value="Create" action="#{menuController.XXXXXCreate}"
ajax="false" helpText="Create new XXXXX"
disabled="#{!userInfo.isUserInRole('ADMIN')}" />
Надеюсь, это поможет другим пользователям, любые предложения по улучшению приветствуются!