blob: 1268655a255b798249db0a6dc478b2b044c165f0 [file] [log] [blame]
/*
* Copyright 2005-2008 Les Hazlewood
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jsecurity.web.session;
import org.jsecurity.authz.AuthorizationException;
import org.jsecurity.authz.HostUnauthorizedException;
import org.jsecurity.session.InvalidSessionException;
import org.jsecurity.session.Session;
import org.jsecurity.session.mgt.AbstractSessionManager;
import org.jsecurity.util.ThreadContext;
import org.jsecurity.web.SecurityWebSupport;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.Serializable;
import java.net.InetAddress;
/**
* SessionManager implementation providing Session implementations that are merely wrappers for the
* Servlet container's HttpSession.
*
* <p>Despite its name, this implementation <em>does not</em> itself manage Sessions since the Servlet container
* provides the actual management support. This class mainly exists to 'impersonate' a regular JSecurity
* <tt>SessionManager</tt> so it can be pluggable into a normal JSecurity configuration in a pure web application.
*
* <p>Note that because this implementation relies on the <tt>HttpSession</tt>, it is only functional in a servlet
* container. I.e. it is <em>NOT</em> capable of supporting Sessions any clients other than HttpRequest/HttpResponse
* based clients.
*
* <p>Therefore, if you need heterogenous Session support across multiple client mediums (e.g. web pages,
* Flash applets, Java Web Start applications, etc.), use the {@link DefaultWebSessionManager WebSessionManager} instead. The
* <tt>WebSessionManager</tt> supports both traditional web-based access as well as non web-based clients.
*
* @author Les Hazlewood
* @since 0.9
*/
public class ServletContainerSessionManager extends AbstractSessionManager implements WebSessionManager {
protected Session doGetSession(Serializable sessionId) throws InvalidSessionException {
//Ignore session id since there is no way to acquire a session based on an id in a servlet container
//(that is implementation agnostic)
ServletRequest request = ThreadContext.getServletRequest();
ServletResponse response = ThreadContext.getServletResponse();
return getSession( request, response );
}
public Session getSession(ServletRequest request, ServletResponse response) throws AuthorizationException {
Session session = null;
HttpSession httpSession = ((HttpServletRequest) request).getSession(false);
if (httpSession != null) {
session = createSession( httpSession, SecurityWebSupport.getInetAddress(request) );
}
return session;
}
protected Session createSession(InetAddress originatingHost) throws HostUnauthorizedException, IllegalArgumentException {
ServletRequest request = ThreadContext.getServletRequest();
HttpSession httpSession = ((HttpServletRequest)request).getSession();
return createSession( httpSession, originatingHost );
}
protected Session createSession( HttpSession httpSession, InetAddress inet ) {
return new WebSession( httpSession, inet );
}
}