Merge "Expose Prometheus metrics for monitoring"
[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  *
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.rest.controller;
22
23 import com.google.gson.Gson;
24 import java.util.Collection;
25 import javax.validation.Valid;
26 import org.onap.cps.api.CpsQueryService;
27 import org.onap.cps.rest.api.CpsQueryApi;
28 import org.onap.cps.spi.FetchDescendantsOption;
29 import org.onap.cps.spi.model.DataNode;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.http.HttpStatus;
32 import org.springframework.http.ResponseEntity;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.RestController;
35
36 @RestController
37 @RequestMapping("${rest.api.cps-base-path}")
38 public class QueryRestController implements CpsQueryApi {
39
40     @Autowired
41     private CpsQueryService cpsQueryService;
42
43     @Override
44     public ResponseEntity<Object> getNodesByDataspaceAndAnchorAndCpsPath(final String dataspaceName,
45         final String anchorName, @Valid final String cpsPath, @Valid final Boolean includeDescendants) {
46         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
47             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
48         final Collection<DataNode> dataNodes =
49             cpsQueryService.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption);
50         return new ResponseEntity<>(new Gson().toJson(dataNodes), HttpStatus.OK);
51     }
52 }