/* * JOSSO: Java Open Single Sign-On * * Copyright 2004-2009, Atricore, Inc. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. * */ package org.josso.liferay6.agent; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.josso.agent.SSOAgentRequest; import org.josso.agent.SingleSignOnEntry; import org.josso.agent.http.JOSSOSecurityContext; import org.josso.agent.http.JaasHttpSSOAgent; import org.josso.gateway.identity.SSORole; import javax.security.auth.Subject; import java.security.Principal; /** * This agent will authenticate users against JAAS Infrastructure directly. It will look up for the "josso" login context. * You have to configure a JAAS context under the name "josso", delcaring the SSOGatewayLoginModule, for example : * <br> * <br> * <pre> * josso { * org.josso.liferay.agent.jaas.SSOGatewayLoginModule required debug=true; * }; * </pre> * * @author <a href="mailto:gbrigand@josso.org">Gianluca Brigandi</a> * @org.apache.xbean.XBean element="agent" */ public class LiferaySSOAgent extends JaasHttpSSOAgent { private static final Log log = LogFactory.getLog(LiferaySSOAgent.class); private String screenNameProperty; private String emailAddressProperty; private String firstNameProperty; private String lastNameProperty; private boolean autoScreenName; /** * This extension will delegate processing to super class and publish JOSSO Security Context * instance in the LocalSession associated to the request. */ protected SingleSignOnEntry execute(SSOAgentRequest request) { LiferaySSOAgentRequest r = (LiferaySSOAgentRequest) request; LiferayLocalSession localSession = (LiferayLocalSession) r.getLocalSession(); SingleSignOnEntry entry = super.execute(request); if (entry != null) { if (r.getSecurityContext() != null) { if (log.isDebugEnabled()) log.debug("Publishing JOSSO Security Context instance in session [" + (entry != null ? entry.ssoId : "<NO-SSO-ID>") + "]"); localSession.setSecurityContext(r.getSecurityContext()); } } else { if (localSession != null) { if (log.isDebugEnabled()) log.debug("Clearing JOSSO Security Context for session [" + localSession.getId() + "]"); localSession.setSecurityContext(null); r.setSecurityContext(null); // invalidate session (unbind josso security context) localSession.invalidate(); } } return entry; } /** * Resolves an authentication request using JAAS infrastructure. * * @param request containing the SSO Session id. * @return null if no principal can be authenticated using the received SSO Session Id */ protected Principal authenticate(SSOAgentRequest request) { String ssoSessionId = request.getSessionId(); Principal ssoUser = super.authenticate(request); if (ssoUser != null) { Subject subject = new Subject(); subject.getPrincipals().add(ssoUser); SSORole[] ssoRolePrincipals = getRoleSets(request.getRequester(), ssoSessionId, request.getNodeId()); for (int i = 0; i < ssoRolePrincipals.length; i++) { subject.getPrincipals().add(ssoRolePrincipals[i]); log.debug("Added SSORole Principal to the Subject : " + ssoRolePrincipals[i]); } LiferaySSOAgentRequest r = (LiferaySSOAgentRequest) request; JOSSOSecurityContext ctx = new JOSSOSecurityContext(subject); r.setSecurityContext(ctx); } return ssoUser; } @Override protected boolean isAuthenticationAlwaysRequired() { return true; } protected void log(String message) { log.debug(message); } protected void log(String message, Throwable throwable) { log.debug(message, throwable); } public String getScreenNameProperty() { return screenNameProperty; } public void setScreenNameProperty(String screenNameProperty) { this.screenNameProperty = screenNameProperty; } public String getEmailAddressProperty() { return emailAddressProperty; } public void setEmailAddressProperty(String emailAddressProperty) { this.emailAddressProperty = emailAddressProperty; } public String getFirstNameProperty() { return firstNameProperty; } public void setFirstNameProperty(String firstNameProperty) { this.firstNameProperty = firstNameProperty; } public String getLastNameProperty() { return lastNameProperty; } public void setLastNameProperty(String lastNameProperty) { this.lastNameProperty = lastNameProperty; } public boolean isAutoScreenName() { return autoScreenName; } public void setAutoScreenName(boolean autoScreenName) { this.autoScreenName = autoScreenName; } }