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

org.primefaces.component.fileupload.CommonsFileUploadDecoder Maven / Gradle / Ivy

Go to download

PrimeFaces is one of the most popular UI libraries in Java EE Ecosystem and widely used by software companies, world renowned brands, banks, financial institutions, insurance companies, universities and more.

There is a newer version: 14.0.0-RC3
Show newest version
/**
 * Copyright 2009-2018 PrimeTek.
 *
 * 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.
 */
package org.primefaces.component.fileupload;

import org.apache.commons.fileupload.FileItem;
import org.primefaces.event.FileUploadEvent;
import org.primefaces.model.DefaultUploadedFile;
import org.primefaces.model.UploadedFileWrapper;
import org.primefaces.webapp.MultipartRequest;

import javax.faces.context.FacesContext;
import javax.servlet.ServletRequestWrapper;

public class CommonsFileUploadDecoder {

    public static void decode(FacesContext context, FileUpload fileUpload, String inputToDecodeId) {
        MultipartRequest multipartRequest = null;
        Object request = context.getExternalContext().getRequest();

        while (request instanceof ServletRequestWrapper) {
            if (request instanceof MultipartRequest) {
                multipartRequest = (MultipartRequest) request;
                break;
            }
            else {
                request = ((ServletRequestWrapper) request).getRequest();
            }
        }

        if (multipartRequest != null) {
            if (fileUpload.getMode().equals("simple")) {
                decodeSimple(context, fileUpload, multipartRequest, inputToDecodeId);
            }
            else {
                decodeAdvanced(context, fileUpload, multipartRequest);
            }
        }
    }

    private static void decodeSimple(FacesContext context, FileUpload fileUpload, MultipartRequest request, String inputToDecodeId) {
        FileItem file = request.getFileItem(inputToDecodeId);

        if (file != null) {
            if (!file.getName().isEmpty() && isValidFile(fileUpload, file)) {
                fileUpload.setSubmittedValue(new UploadedFileWrapper(new DefaultUploadedFile(file, fileUpload)));
            }
            else {
                fileUpload.setSubmittedValue("");
            }
        }
    }

    private static void decodeAdvanced(FacesContext context, FileUpload fileUpload, MultipartRequest request) {
        String clientId = fileUpload.getClientId(context);
        FileItem file = request.getFileItem(clientId);

        if (file != null && isValidFile(fileUpload, file)) {
            fileUpload.queueEvent(new FileUploadEvent(fileUpload, new DefaultUploadedFile(file, fileUpload)));
        }
    }

    private static boolean isValidFile(FileUpload fileUpload, FileItem fileItem) {
        // TODO some more checks could be performed here, e.g. allowed types
        return fileUpload.getSizeLimit() == null || fileItem.getSize() <= fileUpload.getSizeLimit();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy