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

org.kiwiproject.jaxrs.client.WebTargetHelper Maven / Gradle / Ivy

Go to download

Kiwi is a utility library. We really like Google's Guava, and also use Apache Commons. But if they don't have something we need, and we think it is useful, this is where we put it.

There is a newer version: 4.5.2
Show newest version
package org.kiwiproject.jaxrs.client;

import static java.util.Objects.isNull;
import static org.apache.commons.lang3.StringUtils.isBlank;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotBlank;
import static org.kiwiproject.base.KiwiPreconditions.checkArgumentNotNull;
import static org.kiwiproject.base.KiwiPreconditions.requireNotNull;
import static org.kiwiproject.collect.KiwiArrays.isNullOrEmpty;
import static org.kiwiproject.collect.KiwiLists.isNullOrEmpty;
import static org.kiwiproject.collect.KiwiMaps.isNullOrEmpty;

import com.google.common.annotations.Beta;
import com.google.common.annotations.VisibleForTesting;
import lombok.experimental.Delegate;
import org.apache.commons.lang3.StringUtils;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MultivaluedMap;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Stream;

/**
 * Use with JAX-RS {@link WebTarget} instances to provide convenient functionality when adding query parameters.
 * Most of this functionality is intended for cases when you only want to add parameters when they are not null (or not
 * blank in the case of Strings). If you want a query parameter to be added regardless of whether a value is present
 * or not, use the regular {@link WebTarget#queryParam(String, Object...) queryParam} method in {@code WebTarget}.
 * 

* The methods provided by this helper class allow you to either require query parameters or include them only when * they have a value. When you require a query parameter, an {@link IllegalArgumentException} is thrown when * a caller does not supply a name or value. Other methods allow you to optionally include one or more query * parameters, as well as add them from a {@link Map} or a {@link MultivaluedMap}, such that only non-null/non-blank * values are added. *

* Usage example (assuming {@link WebTargetClientHelper#withClient(Client) withClient} is statically imported): *

 * withClient(client).target("/search")
 *         .queryParamRequireNotBlank("q", query)
 *         .queryParamIfNotBlank("sort", sort)
 *         .queryParamIfNotBlank("page", page)
 *         .queryParamIfNotBlank("limit", limit)
 *         .queryParamFilterNotBlank("langs", langs);
 * 
*

Limitations

* This is a limited wrapper around {@link WebTarget} that provides enhanced functionality only for * adding query parameters. Only the methods defined in this class are chainable, i.e. once you call a method defined * in the regular {@link Client} interface, you leave the {@link WebTargetHelper} context. *

* For example you can NOT do this: *

 * withClient(client).target("/search")
 *         .queryParamRequireNotBlank("q", query)
 *         .queryParam("sort", sort)  // after this, only Client methods are accessible!!! WON'T COMPILE
 *         .queryParamIfNotBlank("page", page)
 *         .queryParamIfNotBlank("limit", limit)
 *         .queryParamFilterNotBlank("langs", langs);
 * 
* With the current basic implementation, this means certain usages will be awkward. For example, when using * both parameter templates and query parameters, the query parameters need to be added first, for the reason * given above about leaving the {@link WebTargetHelper} context. For example: *
 * var response = withClient(client).target("/users/{userId}/trades/{tradeId}")
 *         .queryParamIfNotBlank("displayCurrency", currency)
 *         .queryParamIfNotNull("showLimitPrice", showLimitPrice)
 *         .resolveTemplate("userId", userId)  // after this, only Client methods are accessible!!!
 *         .resolveTemplate("tradeId", tradeId)
 *         .request()
 *         .get();
 * 
* One way to get around this restriction is to use methods from {@link WebTarget} as normal, and then wrap it * with a {@link WebTargetHelper} to add query parameters. The above example would then look like: *
 * var pathResolvedTarget = client.target("/users/{userId}/trades/{tradeId}")
 *         .resolveTemplate("userId", userId)
 *         .resolveTemplate("tradeId", tradeId);
 *
 * var response = withWebTarget(pathResolvedTarget)
 *         .queryParamIfNotBlank("displayCurrency", currency)
 *         .queryParamIfNotNull("showLimitPrice", showLimitPrice)
 *         .request()
 *         .get();
 * 
* This usage allows for full functionality of {@link WebTarget} while still getting the enhanced query parameter * features of this class. It isn't perfect but it works and, in our opinion anyway, doesn't intrude too much on * building JAX-RS requests. In other words, we think it is a decent trade off. * * @implNote Internally this uses Lombok's {@link Delegate}, which is why this class doesn't implement {@link WebTarget} * directly. While this lets us easily delegate method calls to a {@link WebTarget}, it also restricts what we can do * here, and is the primary reason why there are usage restrictions. However, in our general usage this implementation * has been enough for our needs. Nevertheless this is currently marked with the Guava {@link Beta} annotation in case * we change our minds on the implementation. */ @Beta public class WebTargetHelper { @Delegate private final WebTarget webTarget; /** * Package-private constructor. Used by {@link WebTargetClientHelper}. * * @param webTarget the WebTarget to wrap */ WebTargetHelper(WebTarget webTarget) { this.webTarget = requireNotNull(webTarget, "webTarget must not be null"); } /** * @return the wrapped WebTarget */ @VisibleForTesting WebTarget wrapped() { return webTarget; } /** * Create a new instance with the given {@link WebTarget}. * * @param webTarget the WebTarget to use * @return a new instance */ public static WebTargetHelper withWebTarget(WebTarget webTarget) { return new WebTargetHelper(webTarget); } /** * Add the required query parameter. * * @param name the parameter name * @param value the parameter value * @return this instance * @throws IllegalArgumentException if name is blank or value is null */ public WebTargetHelper queryParamRequireNotNull(String name, Object value) { checkArgumentNotBlank(name, "name cannot be blank"); checkArgumentNotNull(value, "value cannot be null for parameter %s", name); var newWebTarget = webTarget.queryParam(name, value); return new WebTargetHelper(newWebTarget); } /** * Add the given query parameter only if name is not blank and value is not null. * * @param name the parameter name * @param value the parameter value * @return this instance */ public WebTargetHelper queryParamIfNotNull(String name, Object value) { if (isBlank(name) || isNull(value)) { return this; } var newWebTarget = this.webTarget.queryParam(name, value); return new WebTargetHelper(newWebTarget); } /** * Adds any non-null values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param values one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotNull(String name, Object... values) { if (isBlank(name) || isNullOrEmpty(values)) { return this; } return queryParamFilterNotNull(name, Arrays.stream(values)); } /** * Adds any non-null values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param values one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotNull(String name, List values) { if (isBlank(name) || isNullOrEmpty(values)) { return this; } return queryParamFilterNotNull(name, values.stream()); } /** * Adds any non-null values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param stream containing one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotNull(String name, Stream stream) { if (isBlank(name) || isNull(stream)) { return this; } var nonNullValues = stream .filter(Objects::nonNull) .toArray(); var newWebTarget = webTarget.queryParam(name, nonNullValues); return new WebTargetHelper(newWebTarget); } /** * Add the required query parameter. * * @param name the parameter name * @param value the parameter value * @return this instance * @throws IllegalArgumentException if name or value is blank */ public WebTargetHelper queryParamRequireNotBlank(String name, String value) { checkArgumentNotBlank(name, "name cannot be blank"); checkArgumentNotBlank(value, "value cannot be blank for parameter %s", name); var newWebTarget = webTarget.queryParam(name, value); return new WebTargetHelper(newWebTarget); } /** * Add the given query parameter only if both name and value are not blank. * * @param name the parameter name * @param value the parameter value * @return this instance */ public WebTargetHelper queryParamIfNotBlank(String name, String value) { if (isBlank(name) || isBlank(value)) { return this; } var newWebTarget = this.webTarget.queryParam(name, value); return new WebTargetHelper(newWebTarget); } /** * Adds any non-blank values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param values one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotBlank(String name, String... values) { if (isBlank(name) || isNullOrEmpty(values)) { return this; } return queryParamFilterNotBlank(name, Arrays.stream(values)); } /** * Adds any non-blank values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param values one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotBlank(String name, List values) { if (isBlank(name) || isNullOrEmpty(values)) { return this; } return queryParamFilterNotBlank(name, values.stream()); } /** * Adds any non-blank values to the the given query parameter. If name is blank, this is a no-op. * * @param name the parameter name * @param stream containing one or more parameter values * @return this instance */ public WebTargetHelper queryParamFilterNotBlank(String name, Stream stream) { if (isBlank(name) || isNull(stream)) { return this; } var nonBlankValues = stream .filter(StringUtils::isNotBlank) .toArray(); var newWebTarget = webTarget.queryParam(name, nonBlankValues); return new WebTargetHelper(newWebTarget); } /** * Adds non-null query parameters from the given map. All map keys must be non-null. * * @param parameters a map representing the query parameters * @return this instance * @implNote This method is distinct from {@link #queryParamsFromMultivaluedMap(MultivaluedMap)} because the * {@link MultivaluedMap} interface extends the regular Java {@link Map} and under certain circumstances this * method will be called even when the argument is actually a {@link MultivaluedMap}. By having separate and * distinctly named methods, it unambiguously avoids this potential problem, at the expense of callers needing * to make a concrete decision on which method to call. However, in most situations that we have seen (in our own * code) this is not an issue. For example, {@link javax.ws.rs.core.UriInfo#getQueryParameters()} returns a * MultivaluedMap, which makes it easy to select the appropriate method to call. */ public WebTargetHelper queryParamsFromMap(Map parameters) { if (isNullOrEmpty(parameters)) { return this; } var targetHelper = this; for (var entry : parameters.entrySet()) { targetHelper = targetHelper.queryParamIfNotNull(entry.getKey(), entry.getValue()); } // NOTE: The above is effectively a foldLeft, which Java Streams does not have. The 3-arg reduce version is a lot // more difficult to understand than a simple loop with a mutable variable that we keep replacing. In addition, // the reduce version cannot be strictly correct, since we cannot define a combiner function which is "an // associative, non-interfering, stateless function for combining" two WebTargetHelper instances. Instead, we // would require it is only used on a sequential (non-parallel) stream. Regardless, the implementation is less // clear than just a loop with a mutable variable, which is why this is not using the streams API. While the // lovely StreamEx library does have a foldLeft where the seed and accumulator have differing types, it is not // worth adding a hard dependency on that library for one function. // See https://stackoverflow.com/questions/24308146/why-is-a-combiner-needed-for-reduce-method-that-converts-type-in-java-8 return targetHelper; } /** * Adds non-null query parameters from the given multivalued map. All map keys must be non-null. * * @param parameters a multivalued representing the query parameters * @return this instance * @implNote See implementation note on {@link #queryParamsFromMap(Map)} for an explanation why this method is * named separately and distinctly. */ @SuppressWarnings({"unchecked"}) public WebTargetHelper queryParamsFromMultivaluedMap(MultivaluedMap parameters) { if (isNull(parameters) || parameters.isEmpty()) { return this; } // NOTES: // 1. This is effectively a foldLeft, which Java Streams does not have. See explanation in method above. // 2. To properly support the generic V type parameter, we unfortunately have to cast the entry value to // List in order to get the compiler to call queryParamFilterNotNull(String, List). If // the cast is not done, the compiler instead "thinks" the value is an Object and selects the // queryParamFilterNotNull(String, Object...) method, which does not work as expected because the value // of the MultivaluedMap is supposed to be a List. The real reason this happens is because the type // erasure of List is simply List. The compiler then (incorrectly from what we'd like to happen) selects // the vararg method as the one to call, since the raw List type is an Object, not a List. var targetHelper = this; for (var entry : parameters.entrySet()) { targetHelper = targetHelper.queryParamFilterNotNull(entry.getKey(), (List) entry.getValue()); } return targetHelper; } }