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

com.cybermkd.route.core.multipart.MultipartBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.1.3
Show newest version
package com.cybermkd.route.core.multipart;

import com.cybermkd.common.Constant;
import com.cybermkd.common.http.HttpRequest;
import com.cybermkd.common.http.exception.WebException;
import com.cybermkd.common.util.stream.FileRenamer;
import com.cybermkd.log.Logger;
import com.cybermkd.upload.MultipartRequest;

import java.io.File;
import java.io.IOException;

/**
 * Created by ice on 15-1-6.
 */
public class MultipartBuilder {
    private static final Logger logger = Logger.getLogger(MultipartBuilder.class);

    private String saveDirectory = Constant.uploadDirectory;
    private int maxPostSize = Constant.uploadMaxSize;
    private String[] uploadAllows;
    private String encoding = Constant.encoding;
    private boolean overwrite = false;
    private FileRenamer renamer = FileRenamer.RENAMER;

    public MultipartBuilder() {
    }

    public MultipartBuilder(String saveDirectory, boolean overwrite, Class renamerClass, int maxPostSize, String encoding, String[] uploadAllows) {
        if (saveDirectory != null && !"".equals(saveDirectory)) {
            this.saveDirectory = saveDirectory;
        }
        this.overwrite = overwrite;
        if (renamer == null || renamerClass != renamer.getClass()) {
            try {
                renamer = renamerClass.newInstance();
            } catch (InstantiationException e) {
                logger.error("Could not init FileRenamer Class.", e);
            } catch (IllegalAccessException e) {
                logger.error("Could not access FileRenamer Class.", e);
            }
        }
        if (maxPostSize > 0) {
            this.maxPostSize = maxPostSize;
        }
        if (encoding != null && !"".equals(encoding)) {
            this.encoding = encoding;
        }
        this.uploadAllows = uploadAllows;
    }

    public MultipartParam readMultipart(HttpRequest request) {
        if (request == null)
            throw new IllegalArgumentException("Could not found httpRequest for multipartRequest.");

        File saveDir = new File(saveDirectory);
        if (!saveDir.exists()) {
            if (!saveDirectory.startsWith("/")) {
                saveDirectory = "/" + saveDirectory;
            }
            saveDir = new File(request.getRealPath("/") + saveDirectory);
        }

        if (!saveDir.exists()) {
            if (!saveDir.mkdirs()) {
                throw new WebException("Directory " + saveDirectory + " not exists and can not create directory.");
            }
        }

        MultipartParam multipartParam = null;
        FileRenamer fileRenamer = null;
        //同名文件直接覆盖
        if (!overwrite && renamer != null) {
            fileRenamer = renamer;
        }

        try {
            MultipartRequest multipartRequest = new MultipartRequest(request, saveDir, maxPostSize, encoding, fileRenamer, uploadAllows, Constant.uploadDenieds);
            multipartParam = new MultipartParam(multipartRequest.getFiles(), multipartRequest.getParams());
        } catch (IOException e) {
            throw new WebException(e.getMessage());
        }
        return multipartParam;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy