blob: 5f5ac97b44d94f7bcc9fd0d2a8b2fee13b926c51 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.wicket.protocol.http.servlet;
import java.io.IOException;
import jakarta.servlet.Filter;
import jakarta.servlet.FilterChain;
import jakarta.servlet.FilterConfig;
import jakarta.servlet.ServletException;
import jakarta.servlet.ServletRequest;
import jakarta.servlet.ServletResponse;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpSession;
import org.apache.wicket.Application;
import org.apache.wicket.Session;
import org.apache.wicket.ThreadContext;
import org.apache.wicket.protocol.http.WebApplication;
import org.apache.wicket.protocol.http.WicketFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This filter can be used to make the Wicket {@link org.apache.wicket.protocol.http.WebSession}
* instances available to non-wicket servlets.
* <p>
* The following example shows how this filter is setup to for a servlet. You can find the example
* in the wicket-examples project.
*
* <pre>
* &lt;!-- The WicketSesionFilter can be used to provide thread local access to servlets/ JSPs/ etc --&gt;
* &lt;filter&gt;
* &lt;filter-name&gt;WicketSessionFilter&lt;/filter-name&gt;
* &lt;filter-class&gt;org.apache.wicket.protocol.http.servlet.WicketSessionFilter&lt;/filter-class&gt;
* &lt;init-param&gt;
* &lt;param-name&gt;filterName&lt;/param-name&gt;
* &lt;!-- expose the session of the input example app --&gt;
* &lt;param-value&gt;FormInputApplication&lt;/param-value&gt;
* &lt;/init-param&gt;
* &lt;/filter&gt;
*
* &lt;!-- couple the session filter to the helloworld servlet --&gt;
* &lt;filter-mapping&gt;
* &lt;filter-name&gt;WicketSessionFilter&lt;/filter-name&gt;
* &lt;url-pattern&gt;/helloworldservlet/*&lt;/url-pattern&gt;
* &lt;/filter-mapping&gt;
* ...
*
* &lt;servlet&gt;
* &lt;servlet-name&gt;HelloWorldServlet&lt;/servlet-name&gt;
* &lt;servlet-class&gt;org.apache.wicket.examples.HelloWorldServlet&lt;/servlet-class&gt;
* &lt;/servlet&gt;
*
* &lt;servlet-mapping&gt;
* &lt;servlet-name&gt;HelloWorldServlet&lt;/servlet-name&gt;
* &lt;url-pattern&gt;/helloworldservlet/*&lt;/url-pattern&gt;
* &lt;/servlet-mapping&gt;
* </pre>
*
* Note: If both {@link WicketFilter} and {@link WicketSessionFilter} are mapped to the same url
* pattern, make sure to have the {@code <filter-mapping>} for {@link WicketFilter} first in your
* {@code web.xml}.
* <p>
* After that, you can get to the Wicket session in the usual fashion:
*
* <pre>
* if (Session.exists())
* {
* Session wicketSession = Session.get();
* }
* </pre>
*
* Make sure to test for session existence first, like the HelloWorldServlet does:
*
* <pre>
* public class HelloWorldServlet extends HttpServlet
* {
* public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
* IOException
* {
* res.setContentType(&quot;text/html&quot;);
* PrintWriter out = res.getWriter();
* String message = &quot;Hi. &quot; +
* (Session.exists() ? &quot; I know Wicket session &quot; + Session.get() + &quot;.&quot;
* : &quot; I can't find a Wicket session.&quot;);
* out.println(message);
* out.close();
* }
* }
* </pre>
*
* @author Eelco Hillenius
*/
public class WicketSessionFilter implements Filter
{
/** log. */
private static final Logger logger = LoggerFactory.getLogger(WicketSessionFilter.class);
/** the filter name/ application key. */
private String filterName;
/** the session key where the Wicket session should be stored. */
private String sessionKey;
/**
* Construct.
*/
public WicketSessionFilter()
{
}
/**
* @see jakarta.servlet.Filter#init(jakarta.servlet.FilterConfig)
*/
@Override
public void init(FilterConfig filterConfig) throws ServletException
{
filterName = filterConfig.getInitParameter("filterName");
if (filterName == null)
{
throw new ServletException(
"you must provide init parameter 'filterName if you want to use " +
getClass().getName());
}
logger.debug("filterName/application key set to {}", filterName);
}
/**
* @see jakarta.servlet.Filter#doFilter(jakarta.servlet.ServletRequest,
* jakarta.servlet.ServletResponse, jakarta.servlet.FilterChain)
*/
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException
{
try
{
WebApplication application = bindApplication();
bindSession(request, application);
chain.doFilter(request, response);
}
finally
{
cleanupBoundApplicationAndSession();
}
}
private void cleanupBoundApplicationAndSession()
{
ThreadContext.detach();
}
private void bindSession(ServletRequest request, WebApplication application)
{
// find wicket session and bind it to thread
HttpSession httpSession = ((HttpServletRequest)request).getSession(false);
Session session = getSession(httpSession, application);
if (session == null)
{
if (logger.isDebugEnabled())
{
logger.debug("could not set Wicket session: key " + sessionKey +
" not found in http session for " +
((HttpServletRequest)request).getContextPath() + "," + request.getServerName() +
", or http session does not exist");
}
}
else
{
ThreadContext.setSession(session);
}
}
private WebApplication bindApplication()
{
// find wicket application and bind it to thread
WebApplication application = (WebApplication)Application.get(filterName);
if (application == null)
{
throw new IllegalStateException("Could not find wicket application mapped to filter: " +
filterName +
". Make sure you set filterName attribute to the name of the wicket filter " +
"for the wicket application whose session you want to access.");
}
ThreadContext.setApplication(application);
return application;
}
private Session getSession(HttpSession session, WebApplication application)
{
if (session != null)
{
if (sessionKey == null)
{
sessionKey = application.getSessionAttributePrefix(null, filterName) +
Session.SESSION_ATTRIBUTE_NAME;
logger.debug("will use {} as the session key to get the Wicket session", sessionKey);
}
return (Session)session.getAttribute(sessionKey);
}
return null;
}
/**
* @see jakarta.servlet.Filter#destroy()
*/
@Override
public void destroy()
{
}
}