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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  20 package org.onap.so.sdncsimulator.controller;
 
  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;
 
  40  * @author Waqas Ikram (waqas.ikram@est.tech)
 
  44 @RequestMapping(path = OPERATIONS_URL)
 
  45 public class OperationsController {
 
  47     private static final Logger LOGGER = LoggerFactory.getLogger(OperationsController.class);
 
  49     private final ServiceOperationsCacheServiceProvider cacheServiceProvider;
 
  52     public OperationsController(final ServiceOperationsCacheServiceProvider cacheServiceProvider) {
 
  53         this.cacheServiceProvider = cacheServiceProvider;
 
  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);
 
  63         final GenericResourceApiServiceOperationInformation apiServiceOperationInformation = inputRequest.getInput();
 
  65         if (apiServiceOperationInformation == null) {
 
  66             return ResponseEntity.badRequest().build();
 
  69         final OutputRequest outputRequest =
 
  70                 cacheServiceProvider.putServiceOperationInformation(apiServiceOperationInformation);
 
  72         if (outputRequest.getResponseCode().equals(HttpStatus.OK.toString())) {
 
  73             return ResponseEntity.ok(outputRequest);
 
  76         return ResponseEntity.badRequest().body(outputRequest);