Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.intuit.karate.http.HttpRequestBuilder Maven / Gradle / Ivy
/*
* The MIT License
*
* Copyright 2022 Karate Labs Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.intuit.karate.http;
import com.intuit.karate.Json;
import com.intuit.karate.JsonUtils;
import com.intuit.karate.StringUtils;
import com.intuit.karate.graal.JsArray;
import com.intuit.karate.graal.JsValue;
import com.intuit.karate.graal.Methods;
import io.netty.handler.codec.http.cookie.ClientCookieEncoder;
import io.netty.handler.codec.http.cookie.Cookie;
import io.netty.handler.codec.http.cookie.DefaultCookie;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import org.apache.http.client.utils.URIBuilder;
import org.graalvm.polyglot.Value;
import org.graalvm.polyglot.proxy.ProxyObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author pthomas3
*/
public class HttpRequestBuilder implements ProxyObject {
private static final Logger logger = LoggerFactory.getLogger(HttpRequestBuilder.class);
private static final String URL = "url";
private static final String METHOD = "method";
private static final String PATH = "path";
private static final String PARAM = "param";
private static final String PARAMS = "params";
private static final String HEADER = "header";
private static final String HEADERS = "headers";
private static final String BODY = "body";
private static final String INVOKE = "invoke";
private static final String GET = "get";
private static final String POST = "post";
private static final String PUT = "put";
private static final String DELETE = "delete";
private static final String PATCH = "patch";
private static final String HEAD = "head";
private static final String CONNECT = "connect";
private static final String OPTIONS = "options";
private static final String TRACE = "trace";
private static final String MULTI_PART = "multiPart";
private static final String[] KEYS = new String[]{
URL, METHOD, PATH, PARAM, PARAMS, HEADER, HEADERS, BODY, INVOKE,
GET, POST, PUT, DELETE, PATCH, HEAD, CONNECT, OPTIONS, TRACE, MULTI_PART
};
private static final Set KEY_SET = new HashSet<>(Arrays.asList(KEYS));
private static final JsArray KEY_ARRAY = new JsArray(KEYS);
private String url;
private String method;
private List paths;
private Map> params;
private Map> headers;
private MultiPartBuilder multiPart;
private Object body;
private Set cookies;
private String retryUntil;
public final HttpClient client;
public HttpRequestBuilder(HttpClient client) {
this.client = client;
}
public HttpRequestBuilder reset() {
// url will be retained
method = null;
paths = null;
params = null;
headers = null;
multiPart = null;
body = null;
cookies = null;
retryUntil = null;
return this;
}
public HttpRequestBuilder copy(HttpClient newClient) {
HttpRequestBuilder hrb = new HttpRequestBuilder(newClient == null ? client : newClient);
hrb.url = url;
hrb.method = method;
hrb.paths = paths;
hrb.params = params;
hrb.headers = headers;
hrb.multiPart = multiPart;
hrb.body = body;
hrb.cookies = cookies;
hrb.retryUntil = retryUntil;
return hrb;
}
public Response invoke(String method) {
this.method = method;
return invoke();
}
public Response invoke(String method, Object body) {
this.method = method;
this.body = body;
return invoke();
}
public HttpRequest build() {
buildInternal();
HttpRequest request = new HttpRequest();
request.setMethod(method);
request.setUrl(getUri());
if (multiPart != null) {
request.setBodyForDisplay(multiPart.getBodyForDisplay());
}
if (body != null) {
request.setBody(JsonUtils.toBytes(body));
}
request.setHeaders(headers);
return request;
}
private void buildInternal() {
if (url == null) {
url = client.getConfig().getUrl();
if (url == null) {
throw new RuntimeException("incomplete http request, 'url' not set");
}
}
if (method == null) {
if (multiPart != null && multiPart.isMultipart()) {
method = "POST";
} else {
method = "GET";
}
}
method = method.toUpperCase();
if ("GET".equals(method) && multiPart != null) {
Map parts = multiPart.getFormFields();
if (parts != null) {
parts.forEach((k, v) -> param(k, (String) v));
}
multiPart = null;
}
if (multiPart != null) {
if (body == null) { // this is not-null only for a re-try, don't rebuild multi-part
body = multiPart.build();
String userContentType = getHeader(HttpConstants.HDR_CONTENT_TYPE);
if (userContentType != null) {
String boundary = multiPart.getBoundary();
if (boundary != null) {
contentType(userContentType + "; boundary=" + boundary);
}
} else {
contentType(multiPart.getContentTypeHeader());
}
}
}
if (cookies != null && !cookies.isEmpty()) {
List cookieValues = new ArrayList<>(cookies.size());
for (Cookie c : cookies) {
String cookieValue = ClientCookieEncoder.LAX.encode(c);
cookieValues.add(cookieValue);
}
header(HttpConstants.HDR_COOKIE, StringUtils.join(cookieValues, "; "));
}
if (body != null) {
if (multiPart == null) {
String contentType = getContentType();
if (contentType == null) {
ResourceType rt = ResourceType.fromObject(body);
if (rt != null) {
contentType = rt.contentType;
}
}
Charset charset = contentType == null ? null : HttpUtils.parseContentTypeCharset(contentType);
if (charset == null) {
// client can be null when not in karate scenario, and mock clients can have nulls
charset = client == null ? null : client.getConfig() == null ? null : client.getConfig().getCharset();
if (charset != null) {
// edge case, support setting content type to an empty string
contentType = StringUtils.trimToNull(contentType);
if (contentType != null) {
contentType = contentType + "; charset=" + charset;
}
}
}
contentType(contentType);
}
}
}
public Response invoke() {
return client.invoke(build());
}
public boolean isRetry() {
return retryUntil != null;
}
public String getRetryUntil() {
return retryUntil;
}
public void setRetryUntil(String retryUntil) {
this.retryUntil = retryUntil;
}
public HttpRequestBuilder url(String value) {
url = value;
return this;
}
public HttpRequestBuilder method(String method) {
this.method = method;
return this;
}
public HttpRequestBuilder paths(String... paths) {
for (String path : paths) {
path(path);
}
return this;
}
public HttpRequestBuilder path(String path) {
if (path == null) {
return this;
}
if (paths == null) {
paths = new ArrayList<>();
}
paths.add(path);
return this;
}
public String getUri() {
try {
URIBuilder builder;
if (url == null) {
builder = new URIBuilder();
} else {
builder = new URIBuilder(url);
}
if (params != null) {
params.forEach((key, values) -> values.forEach(value -> builder.addParameter(key, value)));
}
if (paths != null) {
List segments = new ArrayList();
for (String item : builder.getPathSegments()) {
if (!item.isEmpty()) {
segments.add(item);
}
}
Iterator pathIterator = paths.iterator();
while (pathIterator.hasNext()) {
String item = pathIterator.next();
if (!pathIterator.hasNext() && "/".equals(item)) { // preserve trailing slash
segments.add("");
} else {
for (String s : StringUtils.split(item, '/', true)) {
segments.add(s);
}
}
}
builder.setPathSegments(segments);
}
URI uri = builder.build();
return uri.toASCIIString();
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}
}
public HttpRequestBuilder body(Object body) {
this.body = body;
return this;
}
public HttpRequestBuilder bodyJson(String json) {
this.body = Json.of(json).value();
return this;
}
public List getHeaderValues(String name) {
return StringUtils.getIgnoreKeyCase(headers, name); // TODO optimize
}
public String getHeader(String name) {
List list = getHeaderValues(name);
if (list == null || list.isEmpty()) {
return null;
} else {
return list.get(0);
}
}
public String getContentType() {
return getHeader(HttpConstants.HDR_CONTENT_TYPE);
}
public HttpRequestBuilder removeHeader(String name) {
if (headers != null) {
StringUtils.removeIgnoreKeyCase(headers, name);
}
return this;
}
public HttpRequestBuilder header(String name, String... values) {
return header(name, Arrays.asList(values));
}
public HttpRequestBuilder header(String name, List values) {
if (headers == null) {
headers = new LinkedHashMap<>();
}
for (String key : headers.keySet()) {
if (key.equalsIgnoreCase(name)) {
name = key;
break;
}
}
headers.put(name, values);
return this;
}
public HttpRequestBuilder header(String name, String value) {
return header(name, Collections.singletonList(value));
}
public HttpRequestBuilder headers(Map map) {
map.forEach((k, v) -> {
if (!k.startsWith(":")) { // strip (armeria) special headers
if (v instanceof List) {
header(k, (List) v);
} else if (v != null) {
header(k, v.toString());
}
}
});
return this;
}
public HttpRequestBuilder headers(Value value) {
JsValue jv = new JsValue(value);
if (jv.isObject()) {
headers(jv.getAsMap());
} else {
logger.warn("unexpected headers() argument: {}", value);
}
return this;
}
public HttpRequestBuilder contentType(String contentType) {
if (contentType != null) {
header(HttpConstants.HDR_CONTENT_TYPE, contentType);
}
return this;
}
public List getParam(String name) {
if (params == null || name == null) {
return null;
}
return params.get(name);
}
public HttpRequestBuilder param(String name, String... values) {
return param(name, Arrays.asList(values));
}
public HttpRequestBuilder param(String name, List values) {
if (params == null) {
params = new HashMap<>();
}
List notNullValues = values.stream().filter(v -> v != null).collect(Collectors.toList());
if (!notNullValues.isEmpty()) {
params.put(name, notNullValues);
}
return this;
}
public HttpRequestBuilder params(Map> params) {
this.params = params;
return this;
}
public HttpRequestBuilder cookies(Collection cookies) {
for (Map map : cookies) {
cookie(map);
}
return this;
}
public HttpRequestBuilder cookie(Map map) {
return cookie(Cookies.fromMap(map));
}
public HttpRequestBuilder cookie(Cookie cookie) {
if (cookies == null) {
cookies = new HashSet<>();
}
cookies.add(cookie);
return this;
}
public HttpRequestBuilder cookie(String name, String value) {
return cookie(new DefaultCookie(name, value));
}
public HttpRequestBuilder formField(String name, Object value) {
if (multiPart == null) {
multiPart = new MultiPartBuilder(false, client);
}
multiPart.part(name, value);
return this;
}
public HttpRequestBuilder multiPartJson(String json) {
return multiPart(Json.of(json).value());
}
public HttpRequestBuilder multiPart(Map map) {
if (multiPart == null) {
multiPart = new MultiPartBuilder(true, client);
}
multiPart.part(map);
return this;
}
//==========================================================================
//
private final Methods.FunVar PATH_FUNCTION = args -> {
if (args.length == 0) {
return getUri();
} else {
for (Object o : args) {
if (o != null) {
path(o.toString());
}
}
return this;
}
};
private static String toString(Object o) {
return o == null ? null : o.toString();
}
private final Methods.FunVar PARAM_FUNCTION = args -> {
if (args.length == 1) {
List list = getParam(toString(args[0]));
if (list == null || list.isEmpty()) {
return null;
}
return list.get(0);
} else {
param(toString(args[0]), toString(args[1]));
return this;
}
};
private final Methods.FunVar HEADER_FUNCTION = args -> {
if (args.length == 1) {
return getHeader(toString(args[0]));
} else {
header(toString(args[0]), toString(args[1]));
return this;
}
};
private final Methods.FunVar INVOKE_FUNCTION = args -> {
switch (args.length) {
case 0:
return invoke();
case 1:
return invoke(args[0].toString());
default:
return invoke(args[0].toString(), args[1]);
}
};
private final Methods.FunVar METHOD_FUNCTION = args -> {
if (args.length > 0) {
return method((String) args[0]);
} else {
return method;
}
};
private final Methods.FunVar BODY_FUNCTION = args -> {
if (args == null) { // can be null
return this;
}
if (args.length > 0) {
return body(args[0]);
} else {
return JsValue.fromJava(body);
}
};
private final Supplier GET_FUNCTION = () -> invoke(GET);
private final Function POST_FUNCTION = o -> invoke(POST, o);
private final Function PUT_FUNCTION = o -> invoke(PUT, o);
private final Function PATCH_FUNCTION = o -> invoke(PATCH, o);
private final Supplier DELETE_FUNCTION = () -> invoke(DELETE);
@Override
public Object getMember(String key) {
switch (key) {
case METHOD:
return METHOD_FUNCTION;
case PATH:
return PATH_FUNCTION;
case HEADER:
return HEADER_FUNCTION;
case HEADERS:
return JsValue.fromJava(headers);
case PARAM:
return PARAM_FUNCTION;
case PARAMS:
return JsValue.fromJava(params);
case BODY:
return BODY_FUNCTION;
case INVOKE:
return INVOKE_FUNCTION;
case GET:
return GET_FUNCTION;
case POST:
return POST_FUNCTION;
case PUT:
return PUT_FUNCTION;
case PATCH:
return PATCH_FUNCTION;
case DELETE:
return DELETE_FUNCTION;
case URL:
return (Function) this::url;
case MULTI_PART:
return (Function, Object>) this::multiPart;
default:
logger.warn("no such property on http object: {}", key);
return null;
}
}
@Override
public void putMember(String key, Value value) {
switch (key) {
case METHOD:
method = value.asString();
break;
case BODY:
body = JsValue.toJava(value);
break;
case HEADERS:
headers(value);
break;
case PARAMS:
params = (Map) JsValue.toJava(value);
break;
case URL:
url = value.asString();
break;
default:
logger.warn("put not supported on http object: {} - {}", key, value);
}
}
@Override
public Object getMemberKeys() {
return KEY_ARRAY;
}
@Override
public boolean hasMember(String key) {
return KEY_SET.contains(key);
}
@Override
public String toString() {
return getUri();
}
public String toCurlCommand() {
buildInternal();
StringBuilder sb = new StringBuilder();
sb.append("curl ");
sb.append("-X ").append(method).append(' ');
String url = getUri();
if (!StringUtils.isBlank(url)) {
sb.append(getUri()).append(' ');
}
if (multiPart != null) {
sb.append("\\\n");
sb.append(multiPart.toCurlCommand());
} else if (body != null) {
sb.append("\\\n");
String raw = JsonUtils.toString(body);
sb.append("-d '").append(raw).append("'");
}
return sb.toString();
}
public Map toMap() {
buildInternal();
Map map = new HashMap();
map.put("url", getUri());
map.put("method", method);
if (headers != null) {
List list = new ArrayList(headers.size());
map.put("headers", list);
headers.forEach((k, v) -> {
if (v != null) {
v.forEach(value -> {
if (value != null) {
Map header = new HashMap();
header.put("name", k);
header.put("value", value);
list.add(header);
}
});
}
});
}
if (params != null) {
List list = new ArrayList(params.size());
map.put("params", list);
params.forEach((k, v) -> {
if (v != null) {
v.forEach(value -> {
if (value != null) {
Map header = new HashMap();
header.put("name", k);
header.put("value", value);
list.add(header);
}
});
}
});
}
if (body != null) {
map.put("body", body);
}
return map;
}
}