e43cf3125cfb67fa2dca33c7c7c17dcffbccc3fc
[dcaegen2/services/sdk.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * DCAEGEN2-SERVICES-SDK
4  * ================================================================================
5  * Copyright (C) 2019-2021 Nokia. All rights reserved.
6  * Copyright (C) 2021 Wipro Limited.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api;
22
23 import org.jetbrains.annotations.NotNull;
24 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.RxHttpClient;
25 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.RxHttpClientFactory;
26 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl.CbsClientConfigMap;
27 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl.CbsClientRest;
28 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl.CbsLookup;
29 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.CbsClientConfiguration;
30 import org.onap.dcaegen2.services.sdk.security.ssl.TrustStoreKeys;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import reactor.core.publisher.Mono;
34
35 /**
36  * <p>
37  * Factory for Config Binding Service client.
38  * </p>
39  *
40  * @since 1.1.2
41  */
42 public class CbsClientFactory {
43     private static final Logger LOGGER = LoggerFactory.getLogger(CbsClientFactory.class);
44
45     /**
46      * <p>Creates Mono which will emit instance of {@link CbsClient} when service discovery is complete.</p>
47      *
48      * <p>
49      * This method will do a lookup of Config Binding Service and create client configured with found address.
50      * Created client will be published in returned Mono instance.
51      * </p>
52      * <p>
53      * In case of failure during CBS resolution, returned Mono will emit error signal with possible cause.
54      * User is expected to handle this signal and possibly retry subscription to returned Mono.
55      * </p>
56      *
57      * @param configuration required CBS configuration as viewed by client application
58      * @return non-null {@link Mono} of {@link CbsClient} instance
59      * @since 1.1.2
60      */
61     public static @NotNull Mono<CbsClient> createCbsClient(CbsClientConfiguration configuration) {
62         LOGGER.info("Configuration used for CBS Client: {}", configuration);
63         return Mono.fromCallable(() -> buildHttpClient(configuration.trustStoreKeys()))
64             .cache()
65             .flatMap(httpClient -> createCbsClientMono(httpClient, configuration));
66     }
67
68     private static RxHttpClient buildHttpClient(TrustStoreKeys trustStoreKeys) {
69         return trustStoreKeys != null
70                 ? RxHttpClientFactory.create(trustStoreKeys)
71                 : RxHttpClientFactory.create();
72     }
73
74     private static Mono<CbsClient> createCbsClientMono(RxHttpClient httpClient,
75         CbsClientConfiguration configuration) {
76             CbsClientConfigMap cbsClientConfigMap = new CbsClientConfigMap(configuration.configMapFilePath(),
77                     configuration.policySyncFilePath(), configuration.appName());
78         return cbsClientConfigMap.verifyConfigMapFile() ? Mono.just(cbsClientConfigMap) :
79                 getConfigFromCBS(httpClient, configuration);
80     }
81
82     private static Mono<CbsClient> getConfigFromCBS(RxHttpClient httpClient, CbsClientConfiguration configuration) {
83         return new CbsLookup().lookup(configuration)
84                 .map(addr ->new CbsClientRest(httpClient, configuration.appName(), addr, configuration.protocol()));
85     }
86 }