View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.apache.myfaces.tobago.internal.webapp;
21  
22  import org.slf4j.Logger;
23  import org.slf4j.LoggerFactory;
24  import org.slf4j.MDC;
25  
26  import javax.servlet.Filter;
27  import javax.servlet.FilterChain;
28  import javax.servlet.FilterConfig;
29  import javax.servlet.ServletException;
30  import javax.servlet.ServletRequest;
31  import javax.servlet.ServletResponse;
32  import javax.servlet.http.HttpServletRequest;
33  import javax.servlet.http.HttpSession;
34  import java.io.IOException;
35  import java.lang.invoke.MethodHandles;
36  
37  public class LoggingMdcFilter implements Filter {
38    private static final Logger LOG = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
39  
40    @Override
41    public void init(final FilterConfig filterConfig) throws ServletException {
42      if (LOG.isInfoEnabled()) {
43        LOG.info("init " + getClass().getName());
44      }
45    }
46  
47    @Override
48    public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain)
49        throws IOException, ServletException {
50  
51      try {
52        if (request instanceof HttpServletRequest) {
53          final HttpServletRequest httpRequest = (HttpServletRequest) request;
54          final HttpSession session = httpRequest.getSession(false);
55          if (session != null) {
56            MDC.put("sessionId", session.getId());
57          }
58          final String remoteAddr = httpRequest.getRemoteAddr();
59          if (remoteAddr != null) {
60            MDC.put("ip", remoteAddr);
61          }
62          final String remoteUser = httpRequest.getRemoteUser();
63          if (remoteUser != null) {
64            MDC.put("user", remoteUser);
65          }
66        }
67  
68        chain.doFilter(request, response);
69  
70      } finally {
71        MDC.clear();
72      }
73    }
74  
75    @Override
76    public void destroy() {
77  
78    }
79  }