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

com.gitee.easyopen.ApiParamParser Maven / Gradle / Ivy

Go to download

easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen

There is a newer version: 1.0.4
Show newest version
package com.gitee.easyopen;

import com.gitee.easyopen.bean.Consts;
import com.gitee.easyopen.message.Errors;
import com.gitee.easyopen.util.JsonUtil;
import com.gitee.easyopen.util.RequestUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.MediaType;
import org.springframework.util.StringUtils;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.commons.CommonsMultipartResolver;

import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * 参数解析默认实现
 *
 * @author tanghc
 */
public class ApiParamParser implements ParamParser {

    private static final Logger logger = LoggerFactory.getLogger(ApiParamParser.class);

    private static final String CONTENT_TYPE_MULTIPART = MediaType.MULTIPART_FORM_DATA_VALUE;
    private static final String CONTENT_TYPE_JSON = MediaType.APPLICATION_JSON_VALUE;
    private static final String CONTENT_TYPE_TEXT = MediaType.TEXT_PLAIN_VALUE;

    public static final String UPLOAD_FORM_DATA_NAME = "body_data";

    private static String REQUEST_DATA_NAME = ParamNames.DATA_NAME;


    @Override
    public ApiParam parse(HttpServletRequest request) {
        String requestJson = null;
        try {
            requestJson = this.getJson(request);
        } catch (Exception e) {
            logger.error("parse error", e);
        }
        if (StringUtils.isEmpty(requestJson)) {
            throw Errors.ERROR_PARAM.getException();
        }
        ApiParam param = this.jsonToApiParam(requestJson);
        this.bindRestParam(param, request);
        return param;
    }

    public String getJson(HttpServletRequest request) throws Exception {
        String requestJson = null;

        if (RequestUtil.isGetRequest(request)) {
            Map params = RequestUtil.convertRequestParamsToMap(request);
            requestJson = JsonUtil.toJSONString(params);
        } else {
            String contectType = request.getContentType();

            if (contectType == null) {
                contectType = "";
            }

            contectType = contectType.toLowerCase();

            // json或者纯文本形式
            if (contectType.contains(CONTENT_TYPE_JSON) || contectType.contains(CONTENT_TYPE_TEXT)) {
                requestJson = RequestUtil.getText(request);
            } else if (contectType.contains(CONTENT_TYPE_MULTIPART)) {
                // 上传文件形式
                requestJson = this.parseUploadRequest(request);
            } else {
                Map params = RequestUtil.convertRequestParamsToMap(request);
                requestJson = JsonUtil.toJSONString(params);
            }
        }

        return requestJson;
    }

    /**
     * 解析文件上传请求
     *
     * @param request
     * @return 返回json字符串
     */
    protected String parseUploadRequest(HttpServletRequest request) {
        CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(
                request.getSession().getServletContext());
        // 检查form中是否有enctype="multipart/form-data"
        if (multipartResolver.isMultipart(request)) {
            MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest) request;
            Map fileMap = multiRequest.getFileMap();
            Map finalMap = new HashMap<>(fileMap.size());

            Set keys = fileMap.keySet();
            for (String name : keys) {
                MultipartFile file = fileMap.get(name);
                if (file.getSize() > 0) {
                    finalMap.put(name, file);
                }
            }

            if (finalMap.size() > 0) {
                // 保存上传文件
                ApiContext.setUploadContext(new ApiUploadContext(finalMap));
            }
        }

        String json = request.getParameter(UPLOAD_FORM_DATA_NAME);
        if (json != null) {
            return json;
        }

        Map params = RequestUtil.convertRequestParamsToMap(request);
        return JsonUtil.toJSONString(params);
    }

    protected ApiParam jsonToApiParam(String json) {
        if (StringUtils.isEmpty(json)) {
            throw Errors.ERROR_PARAM.getException();
        }
        try {
            Map jsonObject = JsonUtil.parseObject(json);
            return new ApiParam(jsonObject);
        } catch (Exception e) {
            throw Errors.ERROR_JSON_DATA.getException(e.getMessage());
        }
    }
    
    protected void bindRestParam(ApiParam param, HttpServletRequest request) {
    	String name = (String)request.getAttribute(Consts.REST_PARAM_NAME);
    	String version = (String)request.getAttribute(Consts.REST_PARAM_VERSION);
    	if(name != null) {
    		param.setName(name);
    	}
    	if(version != null) {
    		param.setVersion(version);
    	}
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy