2  * ============LICENSE_START==========================================
 
   4  * ===================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ===================================================================
 
   7  *  Modification Copyright © 2020 IBM.
 
   8  * ===================================================================
 
  10  * Unless otherwise specified, all software contained herein is licensed
 
  11  * under the Apache License, Version 2.0 (the "License");
 
  12  * you may not use this software except in compliance with the License.
 
  13  * You may obtain a copy of the License at
 
  15  *             http://www.apache.org/licenses/LICENSE-2.0
 
  17  * Unless required by applicable law or agreed to in writing, software
 
  18  * distributed under the License is distributed on an "AS IS" BASIS,
 
  19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  20  * See the License for the specific language governing permissions and
 
  21  * limitations under the License.
 
  23  * Unless otherwise specified, all documentation contained herein is licensed
 
  24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 
  25  * you may not use this documentation except in compliance with the License.
 
  26  * You may obtain a copy of the License at
 
  28  *             https://creativecommons.org/licenses/by/4.0/
 
  30  * Unless required by applicable law or agreed to in writing, documentation
 
  31  * distributed under the License is distributed on an "AS IS" BASIS,
 
  32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  33  * See the License for the specific language governing permissions and
 
  34  * limitations under the License.
 
  36  * ============LICENSE_END============================================
 
  40 package org.onap.portalapp.portal.controller;
 
  42 import java.util.List;
 
  44 import javax.servlet.http.HttpServletRequest;
 
  45 import javax.servlet.http.HttpServletResponse;
 
  47 import javax.validation.Valid;
 
  48 import org.onap.portalapp.controller.EPRestrictedBaseController;
 
  49 import org.onap.portalapp.portal.domain.MicroserviceData;
 
  50 import org.onap.portalapp.portal.domain.WidgetCatalog;
 
  51 import org.onap.portalapp.portal.domain.WidgetServiceHeaders;
 
  52 import org.onap.portalapp.portal.ecomp.model.PortalRestResponse;
 
  53 import org.onap.portalapp.portal.ecomp.model.PortalRestStatusEnum;
 
  54 import org.onap.portalapp.portal.logging.aop.EPAuditLog;
 
  55 import org.onap.portalapp.portal.service.WidgetMService;
 
  56 import org.onap.portalapp.portal.service.MicroserviceService;
 
  57 import org.onap.portalapp.portal.utils.EcompPortalUtils;
 
  58 import org.onap.portalapp.validation.DataValidator;
 
  59 import org.onap.portalsdk.core.util.SystemProperties;
 
  60 import org.springframework.beans.factory.annotation.Autowired;
 
  61 import org.springframework.context.annotation.EnableAspectJAutoProxy;
 
  62 import org.springframework.core.ParameterizedTypeReference;
 
  63 import org.springframework.http.HttpEntity;
 
  64 import org.springframework.http.HttpMethod;
 
  65 import org.springframework.http.ResponseEntity;
 
  66 import org.springframework.web.bind.annotation.PathVariable;
 
  67 import org.springframework.web.bind.annotation.RequestBody;
 
  68 import org.springframework.web.bind.annotation.GetMapping;
 
  69 import org.springframework.web.bind.annotation.PostMapping;
 
  70 import org.springframework.web.bind.annotation.PutMapping;
 
  71 import org.springframework.web.bind.annotation.DeleteMapping;
 
  72 import org.springframework.web.bind.annotation.RestController;
 
  73 import org.springframework.web.client.RestTemplate;
 
  75 @SuppressWarnings("unchecked")
 
  77 @org.springframework.context.annotation.Configuration
 
  78 @EnableAspectJAutoProxy
 
  80 public class MicroserviceController extends EPRestrictedBaseController {
 
  81         private final DataValidator dataValidator = new DataValidator();
 
  83         String whatService = "widgets-service";
 
  84         RestTemplate template = new RestTemplate();
 
  87         private WidgetMService widgetMService;
 
  90         private MicroserviceService microserviceService;
 
  92         @PostMapping(value = { "/portalApi/microservices" })
 
  93         public PortalRestResponse<String> createMicroservice(HttpServletRequest request, HttpServletResponse response,
 
  94                         @Valid @RequestBody MicroserviceData newServiceData) throws Exception {
 
  95                 if (newServiceData == null) {
 
  96                         return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "FAILURE",
 
  97                                 "MicroserviceData cannot be null or empty");
 
  99                         if(!dataValidator.isValid(newServiceData)){
 
 100                                 return new PortalRestResponse<>(PortalRestStatusEnum.ERROR,
 
 101                                         "ERROR", "MicroserviceData is not valid");
 
 104                 long serviceId = microserviceService.saveMicroservice(newServiceData);
 
 107                         microserviceService.saveServiceParameters(serviceId, newServiceData.getParameterList());
 
 108                 } catch (Exception e) {
 
 109                         return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage());
 
 112                 return new PortalRestResponse<>(PortalRestStatusEnum.OK, "SUCCESS", "");
 
 115         @GetMapping(value = { "/portalApi/microservices" })
 
 116         public List<MicroserviceData> getMicroservice(HttpServletRequest request, HttpServletResponse response)
 
 118                 return microserviceService.getMicroserviceData();
 
 121         @PutMapping(value = { "/portalApi/microservices/{serviceId}" })
 
 122         public PortalRestResponse<String> updateMicroservice(HttpServletRequest request, HttpServletResponse response,
 
 123                         @PathVariable("serviceId") long serviceId, @Valid @RequestBody MicroserviceData newServiceData) {
 
 125                 if (newServiceData == null) {
 
 126                         return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "FAILURE",
 
 127                                 "MicroserviceData cannot be null or empty");
 
 129                         if(!dataValidator.isValid(newServiceData)){
 
 130                                 return new PortalRestResponse<>(PortalRestStatusEnum.ERROR,
 
 131                                         "ERROR", "MicroserviceData is not valid");
 
 135                         microserviceService.updateMicroservice(serviceId, newServiceData);
 
 136                 } catch (Exception e) {
 
 137                         return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage());
 
 139                 return new PortalRestResponse<>(PortalRestStatusEnum.OK, "SUCCESS", "");
 
 142         @DeleteMapping(value = { "/portalApi/microservices/{serviceId}" })
 
 143         public PortalRestResponse<String> deleteMicroservice(HttpServletRequest request, HttpServletResponse response,
 
 144                         @PathVariable("serviceId") long serviceId) {
 
 146                         ParameterizedTypeReference<List<WidgetCatalog>> typeRef = new ParameterizedTypeReference<List<WidgetCatalog>>() {
 
 148                         // If this service is assoicated with widgets, cannnot be deleted
 
 149                         ResponseEntity<List<WidgetCatalog>> ans = template.exchange(
 
 150                                         EcompPortalUtils.widgetMsProtocol() + "://" + widgetMService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port"))
 
 151                                                         + "/widget/microservices/widgetCatalog/service/" + serviceId,
 
 152                                         HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), typeRef);
 
 153                         List<WidgetCatalog> widgets = ans.getBody();
 
 154                         if(widgets.size() == 0)
 
 155                                 microserviceService.deleteMicroservice(serviceId);
 
 157                                 StringBuilder sb = new StringBuilder();
 
 158                                 for(int i = 0; i < widgets.size(); i++){
 
 159                                         sb.append("'").append(widgets.get(i).getName()).append("' ");
 
 160                                         if(i < (widgets.size()-1)){
 
 164                                 return new PortalRestResponse<>(PortalRestStatusEnum.WARN, "SOME WIDGETS ASSOICATE WITH THIS SERVICE",
 
 167                 } catch (Exception e) {
 
 168                         return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage());
 
 170                 return new PortalRestResponse<>(PortalRestStatusEnum.OK, "SUCCESS", "");