2f7376e87c8a70d3c42c3c135a53d0dd4cdc64e1
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / operations / DmiOperations.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2022 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.api.impl.operations;
22
23 import com.google.common.base.Strings;
24 import lombok.Getter;
25 import lombok.RequiredArgsConstructor;
26 import lombok.extern.slf4j.Slf4j;
27 import org.onap.cps.ncmp.api.impl.client.DmiRestClient;
28 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration;
29 import org.onap.cps.utils.JsonObjectMapper;
30 import org.springframework.http.HttpHeaders;
31 import org.springframework.stereotype.Service;
32
33 @Slf4j
34 @RequiredArgsConstructor
35 @Service
36 public class DmiOperations {
37
38     @Getter
39     public enum DataStoreEnum {
40         PASSTHROUGH_OPERATIONAL("ncmp-datastore:passthrough-operational"),
41         PASSTHROUGH_RUNNING("ncmp-datastore:passthrough-running");
42         private String value;
43
44         DataStoreEnum(final String value) {
45             this.value = value;
46         }
47     }
48
49     protected final PersistenceCmHandleRetriever cmHandlePropertiesRetriever;
50     protected final JsonObjectMapper jsonObjectMapper;
51     protected final NcmpConfiguration.DmiProperties dmiProperties;
52     protected final DmiRestClient dmiRestClient;
53
54     static final String URL_SEPARATOR = "/";
55
56     String getCmHandleUrl(final String dmiServiceName, final String cmHandle) {
57         return dmiServiceName
58             + dmiProperties.getDmiBasePath()
59             + URL_SEPARATOR
60             + "v1"
61             + URL_SEPARATOR
62             + "ch"
63             + URL_SEPARATOR
64             + cmHandle
65             + URL_SEPARATOR;
66     }
67
68     String getDmiResourceUrl(final String dmiServiceName, final String cmHandle, final String resourceName) {
69         return getCmHandleUrl(dmiServiceName, cmHandle) + resourceName;
70     }
71
72     static String appendOptionsQuery(final String url, final String optionsParamInQuery) {
73         if (Strings.isNullOrEmpty(optionsParamInQuery)) {
74             return url;
75         }
76         return url + "&options=" + optionsParamInQuery;
77     }
78
79     static HttpHeaders prepareHeader(final String acceptParam) {
80         final var httpHeaders = new HttpHeaders();
81         httpHeaders.set(HttpHeaders.ACCEPT, acceptParam);
82         return httpHeaders;
83     }
84
85 }