CPS-265 - updating cps path to support include-descendants option.
[cps.git] / cps-rest / src / main / java / org / onap / cps / rest / controller / QueryRestController.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  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.rest.controller;
21
22 import com.google.gson.Gson;
23 import java.util.Collection;
24 import javax.validation.Valid;
25 import org.onap.cps.api.CpsQueryService;
26 import org.onap.cps.rest.api.CpsQueryApi;
27 import org.onap.cps.spi.FetchDescendantsOption;
28 import org.onap.cps.spi.model.DataNode;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.http.HttpStatus;
31 import org.springframework.http.ResponseEntity;
32 import org.springframework.web.bind.annotation.RequestMapping;
33 import org.springframework.web.bind.annotation.RestController;
34
35 @RestController
36 @RequestMapping("${rest.api.cps-base-path}")
37 public class QueryRestController implements CpsQueryApi {
38
39     @Autowired
40     private CpsQueryService cpsQueryService;
41
42     @Override
43     public ResponseEntity<Object> getNodesByDataspaceAndAnchorAndCpsPath(final String dataspaceName,
44         final String anchorName, @Valid final String cpsPath, @Valid final Boolean includeDescendants) {
45         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
46             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
47         final Collection<DataNode> dataNodes =
48             cpsQueryService.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption);
49         return new ResponseEntity<>(new Gson().toJson(dataNodes), HttpStatus.OK);
50     }
51 }