com.taobao.api.internal.util.RequestCheckUtils Maven / Gradle / Ivy
The newest version!
package com.taobao.api.internal.util;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.FileItem;
import com.taobao.api.internal.util.json.JSONReader;
import com.taobao.api.internal.util.json.JSONValidatingReader;
public class RequestCheckUtils {
public static final String ERROR_CODE_ARGUMENTS_MISSING = "40";
public static final String ERROR_CODE_ARGUMENTS_INVALID = "41";
public static void checkNotEmpty(Object value, String fieldName) throws ApiRuleException {
if (value == null) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_MISSING, "client-error:Missing required arguments:" + fieldName + "");
}
if (value instanceof String) {
if (((String) value).trim().length() == 0) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_MISSING, "client-error:Missing required arguments:" + fieldName + "");
}
}
}
public static void checkMaxLength(String value, int maxLength, String fieldName) throws ApiRuleException {
if (value != null) {
if (value.length() > maxLength) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the string length of " + fieldName + " can not be larger than " + maxLength + ".");
}
}
}
public static void checkMaxLength(FileItem fileItem, int maxLength, String fieldName) throws ApiRuleException {
if (fileItem != null && fileItem.getFileLength() > maxLength) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the file size of " + fieldName + " can not be larger than " + maxLength + ".");
}
}
public static void checkMaxListSize(String value, int maxSize, String fieldName) throws ApiRuleException {
if (value != null) {
String[] list = value.split(",");
if (list != null && list.length > maxSize) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the array size of " + fieldName + " must be less than " + maxSize + ".");
}
}
}
public static void checkMaxListSize(List list, int maxSize, String fieldName) throws ApiRuleException {
if (list != null) {
if (list != null && list.size() > maxSize) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the array size of " + fieldName + " must be less than " + maxSize + ".");
}
}
}
public static void checkObjectMaxListSize(String value, int maxSize, String fieldName) throws ApiRuleException {
if (value != null) {
JSONReader reader = new JSONValidatingReader();
Object obj = reader.read(value);
if (obj instanceof List> && ((List>) obj).size() > maxSize) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the array size of " + fieldName + " must be less than " + maxSize + ".");
}
}
}
public static void checkMaxValue(Long value, long maxValue, String fieldName) throws ApiRuleException {
if (value != null) {
if (value > maxValue) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the value of " + fieldName + " can not be larger than " + maxValue + ".");
}
}
}
public static void checkMinValue(Long value, long minValue, String fieldName) throws ApiRuleException {
if (value != null) {
if (value < minValue) {
throw new ApiRuleException(ERROR_CODE_ARGUMENTS_INVALID, "client-error:Invalid arguments:the value of " + fieldName + " can not be less than " + minValue + ".");
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy