99058772e38a974428a9f99bf797730963c5a603
[dcaegen2/services/sdk.git] /
1 /*
2  * ============LICENSE_START====================================
3  * DCAEGEN2-SERVICES-SDK
4  * =========================================================
5  * Copyright (C) 2019 Nokia. All rights reserved.
6  * =========================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *       http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=====================================
19  */
20
21 package org.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl;
22
23 import com.google.gson.JsonArray;
24 import com.google.gson.JsonElement;
25 import com.google.gson.JsonObject;
26 import java.net.InetSocketAddress;
27 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.HttpMethod;
28 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.HttpResponse;
29 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.ImmutableHttpRequest;
30 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.RxHttpClient;
31 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.exceptions.ServiceLookupException;
32 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.EnvProperties;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import reactor.core.publisher.Mono;
36
37 /**
38  * @author <a href="mailto:piotr.jaszczyk@nokia.com">Piotr Jaszczyk</a>
39  * @since February 2019
40  */
41 public class CbsLookup {
42
43     private static final Logger LOGGER = LoggerFactory.getLogger(CbsLookup.class);
44     private static final String CONSUL_JSON_SERVICE_ADDRESS = "ServiceAddress";
45     private static final String CONSUL_JSON_SERVICE_PORT = "ServicePort";
46     private final RxHttpClient httpClient;
47
48     public CbsLookup(RxHttpClient httpClient) {
49         this.httpClient = httpClient;
50     }
51
52     public Mono<InetSocketAddress> lookup(EnvProperties env) {
53         return Mono.fromCallable(() -> createConsulUrl(env))
54                 .doOnNext(this::logConsulRequestUrl)
55                 .flatMap(this::fetchHttpData)
56                 .doOnNext(this::logConsulResponse)
57                 .flatMap(this::firstService)
58                 .map(this::parseServiceEntry)
59                 .doOnNext(this::logCbsServiceAddress);
60     }
61
62     private String createConsulUrl(EnvProperties env) {
63         return String.format("http://%s:%s/v1/catalog/service/%s", env.consulHost(), env.consulPort(), env.cbsName());
64     }
65
66     private void logConsulRequestUrl(String consulUrl) {
67         LOGGER.debug("Calling Consul for CBS address. consulUrl={}", consulUrl);
68     }
69
70     private Mono<JsonArray> fetchHttpData(String consulUrl) {
71         return httpClient.call(
72                 ImmutableHttpRequest.builder()
73                         .method(HttpMethod.GET)
74                         .url(consulUrl)
75                         .build())
76                 .doOnNext(HttpResponse::throwIfUnsuccessful)
77                 .map(resp -> resp.bodyAsJson(JsonArray.class));
78     }
79
80     private void logConsulResponse(JsonArray consulResponse) {
81         LOGGER.debug("Consul response with CBS service list. Will use 1st one. response={}", consulResponse);
82     }
83
84     private Mono<JsonObject> firstService(JsonArray services) {
85         return services.size() == 0
86                 ? Mono.error(new ServiceLookupException("Consul server did not return any service with given name"))
87                 : Mono.just(services.get(0).getAsJsonObject());
88     }
89
90     private InetSocketAddress parseServiceEntry(JsonObject service) {
91         return InetSocketAddress.createUnresolved(
92                 service.get(CONSUL_JSON_SERVICE_ADDRESS).getAsString(),
93                 service.get(CONSUL_JSON_SERVICE_PORT).getAsInt());
94     }
95
96     private void logCbsServiceAddress(InetSocketAddress address) {
97         LOGGER.info("Config Binding Service address: {}", address);
98     }
99
100 }