All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.myfaces.webapp.filter.MultipartRequestWrapperConfig Maven / Gradle / Ivy

Go to download

JSF components and utilities that can be used with any JSF implementation. This library is based on the JSF1.1 version of Tomahawk, but with minor source code and build changes to take advantage of JSF2.1 features. A JSF2.1 implementation is required to use this version of the Tomahawk library.

The newest version!
/*
 * 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.myfaces.webapp.filter;

import javax.faces.context.ExternalContext;
import javax.servlet.ServletContext;

import org.apache.myfaces.tomahawk.util.ExternalContextUtils;

/**
 * This class is used to retrieve the context paramaters used to initialize 
 * of the MultipartRequestWrapper.
 * 
 * @author Hazem Saleh
 * 
 */
class MultipartRequestWrapperConfig
{
    
    private long _uploadMaxSize = 100 * 1024 * 1024; // 10 MB
    private long _uploadMaxFileSize = 100 * 1024 * 1024; // 10 MB
    private int _uploadThresholdSize = 1 * 1024 * 1024; // 1 MB
    private String _uploadRepositoryPath = null; //standard temp directory 
    private boolean _cacheFileSizeErrors = false;
    
    private static final String UPLOAD_MAX_SIZE = "org.apache.myfaces.UPLOAD_MAX_SIZE";
    private static final String UPLOAD_MAX_FILE_SIZE = "org.apache.myfaces.UPLOAD_MAX_FILE_SIZE";
    private static final String UPLOAD_THRESHOLD_SIZE = "org.apache.myfaces.UPLOAD_THRESHOLD_SIZE"; 
    private static final String UPLOAD_MAX_REPOSITORY_PATH = "org.apache.myfaces.UPLOAD_MAX_REPOSITORY_PATH";  
    private static final String UPLOAD_CACHE_FILE_SIZE_ERRORS = "org.apache.myfaces.UPLOAD_CACHE_FILE_SIZE_ERRORS";
    private static final String MULTIPART_REQUEST_WRAPPER_CONFIG = MultipartRequestWrapperConfig.class.getName();
    
    private MultipartRequestWrapperConfig() {}
        
    private static int resolveSize(String param, int defaultValue)
    {
        int numberParam = defaultValue;

        if (param != null)
        {
            param = param.toLowerCase();
            int factor = 1;
            String number = param;

            if (param.endsWith("g"))
            {
                factor = 1024 * 1024 * 1024;
                number = param.substring(0, param.length() - 1);
            }
            else if (param.endsWith("m"))
            {
                factor = 1024 * 1024;
                number = param.substring(0, param.length() - 1);
            }
            else if (param.endsWith("k"))
            {
                factor = 1024;
                number = param.substring(0, param.length() - 1);
            }

            numberParam = Integer.parseInt(number) * factor;
        }
        return numberParam;
    }
    
    private static long resolveSize(String param, long defaultValue)
    {
        long numberParam = defaultValue;

        if (param != null)
        {
            param = param.toLowerCase();
            long factor = 1;
            String number = param;

            if (param.endsWith("g"))
            {
                factor = 1024 * 1024 * 1024;
                number = param.substring(0, param.length() - 1);
            }
            else if (param.endsWith("m"))
            {
                factor = 1024 * 1024;
                number = param.substring(0, param.length() - 1);
            }
            else if (param.endsWith("k"))
            {
                factor = 1024;
                number = param.substring(0, param.length() - 1);
            }

            numberParam = Long.parseLong(number) * factor;
        }
        return numberParam;
    }
    
    private static boolean getBooleanValue(String initParameter, boolean defaultVal)
    {
        if(initParameter == null || initParameter.trim().length()==0)
            return defaultVal;

        return (initParameter.equalsIgnoreCase("on") || initParameter.equals("1") || initParameter.equalsIgnoreCase("true"));
    }
    
    public long getUploadMaxSize()
    {
        return _uploadMaxSize;
    }

    public void setUploadMaxSize(long uploadMaxSize)
    {
        this._uploadMaxSize = uploadMaxSize;
    }

    public long getUploadMaxFileSize()
    {
        return _uploadMaxFileSize;
    }

