Adding operations endpoint for sdn-c simulator
[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.OutputRequest;
28 import org.onap.so.sdncsimulator.providers.ServiceOperationsCacheServiceProvider;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.http.HttpStatus;
33 import org.springframework.http.ResponseEntity;
34 import org.springframework.stereotype.Controller;
35 import org.springframework.web.bind.annotation.PostMapping;
36 import org.springframework.web.bind.annotation.RequestBody;
37 import org.springframework.web.bind.annotation.RequestMapping;
38
39 /**
40  * @author Waqas Ikram (waqas.ikram@est.tech)
41  *
42  */
43 @Controller
44 @RequestMapping(path = OPERATIONS_URL)
45 public class OperationsController {
46
47     private static final Logger LOGGER = LoggerFactory.getLogger(OperationsController.class);
48
49     private final ServiceOperationsCacheServiceProvider cacheServiceProvider;
50
51     @Autowired
52     public OperationsController(final ServiceOperationsCacheServiceProvider cacheServiceProvider) {
53         this.cacheServiceProvider = cacheServiceProvider;
54     }
55
56     @PostMapping(value = "/GENERIC-RESOURCE-API:service-topology-operation/",
57             produces = {MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
58     public ResponseEntity<?> postServiceOperationInformation(
59             @RequestBody final InputRequest<GenericResourceApiServiceOperationInformation> inputRequest,
60             final HttpServletRequest request) {
61         LOGGER.info("Request Received {}  ...", inputRequest);
62
63         final GenericResourceApiServiceOperationInformation apiServiceOperationInformation = inputRequest.getInput();
64
65         if (apiServiceOperationInformation == null) {
66             return ResponseEntity.badRequest().build();
67         }
68
69         final OutputRequest outputRequest =
70                 cacheServiceProvider.putServiceOperationInformation(apiServiceOperationInformation);
71
72         if (outputRequest.getResponseCode().equals(HttpStatus.OK.toString())) {
73             return ResponseEntity.ok(outputRequest);
74         }
75
76         return ResponseEntity.badRequest().body(outputRequest);
77
78     }
79
80 }