io.datarouter.httpclient.endpoint.JavaEndpointTool Maven / Gradle / Ivy
/*
* Copyright © 2009 HotPads ([email protected])
*
* 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 io.datarouter.httpclient.endpoint;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.net.URI;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.datarouter.httpclient.endpoint.java.BaseJavaEndpoint;
import io.datarouter.httpclient.endpoint.param.EndpointParam;
import io.datarouter.httpclient.endpoint.param.IgnoredField;
import io.datarouter.httpclient.endpoint.param.ParamType;
import io.datarouter.httpclient.endpoint.param.RequestBody;
import io.datarouter.httpclient.request.DatarouterHttpRequest;
import io.datarouter.httpclient.request.HttpRequestMethod;
import io.datarouter.json.JsonSerializer;
public class JavaEndpointTool{
private static final Logger logger = LoggerFactory.getLogger(JavaEndpointTool.class);
public static DatarouterHttpRequest toDatarouterHttpRequest(BaseJavaEndpoint,?> endpoint,
JsonSerializer serializer){
Objects.requireNonNull(endpoint.urlPrefix);
String finalUrl = URI.create(endpoint.urlPrefix + endpoint.pathNode.toSlashedString()).normalize().toString();
DatarouterHttpRequest request = new DatarouterHttpRequest(
endpoint.method,
finalUrl,
endpoint.shouldSkipSecurity,
endpoint.shouldSkipLogs);
request.setRetrySafe(endpoint.getRetrySafe());
endpoint.timeout.ifPresent(request::setTimeout);
endpoint.headers.forEach((key,values) -> values.forEach(value -> request.addHeader(key, value)));
endpoint.cookies.forEach(request::addCookie);
ParamsMap paramsMap = JavaEndpointTool.getParamFields(endpoint, serializer);
request.addGetParams(paramsMap.getParams);
request.addPostParams(paramsMap.postParams);
return request;
}
public static class ParamsMap{
public final Map getParams;
public final Map postParams;
public ParamsMap(Map getParams, Map postParams){
this.getParams = getParams;
this.postParams = postParams;
}
}
public static class ParamsKeysMap{
public final List getKeys;
public final List postKeys;
public ParamsKeysMap(List getKeys, List postKeys){
this.getKeys = getKeys;
this.postKeys = postKeys;
}
public List getAllKeys(){
List keys = new ArrayList<>();
keys.addAll(getKeys);
keys.addAll(postKeys);
return keys;
}
}
/**
* Convert all field names and values to a map.
*
* EndpointRequestBodies are ignored.
* Both GET and POST params will be added to the map
*
* If optional fields are not present, they will not be added to the map
*/
public static ParamsMap getParamFields(BaseJavaEndpoint,?> endpoint, JsonSerializer serializer){
Map getParams = new LinkedHashMap<>();
Map postParams = new LinkedHashMap<>();
for(Field field : endpoint.getClass().getFields()){
IgnoredField ignoredField = field.getAnnotation(IgnoredField.class);
if(ignoredField != null){
continue;
}
if(Modifier.isStatic(field.getModifiers())){
continue;
}
if(field.getAnnotation(RequestBody.class) != null){
continue;
}
String key = getFieldName(field);
Object value = null;
try{
value = field.get(endpoint);
}catch(IllegalArgumentException | IllegalAccessException ex){
logger.error("", ex);
}
boolean isOptional = field.getType().isAssignableFrom(Optional.class);
if(isOptional && value == null){
throw new RuntimeException(String.format(
"%s: Optional fields cannot be null. '%s' needs to be initialized to Optional.empty().",
endpoint.getClass().getSimpleName(), key));
}
if(value == null){
throw new RuntimeException(String.format(
"%s: Fields cannot be null. '%s' needs to be initialized or changed to an Optional field.",
endpoint.getClass().getSimpleName(), key));
}
EndpointParam param = field.getAnnotation(EndpointParam.class);
Optional parsedValue = getValue(field, value, serializer);
if(param == null || param.paramType() == null || param.paramType() == ParamType.DEFAULT){
if(endpoint.method == HttpRequestMethod.GET){
parsedValue.ifPresent(paramValue -> getParams.put(key, paramValue));
}else if(endpoint.method == HttpRequestMethod.POST){
parsedValue.ifPresent(paramValue -> postParams.put(key, paramValue));
}
continue;
}
ParamType paramType = param.paramType();
if(paramType == ParamType.GET){
parsedValue.ifPresent(paramValue -> getParams.put(key, paramValue));
}else if(paramType == ParamType.POST){
parsedValue.ifPresent(paramValue -> postParams.put(key, paramValue));
}
}
return new ParamsMap(getParams, postParams);
}
public static Optional