Merge "rename nf-proxy to network-cm-proxy"
[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<Object> getNodeByCmHandleAndXpath(final String cmHandle, @Valid final String xpath,
52         @Valid final Boolean includeDescendants) {
53         if (XPATH_ROOT.equals(xpath)) {
54             return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
55         }
56         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
57             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
58         final DataNode dataNode = networkCmProxyDataService.getDataNode(cmHandle, xpath, fetchDescendantsOption);
59         return new ResponseEntity<>(DataMapUtils.toDataMap(dataNode), HttpStatus.OK);
60     }
61
62     @Override
63     public ResponseEntity<Object> queryNodesByCmHandleAndCpsPath(final String cmHandle, @Valid final String cpsPath,
64         @Valid final Boolean includeDescendants) {
65         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
66             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
67         final Collection<DataNode> dataNodes =
68             networkCmProxyDataService.queryDataNodes(cmHandle, cpsPath, fetchDescendantsOption);
69         return new ResponseEntity<>(GSON.toJson(dataNodes), HttpStatus.OK);
70     }
71
72     @Override
73     public ResponseEntity<Object> replaceNode(@Valid final String jsonData, final String cmHandle,
74         @Valid final String parentNodeXpath) {
75         networkCmProxyDataService.replaceNodeTree(cmHandle, parentNodeXpath, jsonData);
76         return new ResponseEntity<>(HttpStatus.OK);
77     }
78
79     @Override
80     public ResponseEntity<Object> updateNodeLeaves(@Valid final String jsonData, final String cmHandle,
81         @Valid final String parentNodeXpath) {
82         networkCmProxyDataService.updateNodeLeaves(cmHandle, parentNodeXpath, jsonData);
83         return new ResponseEntity<>(HttpStatus.OK);
84     }
85 }