2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.so.apihandlerinfra.tenantisolation.dmaap;
 
  23 import java.io.IOException;
 
  24 import javax.inject.Provider;
 
  25 import org.apache.http.HttpStatus;
 
  26 import org.onap.so.apihandler.common.ErrorNumbers;
 
  27 import org.onap.so.apihandlerinfra.exceptions.ApiException;
 
  28 import org.onap.so.apihandlerinfra.exceptions.ValidateException;
 
  29 import org.onap.so.apihandlerinfra.logging.ErrorLoggerInfo;
 
  30 import org.onap.so.logger.ErrorCode;
 
  31 import org.onap.so.logger.MessageEnum;
 
  32 import org.springframework.beans.factory.annotation.Autowired;
 
  33 import org.springframework.stereotype.Component;
 
  34 import com.fasterxml.jackson.core.JsonProcessingException;
 
  35 import com.fasterxml.jackson.databind.ObjectMapper;
 
  38 public class DmaapOperationalEnvClient {
 
  41     private Provider<OperationalEnvironmentPublisher> dmaapPublisher;
 
  43     protected String buildRequest(String operationalEnvironmentId, String operationalEnvironmentName,
 
  44             String operationalEnvironmentType, String tenantContext, String workloadContext, String action)
 
  46         final CreateEcompOperationEnvironmentBean operationalEnv = new CreateEcompOperationEnvironmentBean();
 
  47         operationalEnv.withOperationalEnvironmentId(operationalEnvironmentId)
 
  48                 .withOperationalEnvironmentName(operationalEnvironmentName)
 
  49                 .withOperationalEnvironmentType(operationalEnvironmentType).withTenantContext(tenantContext)
 
  50                 .withWorkloadContext(workloadContext).withaction(action);
 
  52             return this.getJson(operationalEnv);
 
  53         } catch (JsonProcessingException ex) {
 
  54             ErrorLoggerInfo errorLoggerInfo =
 
  55                     new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, ErrorCode.SchemaError)
 
  57             ValidateException validateException =
 
  58                     new ValidateException.Builder("Mapping of request to JSON object failed : " + ex.getMessage(),
 
  59                             HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(ex)
 
  60                                     .errorInfo(errorLoggerInfo).build();
 
  62             throw validateException;
 
  66     protected String getJson(CreateEcompOperationEnvironmentBean obj) throws JsonProcessingException {
 
  68         final ObjectMapper mapper = new ObjectMapper();
 
  69         return mapper.writeValueAsString(obj);
 
  73     public void dmaapPublishOperationalEnvRequest(String operationalEnvironmentId, String operationalEnvironmentName,
 
  74             String operationalEnvironmentType, String tenantContext, String workloadContext, String action)
 
  75             throws ApiException, IOException, InterruptedException {
 
  77         String request = this.buildRequest(operationalEnvironmentId, operationalEnvironmentName,
 
  78                 operationalEnvironmentType, tenantContext, workloadContext, action);
 
  79         dmaapPublisher.get().send(request);