94faa557fa3dd90f10ffb000b2d70391072f84b8
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / client / DmiRestClient.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 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.client;
22
23 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration.DmiProperties;
24 import org.springframework.http.HttpEntity;
25 import org.springframework.http.HttpHeaders;
26 import org.springframework.http.HttpMethod;
27 import org.springframework.http.MediaType;
28 import org.springframework.http.ResponseEntity;
29 import org.springframework.stereotype.Component;
30 import org.springframework.web.client.RestTemplate;
31
32 @Component
33 public class DmiRestClient {
34
35     private RestTemplate restTemplate;
36     private DmiProperties dmiProperties;
37
38     /**
39      * Constructor injection for DmiRestClient objects.
40      *
41      * @param restTemplate the rest template
42      * @param dmiProperties the DMI properties
43      */
44     public DmiRestClient(final RestTemplate restTemplate, final DmiProperties dmiProperties) {
45         this.restTemplate = restTemplate;
46         this.dmiProperties = dmiProperties;
47     }
48
49     /**
50      * Sends POST operation to DMI with json body containing module references.
51      * @param dmiResourceUrl dmi resource url
52      * @param jsonData json data body
53      * @param httpHeaders http headers
54      * @return response entity of type String
55      */
56     public ResponseEntity<Object> postOperationWithJsonData(final String dmiResourceUrl,
57                                                             final String jsonData,
58                                                             final HttpHeaders httpHeaders) {
59         final var httpEntity = new HttpEntity<>(jsonData, configureHttpHeaders(httpHeaders));
60         return restTemplate.postForEntity(dmiResourceUrl, httpEntity, Object.class);
61     }
62
63     private HttpHeaders configureHttpHeaders(final HttpHeaders httpHeaders) {
64         httpHeaders.setBasicAuth(dmiProperties.getAuthUsername(), dmiProperties.getAuthPassword());
65         httpHeaders.setContentType(MediaType.APPLICATION_JSON);
66         return httpHeaders;
67     }
68
69     /**
70      * Sends POST operation to DMI.
71      * @param dmiResourceUrl dmi resource url
72      * @param httpHeaders http headers
73      * @return response entity of type String
74      */
75     public ResponseEntity<Object> postOperation(final String dmiResourceUrl, final HttpHeaders httpHeaders) {
76         final var httpEntity = new HttpEntity<>(configureHttpHeaders(httpHeaders));
77         return restTemplate.exchange(dmiResourceUrl, HttpMethod.POST, httpEntity, Object.class);
78     }
79 }