Create child data node (part 2): NCMP service + REST
[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         if (XPATH_ROOT.equals(xpath)) {
61             return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
62         }
63         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
64             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
65         final DataNode dataNode = networkCmProxyDataService.getDataNode(cmHandle, xpath, fetchDescendantsOption);
66         return new ResponseEntity<>(DataMapUtils.toDataMap(dataNode), HttpStatus.OK);
67     }
68
69     @Override
70     public ResponseEntity<Object> queryNodesByCmHandleAndCpsPath(final String cmHandle, @Valid final String cpsPath,
71         @Valid final Boolean includeDescendants) {
72         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
73             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
74         final Collection<DataNode> dataNodes =
75             networkCmProxyDataService.queryDataNodes(cmHandle, cpsPath, fetchDescendantsOption);
76         return new ResponseEntity<>(GSON.toJson(dataNodes), HttpStatus.OK);
77     }
78
79     @Override
80     public ResponseEntity<Object> replaceNode(@Valid final String jsonData, final String cmHandle,
81         @Valid final String parentNodeXpath) {
82         networkCmProxyDataService.replaceNodeTree(cmHandle, parentNodeXpath, jsonData);
83         return new ResponseEntity<>(HttpStatus.OK);
84     }
85
86     @Override
87     public ResponseEntity<Object> updateNodeLeaves(@Valid final String jsonData, final String cmHandle,
88         @Valid final String parentNodeXpath) {
89         networkCmProxyDataService.updateNodeLeaves(cmHandle, parentNodeXpath, jsonData);
90         return new ResponseEntity<>(HttpStatus.OK);
91     }
92 }