Replace gson mapper with jackson mapper
[cps.git] / cps-rest / src / main / java / org / onap / cps / rest / controller / QueryRestController.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2022 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 java.util.ArrayList;
24 import java.util.Collection;
25 import java.util.List;
26 import java.util.Map;
27 import javax.validation.Valid;
28 import lombok.RequiredArgsConstructor;
29 import org.onap.cps.api.CpsQueryService;
30 import org.onap.cps.rest.api.CpsQueryApi;
31 import org.onap.cps.spi.FetchDescendantsOption;
32 import org.onap.cps.spi.model.DataNode;
33 import org.onap.cps.utils.DataMapUtils;
34 import org.onap.cps.utils.JsonObjectMapper;
35 import org.springframework.http.HttpStatus;
36 import org.springframework.http.ResponseEntity;
37 import org.springframework.web.bind.annotation.RequestMapping;
38 import org.springframework.web.bind.annotation.RestController;
39
40 @RestController
41 @RequestMapping("${rest.api.cps-base-path}")
42 @RequiredArgsConstructor
43 public class QueryRestController implements CpsQueryApi {
44
45     private final CpsQueryService cpsQueryService;
46     private final JsonObjectMapper jsonObjectMapper;
47
48     @Override
49     public ResponseEntity<Object> getNodesByDataspaceAndAnchorAndCpsPath(final String dataspaceName,
50         final String anchorName, @Valid final String cpsPath, @Valid final Boolean includeDescendants) {
51         final FetchDescendantsOption fetchDescendantsOption = Boolean.TRUE.equals(includeDescendants)
52             ? FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS : FetchDescendantsOption.OMIT_DESCENDANTS;
53         final Collection<DataNode> dataNodes =
54             cpsQueryService.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption);
55         final List<Map<String, Object>> dataNodeList = new ArrayList<>();
56         for (final DataNode dataNode : dataNodes) {
57             dataNodeList.add(DataMapUtils.toDataMap(dataNode));
58         }
59         return new ResponseEntity<>(jsonObjectMapper.asJsonString(dataNodeList), HttpStatus.OK);
60     }
61 }