Package com.liferay.faces.bridge.context.map

Source Code of com.liferay.faces.bridge.context.map.ContextMapFactoryImpl

/**
* Copyright (c) 2000-2014 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.faces.bridge.context.map;

import java.util.Collections;
import java.util.List;
import java.util.Map;

import javax.portlet.ClientDataRequest;
import javax.portlet.PortletContext;
import javax.portlet.PortletRequest;
import javax.portlet.PortletResponse;
import javax.servlet.http.Cookie;

import com.liferay.faces.bridge.BridgeConstants;
import com.liferay.faces.bridge.container.PortletContainer;
import com.liferay.faces.bridge.context.BridgeContext;
import com.liferay.faces.bridge.scope.BridgeRequestScope;
import com.liferay.faces.util.context.map.FacesRequestParameterMap;
import com.liferay.faces.util.context.map.MultiPartFormData;
import com.liferay.faces.util.model.UploadedFile;
import com.liferay.faces.util.product.ProductConstants;
import com.liferay.faces.util.product.ProductMap;


/**
* @author  Neil Griffin
*/
public class ContextMapFactoryImpl extends ContextMapFactory {

  // Private Constants
  private static final boolean ICEFACES_DETECTED = ProductMap.getInstance().get(ProductConstants.ICEFACES)
    .isDetected();
  private static final String MULTIPART_FORM_DATA_FQCN = MultiPartFormData.class.getName();

  @Override
  public Map<String, Object> getApplicationScopeMap(BridgeContext bridgeContext) {
    return new ApplicationScopeMap(bridgeContext);
  }

  protected FacesRequestParameterMap getFacesRequestParameterMap(BridgeContext bridgeContext) {

    FacesRequestParameterMap facesRequestParameterMap = null;
    PortletRequest portletRequest = bridgeContext.getPortletRequest();
    PortletResponse portletResponse = bridgeContext.getPortletResponse();
    String namespace = portletResponse.getNamespace();
    PortletContainer portletContainer = bridgeContext.getPortletContainer();
    BridgeRequestScope bridgeRequestScope = bridgeContext.getBridgeRequestScope();
    String defaultRenderKitId = bridgeContext.getDefaultRenderKitId();
    Map<String, String> facesViewParameterMap = getFacesViewParameterMap(bridgeContext);

    if (portletRequest instanceof ClientDataRequest) {

      ClientDataRequest clientDataRequest = (ClientDataRequest) portletRequest;
      String contentType = clientDataRequest.getContentType();

      // Note: ICEfaces ace:fileEntry relies on its own mechanism for handling file upload.
      if (!ICEFACES_DETECTED && (contentType != null) &&
          contentType.toLowerCase().startsWith(BridgeConstants.MULTIPART_CONTENT_TYPE_PREFIX)) {

        MultiPartFormData multiPartFormData = (MultiPartFormData) portletRequest.getAttribute(
            MULTIPART_FORM_DATA_FQCN);

        if (multiPartFormData == null) {
          facesRequestParameterMap = new FacesRequestParameterMapImpl(namespace, portletContainer,
              bridgeRequestScope, facesViewParameterMap, defaultRenderKitId);

          MultiPartFormDataProcessor multiPartFormDataProcessor = new MultiPartFormDataProcessorImpl();
          Map<String, List<UploadedFile>> uploadedFileMap = multiPartFormDataProcessor.process(
              clientDataRequest, bridgeContext.getPortletConfig(), facesRequestParameterMap);

          multiPartFormData = new MultiPartFormDataImpl(facesRequestParameterMap, uploadedFileMap);

          // Save the multipart/form-data in a request attribute so that it can be referenced later-on in the
          // JSF lifecycle by file upload component renderers.
          portletRequest.setAttribute(MULTIPART_FORM_DATA_FQCN, multiPartFormData);
        }
        else {
          facesRequestParameterMap = multiPartFormData.getFacesRequestParameterMap();
        }
      }
    }

    if (facesRequestParameterMap == null) {
      Map<String, String[]> parameterMap = portletRequest.getParameterMap();
      facesRequestParameterMap = new FacesRequestParameterMapImpl(parameterMap, namespace, portletContainer,
          bridgeRequestScope, facesViewParameterMap, defaultRenderKitId);
    }

    return facesRequestParameterMap;
  }

  @Override
  public Map<String, String> getFacesViewParameterMap(BridgeContext bridgeContext) {

    String facesViewQueryString = bridgeContext.getFacesViewQueryString();

    return new FacesViewParameterMap(facesViewQueryString);
  }

  @Override
  public Map<String, String> getInitParameterMap(PortletContext portletContext) {
    return Collections.unmodifiableMap(new InitParameterMap(portletContext));
  }

  @Override
  public Map<String, Object> getRequestCookieMap(BridgeContext bridgeContext) {
    PortletRequest portletRequest = bridgeContext.getPortletRequest();
    Cookie[] cookies = portletRequest.getCookies();

    return new RequestCookieMap(cookies);
  }

  @Override
  public Map<String, String> getRequestHeaderMap(BridgeContext bridgeContext) {
    return new RequestHeaderMap(getRequestHeaderValuesMap(bridgeContext));
  }

  @Override
  public Map<String, String[]> getRequestHeaderValuesMap(BridgeContext bridgeContext) {
    return new RequestHeaderValuesMap(bridgeContext);
  }

  @Override
  public Map<String, String> getRequestParameterMap(BridgeContext bridgeContext) {

    FacesRequestParameterMap facesRequestParameterMap = getFacesRequestParameterMap(bridgeContext);

    return new RequestParameterMap(facesRequestParameterMap);
  }

  @Override
  public Map<String, String[]> getRequestParameterValuesMap(BridgeContext bridgeContext) {

    FacesRequestParameterMap facesRequestParameterMap = getFacesRequestParameterMap(bridgeContext);

    return new RequestParameterValuesMap(facesRequestParameterMap);
  }

  @Override
  public Map<String, Object> getRequestScopeMap(BridgeContext bridgeContext) {
    return new RequestScopeMap(bridgeContext);
  }

  @Override
  public Map<String, Object> getSessionScopeMap(BridgeContext bridgeContext, int scope) {
    return new SessionScopeMap(bridgeContext, scope);
  }

  @Override
  public Map<String, List<UploadedFile>> getUploadedFileMap(BridgeContext bridgeContext) {
    PortletRequest portletRequest = bridgeContext.getPortletRequest();
    MultiPartFormData multiPartFormData = (MultiPartFormData) portletRequest.getAttribute(MULTIPART_FORM_DATA_FQCN);
    Map<String, List<UploadedFile>> uploadedFileMap = multiPartFormData.getUploadedFileMap();

    return uploadedFileMap;
  }

  @Override
  public ContextMapFactoryImpl getWrapped() {

    // Since this is the factory instance provided by the bridge, it will never wrap another factory.
    return null;
  }
}
TOP

Related Classes of com.liferay.faces.bridge.context.map.ContextMapFactoryImpl

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.