Fix Code smells
[cps.git] / cps-ncmp-rest / src / main / java / org / onap / cps / ncmp / rest / controller / NetworkCmProxyController.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Pantheon.tech
4  *  Modifications (C) 2021 Nordix Foundation
5  *  Modification Copyright (C) 2021 highstreet technologies GmbH
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  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.ncmp.rest.controller;
23
24 import com.google.gson.Gson;
25 import com.google.gson.GsonBuilder;
26 import java.util.Collection;
27 import javax.validation.Valid;
28 import org.onap.cps.ncmp.api.NetworkCmProxyDataService;
29 import org.onap.cps.ncmp.rest.api.NetworkCmProxyApi;
30 import org.onap.cps.spi.FetchDescendantsOption;
31 import org.onap.cps.spi.model.DataNode;
32 import org.onap.cps.utils.DataMapUtils;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.http.HttpStatus;
35 import org.springframework.http.ResponseEntity;
36 import org.springframework.web.bind.annotation.RequestMapping;
37 import org.springframework.web.bind.annotation.RestController;
38
39
40 @RestController
41 @RequestMapping("${rest.api.ncmp-base-path}")
42 public class NetworkCmProxyController implements NetworkCmProxyApi {
43
44     private static final Gson GSON = new GsonBuilder().create();
45     private static final String XPATH_ROOT = "/";
46
47     @Autowired
48     private NetworkCmProxyDataService networkCmProxyDataService;
49
50     @Override
51     public ResponseEntity<String> createNode(final String jsonData, final String cmHandle,
52         final String parentNodeXpath) {
53         networkCmProxyDataService.createDataNode(cmHandle, parentNodeXpath, jsonData);
54         return new ResponseEntity<>(HttpStatus.CREATED);
55     }
56
57     @Override
58     public ResponseEntity<Object> getNodeByCmHandleAndXpath(final String cmHandle, @Valid final String xpath,
59         @Valid final Boolean includeDescendants) {
60         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
61             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
62         final var dataNode = networkCmProxyDataService.getDataNode(cmHandle, xpath, fetchDescendantsOption);
63         return new ResponseEntity<>(DataMapUtils.toDataMap(dataNode), HttpStatus.OK);
64     }
65
66     @Override
67     public ResponseEntity<Object> queryNodesByCmHandleAndCpsPath(final String cmHandle, @Valid final String cpsPath,
68         @Valid final Boolean includeDescendants) {
69         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
70             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
71         final Collection<DataNode> dataNodes =
72             networkCmProxyDataService.queryDataNodes(cmHandle, cpsPath, fetchDescendantsOption);
73         return new ResponseEntity<>(GSON.toJson(dataNodes), HttpStatus.OK);
74     }
75
76     @Override
77     public ResponseEntity<Object> replaceNode(@Valid final String jsonData, final String cmHandle,
78         @Valid final String parentNodeXpath) {
79         networkCmProxyDataService.replaceNodeTree(cmHandle, parentNodeXpath, jsonData);
80         return new ResponseEntity<>(HttpStatus.OK);
81     }
82
83     @Override
84     public ResponseEntity<Object> updateNodeLeaves(@Valid final String jsonData, final String cmHandle,
85         @Valid final String parentNodeXpath) {
86         networkCmProxyDataService.updateNodeLeaves(cmHandle, parentNodeXpath, jsonData);
87         return new ResponseEntity<>(HttpStatus.OK);
88     }
89 }