    public void setUploadMaxFileSize(long uploadMaxFileSize)
    {
        this._uploadMaxFileSize = uploadMaxFileSize;
    }

    public int getUploadThresholdSize()
    {
        return _uploadThresholdSize;
    }

    public void setUploadThresholdSize(int uploadThresholdSize)
    {
        this._uploadThresholdSize = uploadThresholdSize;
    }

    public String getUploadRepositoryPath()
    {
        return _uploadRepositoryPath;
    }

    public void setUploadRepositoryPath(String uploadRepositoryPath)
    {
        this._uploadRepositoryPath = uploadRepositoryPath;
    }
    
    public boolean isCacheFileSizeErrors()
    {
        return _cacheFileSizeErrors;
    }
    
    public void setCacheFileSizeErrors(boolean cacheFileSizeErrors)
    {
        this._cacheFileSizeErrors = cacheFileSizeErrors;
    }

    public static MultipartRequestWrapperConfig getMultipartRequestWrapperConfig(
            ExternalContext context)
    {

        MultipartRequestWrapperConfig config = (MultipartRequestWrapperConfig) context
                .getApplicationMap().get(MULTIPART_REQUEST_WRAPPER_CONFIG);

        if (config == null)
        {
            config = new MultipartRequestWrapperConfig();

            if(!ExternalContextUtils.getRequestType(context).isPortlet())
            {
                ServletContext servletContext = (ServletContext) context
                        .getContext();
    
                String param = servletContext
                        .getInitParameter(UPLOAD_MAX_FILE_SIZE);
    
                config._uploadMaxFileSize = resolveSize(param,
                        config._uploadMaxFileSize);
                
                param = servletContext
                    .getInitParameter(UPLOAD_MAX_SIZE);

                if (param != null)
                {
                    config._uploadMaxSize = resolveSize(param,
                            config._uploadMaxSize);
                }
                else
                {
                    //If not set, default to uploadMaxFileSize
                    config._uploadMaxSize = resolveSize(param,
                            config._uploadMaxFileSize);
                }
    
                param = servletContext.getInitParameter(UPLOAD_THRESHOLD_SIZE);
    
                config._uploadThresholdSize = resolveSize(param,
                        config._uploadThresholdSize);
    
                config._uploadRepositoryPath = servletContext
                        .getInitParameter(UPLOAD_MAX_REPOSITORY_PATH);

                config._cacheFileSizeErrors = getBooleanValue(servletContext
                        .getInitParameter(UPLOAD_CACHE_FILE_SIZE_ERRORS), false);
                
                context.getApplicationMap().put(MULTIPART_REQUEST_WRAPPER_CONFIG,
                        config);
            }
            else
            {
                Object portletContext = context.getContext();

                String param = PortletUtils.getContextInitParameter(
                        portletContext, UPLOAD_MAX_FILE_SIZE);
        
                config._uploadMaxFileSize = resolveSize(param,
                        config._uploadMaxFileSize);
                
                param = PortletUtils.getContextInitParameter(
                        portletContext, UPLOAD_MAX_SIZE);

                if (param != null)
                {
                    config._uploadMaxSize = resolveSize(param,
                            config._uploadMaxSize);
                }
                else
                {
                    //If not set, default to uploadMaxFileSize
                    config._uploadMaxSize = resolveSize(param,
                            config._uploadMaxFileSize);
                }
        
                param = PortletUtils.getContextInitParameter(
                        portletContext, UPLOAD_THRESHOLD_SIZE);
        
                config._uploadThresholdSize = resolveSize(param,
                        config._uploadThresholdSize);
        
                config._uploadRepositoryPath = PortletUtils.getContextInitParameter(
                        portletContext,UPLOAD_MAX_REPOSITORY_PATH);
                
                config._cacheFileSizeErrors = getBooleanValue(PortletUtils
                        .getContextInitParameter(portletContext, 
                                UPLOAD_CACHE_FILE_SIZE_ERRORS), false);
        
                context.getApplicationMap().put(MULTIPART_REQUEST_WRAPPER_CONFIG,
                        config);
            }
        }

        return config;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy