/* * (C) Copyright 2011 Nuxeo SA (http://nuxeo.com/) and others. * * 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. * * Contributors: * Anahide Tchertchian */ package org.nuxeo.ecm.platform.web.common.encoding; import java.io.IOException; import java.io.UnsupportedEncodingException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletResponse; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.nuxeo.ecm.platform.web.common.requestcontroller.service.RequestControllerManager; import org.nuxeo.runtime.api.Framework; /** * Filter that sets encoding to UTF-8, before any other filter tries to parse the request. Also set the X-UA-Compatible * meta for browsers. * <p> * See NXP-5555: the first parsing of the request is cached, so it should be done with the right encoding. See * NXP-12862: we must pass the X-UA-Compatible meta in the header. * * @author Anahide Tchertchian * @since 5.4.2 */ public class NuxeoEncodingFilter implements Filter { private static final Log log = LogFactory.getLog(NuxeoEncodingFilter.class); @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { if (request != null) { // NXP-5555: set encoding to UTF-8 in case this method is called // before // encoding is set to UTF-8 on the request if (request.getCharacterEncoding() == null) { try { request.setCharacterEncoding("UTF-8"); } catch (UnsupportedEncodingException e) { log.error(e, e); } } RequestControllerManager rcm = Framework.getLocalService(RequestControllerManager.class); for (String headerName : rcm.getResponseHeaders().keySet()) { if (response instanceof HttpServletResponse && !((HttpServletResponse) response).containsHeader(headerName)) { ((HttpServletResponse) response).addHeader(headerName, rcm.getResponseHeaders().get(headerName)); } } } chain.doFilter(request, response); } @Override public void destroy() { } @Override public void init(FilterConfig filterConfig) throws ServletException { } }