Merge "INT:1183 fix csit for sdnc_netconf_tls_post_deploy"
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdnc-simulator / src / main / java / org / onap / so / sdncsimulator / controller / OperationsController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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 package org.onap.so.sdncsimulator.controller;
21
22 import static org.onap.so.sdncsimulator.utils.Constants.OPERATIONS_URL;
23 import javax.servlet.http.HttpServletRequest;
24 import javax.ws.rs.core.MediaType;
25 import org.onap.sdnc.northbound.client.model.GenericResourceApiServiceOperationInformation;
26 import org.onap.so.sdncsimulator.models.InputRequest;
27 import org.onap.so.sdncsimulator.models.Output;
28 import org.onap.so.sdncsimulator.models.OutputRequest;
29 import org.onap.so.sdncsimulator.providers.ServiceOperationsCacheServiceProvider;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.http.HttpStatus;
34 import org.springframework.http.ResponseEntity;
35 import org.springframework.stereotype.Controller;
36 import org.springframework.web.bind.annotation.PostMapping;
37 import org.springframework.web.bind.annotation.RequestBody;
38 import org.springframework.web.bind.annotation.RequestMapping;
39
40 /**
41  * @author Waqas Ikram (waqas.ikram@est.tech)
42  *
43  */
44 @Controller
45 @RequestMapping(path = OPERATIONS_URL)
46 public class OperationsController {
47
48     private static final Logger LOGGER = LoggerFactory.getLogger(OperationsController.class);
49
50     private final ServiceOperationsCacheServiceProvider cacheServiceProvider;
51
52     @Autowired
53     public OperationsController(final ServiceOperationsCacheServiceProvider cacheServiceProvider) {
54         this.cacheServiceProvider = cacheServiceProvider;
55     }
56
57     @PostMapping(value = "/GENERIC-RESOURCE-API:service-topology-operation/",
58             produces = {MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
59     public ResponseEntity<?> postServiceOperationInformation(
60             @RequestBody final InputRequest<GenericResourceApiServiceOperationInformation> inputRequest,
61             final HttpServletRequest request) {
62         LOGGER.info("Request Received {}  ...", inputRequest);
63
64         final GenericResourceApiServiceOperationInformation apiServiceOperationInformation = inputRequest.getInput();
65
66         if (apiServiceOperationInformation == null) {
67             return ResponseEntity.badRequest().build();
68         }
69
70         final Output output = cacheServiceProvider.putServiceOperationInformation(apiServiceOperationInformation);
71         final OutputRequest outputRequest = new OutputRequest(output);
72
73         if (output.getResponseCode().equals(HttpStatus.OK.toString())) {
74             return ResponseEntity.ok(outputRequest);
75         }
76
77         return ResponseEntity.badRequest().body(outputRequest);
78
79     }
80
81 }