f5ec462df68dfaf286417420bb62f0abb7e8bf05
[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.JsonObject;
25 import java.net.InetSocketAddress;
26 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.EnvProperties;
27 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl.adapters.CloudHttpClient;
28 import reactor.core.publisher.Mono;
29
30 /**
31  * @author <a href="mailto:piotr.jaszczyk@nokia.com">Piotr Jaszczyk</a>
32  * @since February 2019
33  */
34 public class CbsLookup {
35
36     private static final String CONSUL_JSON_SERVICE_ADDRESS = "ServiceAddress";
37     private static final String CONSUL_JSON_SERVICE_PORT = "ServicePort";
38     private final CloudHttpClient httpClient;
39
40     public CbsLookup(CloudHttpClient httpClient) {
41         this.httpClient = httpClient;
42     }
43
44     public Mono<InetSocketAddress> lookup(EnvProperties env) {
45         return Mono.fromCallable(() -> createConsulUrl(env))
46                 .flatMap(this::fetchHttpData)
47                 .flatMap(this::firstService)
48                 .map(this::parseServiceEntry);
49     }
50
51     private String createConsulUrl(EnvProperties env) {
52         return String.format("http://%s:%s/v1/catalog/service/%s", env.consulHost(), env.consulPort(), env.cbsName());
53     }
54
55     private Mono<JsonArray> fetchHttpData(String consulUrl) {
56         return httpClient.get(consulUrl, JsonArray.class);
57     }
58
59     private Mono<JsonObject> firstService(JsonArray services) {
60         return services.size() == 0
61                 ? Mono.empty()
62                 : Mono.just(services.get(0).getAsJsonObject());
63     }
64
65     private InetSocketAddress parseServiceEntry(JsonObject service) {
66         return InetSocketAddress.createUnresolved(
67                 service.get(CONSUL_JSON_SERVICE_ADDRESS).getAsString(),
68                 service.get(CONSUL_JSON_SERVICE_PORT).getAsInt());
69     }
70
71 }
72