io.cloudslang.content.httpclient.build.RequestConfigBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs-http-client Show documentation
Show all versions of cs-http-client Show documentation
An HTTP client for CloudSlang
/*
* (c) Copyright 2017 EntIT Software LLC, a Micro Focus company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available 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.cloudslang.content.httpclient.build;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.HttpHost;
import org.apache.http.client.config.RequestConfig;
public class RequestConfigBuilder {
private String connectionTimeout = "0";
private String socketTimeout = "0";
private String followRedirects = "true";
private String proxyHost;
private String proxyPort = "8080";
public RequestConfigBuilder setConnectionTimeout(String connectionTimeout) {
if (!StringUtils.isEmpty(connectionTimeout)) {
this.connectionTimeout = connectionTimeout;
}
return this;
}
public RequestConfigBuilder setSocketTimeout(String socketTimeout) {
if (!StringUtils.isEmpty(socketTimeout)) {
this.socketTimeout = socketTimeout;
}
return this;
}
public RequestConfigBuilder setFollowRedirects(String followRedirects) {
if (!StringUtils.isEmpty(followRedirects)) {
this.followRedirects = followRedirects;
}
return this;
}
public RequestConfigBuilder setProxyHost(String proxyHost) {
this.proxyHost = proxyHost;
return this;
}
public RequestConfigBuilder setProxyPort(String proxyPort) {
if (!StringUtils.isEmpty(proxyPort)) {
this.proxyPort = proxyPort;
}
return this;
}
public RequestConfig buildRequestConfig() {
HttpHost proxy = null;
final int proxyPortNumber;
if (proxyHost != null && !proxyHost.isEmpty()) {
proxyPortNumber = Utils.validatePortNumber(proxyPort);
proxy = new HttpHost(proxyHost, proxyPortNumber);
}
int connectionTimeout = Integer.parseInt(this.connectionTimeout);
int socketTimeout = Integer.parseInt(this.socketTimeout);
//todo should we also allow user to enable redirects prohibited by the HTTP specification (on POST and PUT)? See 'LaxRedirectStrategy'
return RequestConfig.custom()
.setConnectTimeout(connectionTimeout <= 0 ? connectionTimeout : connectionTimeout * 1000)
.setSocketTimeout(socketTimeout <= 0 ? socketTimeout : socketTimeout * 1000)
.setProxy(proxy)
.setRedirectsEnabled(Boolean.parseBoolean(followRedirects)).build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy