Update CBS-Client to read policy configuration from a file exposed by policy-sidecar...
[dcaegen2/services/sdk.git] / rest-services / cbs-client / src / main / java / org / onap / dcaegen2 / services / sdk / rest / services / cbs / client / api / CbsClientFactory.java
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 reactor.core.publisher.Mono;
32
33 /**
34  * <p>
35  * Factory for Config Binding Service client.
36  * </p>
37  *
38  * @since 1.1.2
39  */
40 public class CbsClientFactory {
41     /**
42      * <p>Creates Mono which will emit instance of {@link CbsClient} when service discovery is complete.</p>
43      *
44      * <p>
45      * This method will do a lookup of Config Binding Service and create client configured with found address.
46      * Created client will be published in returned Mono instance.
47      * </p>
48      * <p>
49      * In case of failure during CBS resolution, returned Mono will emit error signal with possible cause.
50      * User is expected to handle this signal and possibly retry subscription to returned Mono.
51      * </p>
52      *
53      * @param configuration required CBS configuration as viewed by client application
54      * @return non-null {@link Mono} of {@link CbsClient} instance
55      * @since 1.1.2
56      */
57     public static @NotNull Mono<CbsClient> createCbsClient(CbsClientConfiguration configuration) {
58         return Mono.fromCallable(() -> buildHttpClient(configuration.trustStoreKeys()))
59             .cache()
60             .flatMap(httpClient -> createCbsClientMono(httpClient, configuration));
61     }
62
63     private static RxHttpClient buildHttpClient(TrustStoreKeys trustStoreKeys) {
64         return trustStoreKeys != null
65                 ? RxHttpClientFactory.create(trustStoreKeys)
66                 : RxHttpClientFactory.create();
67     }
68
69     private static Mono<CbsClient> createCbsClientMono(RxHttpClient httpClient,
70         CbsClientConfiguration configuration) {
71             CbsClientConfigMap cbsClientConfigMap = new CbsClientConfigMap(configuration.configMapFilePath(),
72                     configuration.policySyncFilePath(), configuration.appName());
73         return cbsClientConfigMap.verifyConfigMapFile() ? Mono.just(cbsClientConfigMap) :
74                 getConfigFromCBS(httpClient, configuration);
75     }
76
77     private static Mono<CbsClient> getConfigFromCBS(RxHttpClient httpClient, CbsClientConfiguration configuration) {
78         return new CbsLookup().lookup(configuration)
79                 .map(addr ->new CbsClientRest(httpClient, configuration.appName(), addr, configuration.protocol()));
80     }
81 }