/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.app.xmlui.aspect.eperson; import java.sql.SQLException; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletResponse; import org.apache.avalon.framework.parameters.Parameters; import org.apache.cocoon.acting.AbstractAction; import org.apache.cocoon.environment.ObjectModelHelper; import org.apache.cocoon.environment.Redirector; import org.apache.cocoon.environment.Request; import org.apache.cocoon.environment.SourceResolver; import org.apache.cocoon.environment.http.HttpEnvironment; import org.apache.cocoon.sitemap.PatternException; import org.dspace.app.xmlui.utils.AuthenticationUtil; import org.dspace.core.ConfigurationManager; import org.dspace.core.Context; import org.dspace.eperson.EPerson; /** * Attempt to authenticate the user based upon their presented shibboleth credentials. * This action uses the http parameters as supplied by Shibboleth SP. * Read dspace.cfg for configuration detail. * * If the authentication attempt is successfull then an HTTP redirect will be * sent to the browser redirecting them to their original location in the * system before authenticated or if none is supplied back to the DSpace * homepage. The action will also return true, thus contents of the action will * be excuted. * * If the authentication attempt fails, the action returns false. * * Example use: * * <map:act name="Shibboleth"> * <map:serialize type="xml"/> * </map:act> * <map:transform type="try-to-login-again-transformer"> * * @author <a href="mailto:bliong@melcoe.mq.edu.au">Bruc Liong, MELCOE</a> */ public class ShibbolethAction extends AbstractAction { /** * Attempt to authenticate the user. */ public Map act(Redirector redirector, SourceResolver resolver, Map objectModel, String source, Parameters parameters) throws Exception { try { //rely on implicit authN of Shib Context context = AuthenticationUtil.authenticate(objectModel, null, null, null); EPerson eperson = null; if(context != null) { eperson = context.getCurrentUser(); } if (eperson != null) { Request request = ObjectModelHelper.getRequest(objectModel); // The user has successfully logged in String redirectURL = request.getContextPath(); if (AuthenticationUtil.isInterupptedRequest(objectModel)) { // Resume the request and set the redirect target URL to // that of the originaly interrupted request. redirectURL += AuthenticationUtil.resumeInterruptedRequest(objectModel); } else { // Otherwise direct the user to the specified 'loginredirect' page (or homepage by default) String loginRedirect = ConfigurationManager.getProperty("xmlui.user.loginredirect"); redirectURL += (loginRedirect != null) ? loginRedirect.trim() : "/"; } // Authentication successfull send a redirect. final HttpServletResponse httpResponse = (HttpServletResponse) objectModel.get(HttpEnvironment.HTTP_RESPONSE_OBJECT); httpResponse.sendRedirect(redirectURL); // log the user out for the rest of this current request, however they will be reauthenticated // fully when they come back from the redirect. This prevents caching problems where part of the // request is preformed for the user was authenticated and the other half after it succedded. This // way the user is fully authenticated from the start of the request. // // TODO: have no idea what this is, but leave it as it is, could be broken context.setCurrentUser(null); return new HashMap(); } } catch (SQLException sqle) { throw new PatternException("Unable to preform Shibboleth authentication", sqle); } return null; } }