Package org.apache.myfaces.tobago.util

Source Code of org.apache.myfaces.tobago.util.ResponseUtils

package org.apache.myfaces.tobago.util;

/*
* 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.
*/

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletResponse;

public class ResponseUtils {

  private static final Log LOG = LogFactory.getLog(ResponseUtils.class);

  @Deprecated
  public static void ensureNoCacheHeader(ExternalContext externalContext) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    if (facesContext.getExternalContext() != externalContext) {
      throw new RuntimeException("Unexpected behaviour.");
    }
    ensureNoCacheHeader(facesContext);
  }

  public static void ensureNoCacheHeader(FacesContext facesContext) {
    // TODO PortletRequest
    ExternalContext externalContext = facesContext.getExternalContext();
    if (externalContext.getResponse() instanceof HttpServletResponse) {
      HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
      response.setHeader("Cache-Control", "no-cache,no-store,max-age=0,must-revalidate");
      response.setHeader("Pragma", "no-cache");
      response.setDateHeader("Expires", 0);
      response.setDateHeader("max-age", 0);
    }
  }

  public static void ensureContentTypeHeader(FacesContext facesContext, String contentType) {
    // TODO PortletRequest
    if (facesContext.getExternalContext().getResponse() instanceof HttpServletResponse) {
      HttpServletResponse response = (HttpServletResponse) facesContext.getExternalContext().getResponse();
      if (!response.containsHeader("Content-Type")) {
        response.setContentType(contentType);
      } else {
        try {
          String responseContentType = response.getContentType();
          if (!responseContentType.equalsIgnoreCase(contentType)) {
            response.setContentType(contentType);
            if (LOG.isInfoEnabled()) {
              LOG.info("Reponse already contains Header Content-Type '" + responseContentType
                  + "'. Setting Content-Type to '" + contentType + "'");
            }
          }
        } catch (Error e) {
          LOG.warn("The method ServletResponse.getContentType() is not available before Servlet 2.4");
        }
      }
    }
  }
}
TOP

Related Classes of org.apache.myfaces.tobago.util.ResponseUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.