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

io.logicdrop.openapi.ApiClient Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
/*
 * Sparks OpenAPI
 * Generated documentation for the Logicdrop Sparks API and OpenAPI clients.  Logicdrop Sparks lets users build rules, analyze data, and automate documents.  Use it to make decisions faster, generate documents better, and learn from your data.  ### Documentation - [User Documentation](https://docs.logicdrop.com)  ### Modules - [Sparks Compute](https://docs.logicdrop.com/rules/introduction) - [Sparks Decision Tables](https://docs.logicdrop.com/rules/authoring-decision-tables) - [Sparks Documents](https://docs.logicdrop.com/documents/introduction)  ### Clients - [OpenAPI Clients](https://docs.logicdrop.com/development/sample-clients)  ### Security - [Authorizing API Requests](https://docs.logicdrop.com/development/authorization) 
 *
 * The version of the OpenAPI document: v_VERSION_, build# _BUILD_
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package io.logicdrop.openapi;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.openapitools.jackson.nullable.JsonNullableModule;

import java.io.InputStream;
import java.net.URI;
import java.net.URLEncoder;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.nio.charset.Charset;
import java.time.Duration;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.StringJoiner;
import java.util.function.Consumer;
import java.util.stream.Collectors;

/**
 * Configuration and utility class for API clients.
 *
 * 

This class can be constructed and modified, then used to instantiate the * various API classes. The API classes use the settings in this class to * configure themselves, but otherwise do not store a link to this class.

* *

This class is mutable and not synchronized, so it is not thread-safe. * The API classes generated from this are immutable and thread-safe.

* *

The setter methods of this class return the current object to facilitate * a fluent style of configuration.

*/ public class ApiClient { private static final Charset UTF_8 = Charset.forName("UTF-8"); private HttpClient.Builder builder; private ObjectMapper mapper; private String scheme; private String host; private int port; private String basePath; private Consumer interceptor; private Consumer> responseInterceptor; private Duration readTimeout; private static String valueToString(Object value) { if (value == null) { return ""; } return value.toString(); } /** * URL encode a string in the UTF-8 encoding. * * @param s String to encode. * @return URL-encoded representation of the input string. */ public static String urlEncode(String s) { return URLEncoder.encode(s, UTF_8); } /** * Convert a URL query name/value parameter to a list of encoded {@link Pair} * objects. * *

The value can be null, in which case an empty list is returned.

* * @param name The query name parameter. * @param value The query value, which may not be a collection but may be * null. * @return A singleton list of the {@link Pair} objects representing the input * parameters, which is encoded for use in a URL. If the value is null, an * empty list is returned. */ public static List parameterToPairs(String name, Object value) { if (name == null || name.isEmpty() || value == null) { return Collections.emptyList(); } return Collections.singletonList(new Pair(urlEncode(name), urlEncode(value.toString()))); } /** * Convert a URL query name/collection parameter to a list of encoded * {@link Pair} objects. * * @param collectionFormat The swagger collectionFormat string (csv, tsv, etc). * @param name The query name parameter. * @param values A collection of values for the given query name, which may be * null. * @return A list of {@link Pair} objects representing the input parameters, * which is encoded for use in a URL. If the values collection is null, an * empty list is returned. */ public static List parameterToPairs( String collectionFormat, String name, Collection values) { if (name == null || name.isEmpty() || values == null || values.isEmpty()) { return Collections.emptyList(); } // get the collection format (default: csv) String format = collectionFormat == null || collectionFormat.isEmpty() ? "csv" : collectionFormat; // create the params based on the collection format if ("multi".equals(format)) { return values.stream() .map(value -> new Pair(urlEncode(name), urlEncode(valueToString(value)))) .collect(Collectors.toList()); } String delimiter; switch(format) { case "csv": delimiter = urlEncode(","); break; case "ssv": delimiter = urlEncode(" "); break; case "tsv": delimiter = urlEncode("\t"); break; case "pipes": delimiter = urlEncode("|"); break; default: throw new IllegalArgumentException("Illegal collection format: " + collectionFormat); } StringJoiner joiner = new StringJoiner(delimiter); for (Object value : values) { joiner.add(urlEncode(valueToString(value))); } return Collections.singletonList(new Pair(urlEncode(name), joiner.toString())); } /** * Ctor. */ public ApiClient() { builder = HttpClient.newBuilder(); mapper = new ObjectMapper(); mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.configure(DeserializationFeature.FAIL_ON_INVALID_SUBTYPE, false); mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS); mapper.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING); mapper.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING); mapper.registerModule(new JavaTimeModule()); JsonNullableModule jnm = new JsonNullableModule(); mapper.registerModule(jnm); URI baseURI = URI.create("https://api.staging.com"); scheme = baseURI.getScheme(); host = baseURI.getHost(); port = baseURI.getPort(); basePath = baseURI.getRawPath(); interceptor = null; readTimeout = null; responseInterceptor = null; } /** * Set a custom {@link HttpClient.Builder} object to use when creating the * {@link HttpClient} that is used by the API client. * * @param builder Custom client builder. * @return This object. */ public ApiClient setHttpClientBuilder(HttpClient.Builder builder) { this.builder = builder; return this; } /** * Get an {@link HttpClient} based on the current {@link HttpClient.Builder}. * *

The returned object is immutable and thread-safe.

* * @return The HTTP client. */ public HttpClient getHttpClient() { return builder.build(); } /** * Set a custom {@link ObjectMapper} to serialize and deserialize the request * and response bodies. * * @param mapper Custom object mapper. * @return This object. */ public ApiClient setObjectMapper(ObjectMapper mapper) { this.mapper = mapper; return this; } /** * Get a copy of the current {@link ObjectMapper}. * * @return A copy of the current object mapper. */ public ObjectMapper getObjectMapper() { return mapper.copy(); } /** * Set a custom host name for the target service. * * @param host The host name of the target service. * @return This object. */ public ApiClient setHost(String host) { this.host = host; return this; } /** * Set a custom port number for the target service. * * @param port The port of the target service. Set this to -1 to reset the * value to the default for the scheme. * @return This object. */ public ApiClient setPort(int port) { this.port = port; return this; } /** * Set a custom base path for the target service, for example '/v2'. * * @param basePath The base path against which the rest of the path is * resolved. * @return This object. */ public ApiClient setBasePath(String basePath) { this.basePath = basePath; return this; } /** * Get the base URI to resolve the endpoint paths against. * * @return The complete base URI that the rest of the API parameters are * resolved against. */ public String getBaseUri() { return scheme + "://" + host + (port == -1 ? "" : ":" + port) + basePath; } /** * Set a custom scheme for the target service, for example 'https'. * * @param scheme The scheme of the target service * @return This object. */ public ApiClient setScheme(String scheme){ this.scheme = scheme; return this; } /** * Set a custom request interceptor. * *

A request interceptor is a mechanism for altering each request before it * is sent. After the request has been fully configured but not yet built, the * request builder is passed into this function for further modification, * after which it is sent out.

* *

This is useful for altering the requests in a custom manner, such as * adding headers. It could also be used for logging and monitoring.

* * @param interceptor A function invoked before creating each request. A value * of null resets the interceptor to a no-op. * @return This object. */ public ApiClient setRequestInterceptor(Consumer interceptor) { this.interceptor = interceptor; return this; } /** * Get the custom interceptor. * * @return The custom interceptor that was set, or null if there isn't any. */ public Consumer getRequestInterceptor() { return interceptor; } /** * Set a custom response interceptor. * *

This is useful for logging, monitoring or extraction of header variables

* * @param interceptor A function invoked before creating each request. A value * of null resets the interceptor to a no-op. * @return This object. */ public ApiClient setResponseInterceptor(Consumer> interceptor) { this.responseInterceptor = interceptor; return this; } /** * Get the custom response interceptor. * * @return The custom interceptor that was set, or null if there isn't any. */ public Consumer> getResponseInterceptor() { return responseInterceptor; } /** * Set the read timeout for the http client. * *

This is the value used by default for each request, though it can be * overridden on a per-request basis with a request interceptor.

* * @param readTimeout The read timeout used by default by the http client. * Setting this value to null resets the timeout to an * effectively infinite value. * @return This object. */ public ApiClient setReadTimeout(Duration readTimeout) { this.readTimeout = readTimeout; return this; } /** * Get the read timeout that was set. * * @return The read timeout, or null if no timeout was set. Null represents * an infinite wait time. */ public Duration getReadTimeout() { return readTimeout; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy