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

io.knotx.adapter.service.http.impl.HttpServiceAdapterProxyImpl Maven / Gradle / Ivy

/*
 * Copyright (C) 2016 Cognifide Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License 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.knotx.adapter.service.http.impl;

import io.knotx.adapter.AbstractAdapterProxy;
import io.knotx.adapter.common.http.HttpAdapterConfiguration;
import io.knotx.adapter.common.http.HttpClientFacade;
import io.knotx.dataobjects.AdapterRequest;
import io.knotx.dataobjects.AdapterResponse;
import io.vertx.core.http.HttpMethod;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.client.WebClientOptions;
import io.vertx.rxjava.core.Vertx;
import io.vertx.rxjava.ext.web.client.WebClient;
import rx.Single;

public class HttpServiceAdapterProxyImpl extends AbstractAdapterProxy {

  private HttpClientFacade httpClientFacade;

  public HttpServiceAdapterProxyImpl(Vertx vertx, HttpAdapterConfiguration configuration) {
    this.httpClientFacade = new HttpClientFacade(getWebClient(vertx, configuration),
        configuration.getServices());
  }

  @Override
  protected Single processRequest(AdapterRequest message) {
    return httpClientFacade.process(message, HttpMethod.GET)
        .map(new AdapterResponse()::setResponse);
  }

  private WebClient getWebClient(Vertx vertx, HttpAdapterConfiguration configuration) {
    JsonObject clientOptions = configuration.getClientOptions();
    return clientOptions.isEmpty() ? WebClient.create(vertx) :
        WebClient.create(vertx, new WebClientOptions(clientOptions));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy