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

com.jcabi.http.request.ApacheRequest Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/**
 * Copyright (c) 2011-2014, jcabi.com
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met: 1) Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the following
 * disclaimer. 2) Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided
 * with the distribution. 3) Neither the name of the jcabi.com nor
 * the names of its contributors may be used to endorse or promote
 * products derived from this software without specific prior written
 * permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.jcabi.http.request;

import com.jcabi.aspects.Immutable;
import com.jcabi.aspects.Loggable;
import com.jcabi.http.ImmutableHeader;
import com.jcabi.http.Request;
import com.jcabi.http.RequestBody;
import com.jcabi.http.RequestURI;
import com.jcabi.http.Response;
import com.jcabi.http.Wire;
import com.jcabi.immutable.Array;
import java.io.IOException;
import java.net.URI;
import java.net.URL;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Map;
import javax.validation.constraints.NotNull;
import lombok.EqualsAndHashCode;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import org.apache.http.entity.ByteArrayEntity;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

/**
 * Implementation of {@link Request},
 * based on Apache HTTP client.
 *
 * 

The class is immutable and thread-safe. * * @author Yegor Bugayenko ([email protected]) * @version $Id$ * @since 0.8 * @checkstyle ClassDataAbstractionCoupling (500 lines) */ @Immutable @EqualsAndHashCode(of = "base") @Loggable(Loggable.DEBUG) @SuppressWarnings("PMD.TooManyMethods") public final class ApacheRequest implements Request { /** * The wire to use. * @checkstyle AnonInnerLength (200 lines) */ private static final Wire WIRE = new Wire() { /** * {@inheritDoc} * @checkstyle ParameterNumber (6 lines) */ @Override public Response send(final Request req, final String home, final String method, final Collection> headers, final byte[] content) throws IOException { final CloseableHttpResponse response = HttpClients.createSystem().execute( this.httpRequest(home, method, headers, content) ); try { return new DefaultResponse( req, response.getStatusLine().getStatusCode(), response.getStatusLine().getReasonPhrase(), this.headers(response.getAllHeaders()), this.consume(response.getEntity()) ); } finally { response.close(); } } /** * Create request. * @return Request * @checkstyle ParameterNumber (6 lines) */ public HttpEntityEnclosingRequestBase httpRequest(final String home, final String method, final Collection> headers, final byte[] content) { final HttpEntityEnclosingRequestBase req = new HttpEntityEnclosingRequestBase() { @Override public String getMethod() { return method; } }; final URI uri = URI.create(home); req.setConfig( RequestConfig.custom() .setCircularRedirectsAllowed(false) .setRedirectsEnabled(false) .build() ); req.setURI(uri); req.setEntity(new ByteArrayEntity(content)); for (final Map.Entry header : headers) { req.addHeader(header.getKey(), header.getValue()); } return req; } /** * Fetch body from http entity. * @param entity HTTP entity * @return Body in UTF-8 * @throws IOException If fails */ private byte[] consume(final HttpEntity entity) throws IOException { final byte[] body; if (entity == null) { body = new byte[0]; } else { body = EntityUtils.toByteArray(entity); } return body; } /** * Make a list of all hdrs. * @param list Apache HTTP hdrs * @return Body in UTF-8 */ @SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops") private Array> headers(final Header... list) { final Collection> headers = new LinkedList>(); for (final Header header : list) { headers.add( new ImmutableHeader( header.getName(), header.getValue() ) ); } return new Array>(headers); } }; /** * Base request. */ private final transient Request base; /** * Public ctor. * @param url The resource to work with */ public ApacheRequest(@NotNull(message = "URL can't be NULL") final URL url) { this(url.toString()); } /** * Public ctor. * @param uri The resource to work with */ public ApacheRequest(@NotNull(message = "URI can't be NULL") final URI uri) { this(uri.toString()); } /** * Public ctor. * @param uri The resource to work with */ public ApacheRequest(@NotNull(message = "URI can't be NULL") final String uri) { this.base = new BaseRequest(ApacheRequest.WIRE, uri); } @Override @NotNull public RequestURI uri() { return this.base.uri(); } @Override public Request header( @NotNull(message = "header name can't be NULL") final String name, @NotNull(message = "header value can't be NULL") final Object value) { return this.base.header(name, value); } @Override public Request reset( @NotNull(message = "header name can't be NULL") final String name) { return this.base.reset(name); } @Override public RequestBody body() { return this.base.body(); } @Override public Request method( @NotNull(message = "method can't be NULL") final String method) { return this.base.method(method); } @Override public Response fetch() throws IOException { return this.base.fetch(); } @Override public Request through(final Class type, final Object... args) { return this.base.through(type, args); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy