/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package io.vertx.core.http;

import io.vertx.codegen.annotations.DataObject;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.core.MultiMap;
import io.vertx.core.VertxException;
import io.vertx.core.json.JsonObject;
import io.vertx.core.net.SocketAddress;

import java.net.MalformedURLException;
import java.net.URL;
import java.util.Objects;

Options describing how an HttpClient will connect to make a request.
Author:Julien Viet
/** * Options describing how an {@link HttpClient} will connect to make a request. * * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */
@DataObject(generateConverter = true) public class RequestOptions {
The default value for server method = null
/** * The default value for server method = {@code null} */
public static final SocketAddress DEFAULT_SERVER = null;
The default value for HTTP method = HttpMethod.GET
/** * The default value for HTTP method = {@link HttpMethod#GET} */
public static final HttpMethod DEFAULT_HTTP_METHOD = HttpMethod.GET;
The default value for host name = null
/** * The default value for host name = {@code null} */
public static final String DEFAULT_HOST = null;
The default value for port = null
/** * The default value for port = {@code null} */
public static final Integer DEFAULT_PORT = null;
The default value for SSL = null
/** * The default value for SSL = {@code null} */
public static final Boolean DEFAULT_SSL = null;
The default request URI = "/"
/** * The default request URI = {@code "/"} */
public static final String DEFAULT_URI = "/";
Follow redirection by default = false
/** * Follow redirection by default = {@code false} */
public static final boolean DEFAULT_FOLLOW_REDIRECTS = false;
The default request timeout = 0 (disabled)
/** * The default request timeout = {@code 0} (disabled) */
public static final long DEFAULT_TIMEOUT = 0; private SocketAddress server; private HttpMethod method; private String host; private Integer port; private Boolean ssl; private String uri; private MultiMap headers; private boolean followRedirects; private long timeout;
Default constructor
/** * Default constructor */
public RequestOptions() { server = DEFAULT_SERVER; method = DEFAULT_HTTP_METHOD; host = DEFAULT_HOST; port = DEFAULT_PORT; ssl = DEFAULT_SSL; uri = DEFAULT_URI; followRedirects = DEFAULT_FOLLOW_REDIRECTS; timeout = DEFAULT_TIMEOUT; }
Copy constructor
Params:
  • other – the options to copy
/** * Copy constructor * * @param other the options to copy */
public RequestOptions(RequestOptions other) { setServer(other.server); setMethod(other.method); setHost(other.host); setPort(other.port); setSsl(other.ssl); setURI(other.uri); setTimeout(other.timeout); if (other.headers != null) { setHeaders(MultiMap.caseInsensitiveMultiMap().setAll(other.headers)); } }
Create options from JSON
Params:
  • json – the JSON
/** * Create options from JSON * * @param json the JSON */
public RequestOptions(JsonObject json) { RequestOptionsConverter.fromJson(json, this); JsonObject server = json.getJsonObject("server"); if (server != null) { Integer port = server.getInteger("port", 80); String host = server.getString("host"); String path = server.getString("path"); if (host != null) { this.server = SocketAddress.inetSocketAddress(port, host); } else if (path != null) { this.server = SocketAddress.domainSocketAddress(path); } } }
Get the server address to be used by the client request.
Returns:the server address
/** * Get the server address to be used by the client request. * * @return the server address */
public SocketAddress getServer() { return server; }
Set the server address to be used by the client request.

When the server address is null, the address will be resolved after the host property by the Vert.x resolver.

Use this when you want to connect to a specific server address without name resolution.

Returns:a reference to this, so the API can be used fluently
/** * Set the server address to be used by the client request. * * <p> When the server address is {@code null}, the address will be resolved after the {@code host} * property by the Vert.x resolver. * * <p> Use this when you want to connect to a specific server address without name resolution. * * @return a reference to this, so the API can be used fluently */
public RequestOptions setServer(SocketAddress server) { this.server = server; return this; }
Get the HTTP method to be used by the client request.
Returns: the HTTP method
/** * Get the HTTP method to be used by the client request. * * @return the HTTP method */
public HttpMethod getMethod() { return method; }
Set the HTTP method to be used by the client request.
Returns:a reference to this, so the API can be used fluently
/** * Set the HTTP method to be used by the client request. * * @return a reference to this, so the API can be used fluently */
public RequestOptions setMethod(HttpMethod method) { this.method = method; return this; }
Get the host name to be used by the client request.
Returns: the host name
/** * Get the host name to be used by the client request. * * @return the host name */
public String getHost() { return host; }
Set the host name to be used by the client request.
Returns:a reference to this, so the API can be used fluently
/** * Set the host name to be used by the client request. * * @return a reference to this, so the API can be used fluently */
public RequestOptions setHost(String host) { this.host = host; return this; }
Get the port to be used by the client request.
Returns: the port
/** * Get the port to be used by the client request. * * @return the port */
public Integer getPort() { return port; }
Set the port to be used by the client request.
Returns:a reference to this, so the API can be used fluently
/** * Set the port to be used by the client request. * * @return a reference to this, so the API can be used fluently */
public RequestOptions setPort(Integer port) { this.port = port; return this; }
Returns:is SSL/TLS enabled?
/** * @return is SSL/TLS enabled? */
public Boolean isSsl() { return ssl; }
Set whether SSL/TLS is enabled.
Params:
  • ssl – true if enabled
Returns:a reference to this, so the API can be used fluently
/** * Set whether SSL/TLS is enabled. * * @param ssl true if enabled * @return a reference to this, so the API can be used fluently */
public RequestOptions setSsl(Boolean ssl) { this.ssl = ssl; return this; }
Returns:the request relative URI
/** * @return the request relative URI */
public String getURI() { return uri; }
Set the request relative URI.
Params:
  • uri – the relative uri
Returns:a reference to this, so the API can be used fluently
/** * Set the request relative URI. * * @param uri the relative uri * @return a reference to this, so the API can be used fluently */
public RequestOptions setURI(String uri) { this.uri = uri; return this; }
Returns:true when the client should follow redirection
/** * @return {@code true} when the client should follow redirection */
public Boolean getFollowRedirects() { return followRedirects; }
Set whether to follow HTTP redirect
Params:
  • followRedirects – whether to follow redirect
Returns:a reference to this, so the API can be used fluently
/** * Set whether to follow HTTP redirect * * @param followRedirects whether to follow redirect * @return a reference to this, so the API can be used fluently */
public RequestOptions setFollowRedirects(Boolean followRedirects) { this.followRedirects = followRedirects; return this; }
Returns:the amount of time after which if the request does not return any data within the timeout period an TimeoutException will be passed to the exception handler and the request will be closed.
/** * @return the amount of time after which if the request does not return any data within the timeout period an * {@link java.util.concurrent.TimeoutException} will be passed to the exception handler and * the request will be closed. */
public long getTimeout() { return timeout; }
Sets the amount of time after which if the request does not return any data within the timeout period an TimeoutException will be passed to the exception handler and the request will be closed.
Params:
  • timeout – the amount of time in milliseconds.
Returns:a reference to this, so the API can be used fluently
/** * Sets the amount of time after which if the request does not return any data within the timeout period an * {@link java.util.concurrent.TimeoutException} will be passed to the exception handler and * the request will be closed. * * @param timeout the amount of time in milliseconds. * @return a reference to this, so the API can be used fluently */
public RequestOptions setTimeout(long timeout) { this.timeout = timeout; return this; } private URL parseUrl(String surl) { // Note - parsing a URL this way is slower than specifying host, port and relativeURI try { return new URL(surl); } catch (MalformedURLException e) { throw new VertxException("Invalid url: " + surl, e); } }
Parse an absolute URI to use, this will update the ssl, host, port and uri fields.
Params:
  • absoluteURI – the uri to use
Returns:a reference to this, so the API can be used fluently
/** * Parse an absolute URI to use, this will update the {@code ssl}, {@code host}, * {@code port} and {@code uri} fields. * * @param absoluteURI the uri to use * @return a reference to this, so the API can be used fluently */
public RequestOptions setAbsoluteURI(String absoluteURI) { Objects.requireNonNull(absoluteURI, "Cannot set a null absolute URI"); URL url = parseUrl(absoluteURI); Boolean ssl = false; int port = url.getPort(); String relativeUri = url.getPath().isEmpty() ? "/" + url.getFile() : url.getFile(); String protocol = url.getProtocol(); switch (protocol) { case "http": if (port == -1) { port = 80; } break; case "https": { ssl = true; if (port == -1) { port = 443; } break; } default: throw new IllegalArgumentException(); } this.uri = relativeUri; this.port = port; this.ssl = ssl; this.host = url.getHost(); return this; }
Add a request header.
Params:
  • key – the header key
  • value – the header value
Returns:a reference to this, so the API can be used fluently
/** * Add a request header. * * @param key the header key * @param value the header value * @return a reference to this, so the API can be used fluently */
public RequestOptions addHeader(String key, String value) { return addHeader((CharSequence) key, value); }
Add a request header.
Params:
  • key – the header key
  • value – the header value
Returns:a reference to this, so the API can be used fluently
/** * Add a request header. * * @param key the header key * @param value the header value * @return a reference to this, so the API can be used fluently */
@GenIgnore public RequestOptions addHeader(CharSequence key, CharSequence value) { checkHeaders(); Objects.requireNonNull(key, "no null key accepted"); Objects.requireNonNull(value, "no null value accepted"); headers.add(key, value); return this; } @GenIgnore public RequestOptions addHeader(CharSequence key, Iterable<CharSequence> values) { checkHeaders(); Objects.requireNonNull(key, "no null key accepted"); Objects.requireNonNull(values, "no null values accepted"); headers.add(key, values); return this; }
Set a request header.
Params:
  • key – the header key
  • value – the header value
Returns:a reference to this, so the API can be used fluently
/** * Set a request header. * * @param key the header key * @param value the header value * @return a reference to this, so the API can be used fluently */
@GenIgnore public RequestOptions putHeader(String key, String value) { return putHeader((CharSequence) key, value); }
Set a request header.
Params:
  • key – the header key
  • value – the header value
Returns:a reference to this, so the API can be used fluently
/** * Set a request header. * * @param key the header key * @param value the header value * @return a reference to this, so the API can be used fluently */
@GenIgnore public RequestOptions putHeader(CharSequence key, CharSequence value) { checkHeaders(); headers.set(key, value); return this; } @GenIgnore public RequestOptions putHeader(CharSequence key, Iterable<CharSequence> values) { checkHeaders(); headers.set(key, values); return this; }
Set request headers from a multi-map.
Params:
  • headers – the headers
Returns: a reference to this, so the API can be used fluently
/** * Set request headers from a multi-map. * * @param headers the headers * @return a reference to this, so the API can be used fluently */
@GenIgnore public RequestOptions setHeaders(MultiMap headers) { this.headers = headers; return this; }
Get the request headers
Returns: the headers
/** * Get the request headers * * @return the headers */
@GenIgnore public MultiMap getHeaders() { return headers; } private void checkHeaders() { if (headers == null) { headers = MultiMap.caseInsensitiveMultiMap(); } } public JsonObject toJson() { JsonObject json = new JsonObject(); RequestOptionsConverter.toJson(this, json); if (this.server != null) { JsonObject server = new JsonObject(); if (this.server.isInetSocket()) { server.put("host", this.server.host()); server.put("port", this.server.port()); } else { server.put("path", this.server.path()); } json.put("server", server); } return json; } }