2  * Copyright 2016-2017, Nokia Corporation
 
   4  * Licensed under the Apache License, Version 2.0 (the "License");
 
   5  * you may not use this file except in compliance with the License.
 
   6  * You may obtain a copy of the License at
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  10  * Unless required by applicable law or agreed to in writing, software
 
  11  * distributed under the License is distributed on an "AS IS" BASIS,
 
  12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  13  * See the License for the specific language governing permissions and
 
  14  * limitations under the License.
 
  17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.impl;
 
  19 import java.io.IOException;
 
  20 import java.util.HashMap;
 
  22 import org.apache.commons.codec.binary.Base64;
 
  23 import org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.bo.AaiVnfmInfo;
 
  24 import org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.inf.AaiMgmrInf;
 
  25 import org.onap.vfc.nfvo.driver.vnfm.svnfm.common.bo.AdaptorEnv;
 
  26 import org.onap.vfc.nfvo.driver.vnfm.svnfm.constant.CommonConstants;
 
  27 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpClientProcessorInf;
 
  28 import org.slf4j.Logger;
 
  29 import org.slf4j.LoggerFactory;
 
  30 import org.springframework.beans.factory.annotation.Autowired;
 
  31 import org.springframework.stereotype.Component;
 
  32 import org.springframework.web.bind.annotation.RequestMethod;
 
  34 import com.google.gson.Gson;
 
  37 public class AaiMgmrInfImpl implements AaiMgmrInf{
 
  38         private static final Logger logger = LoggerFactory.getLogger(AaiMgmrInfImpl.class);
 
  41         private AdaptorEnv adaptorEnv;
 
  44         HttpClientProcessorInf httpClientProcessor;
 
  46         private Gson gson = new Gson();
 
  48         public AaiVnfmInfo queryVnfm(String vnfmId) throws IOException {
 
  49                 String httpPath = String.format(CommonConstants.RetrieveVnfmListPath, vnfmId);
 
  50                 RequestMethod method = RequestMethod.GET;
 
  52                 String responseStr = operateHttpTask(null, httpPath, method);
 
  54                 logger.info("AaiMgmrInfImpl->queryVnfm, the vnfmInfo is {}", responseStr);
 
  56                 AaiVnfmInfo response = gson.fromJson(responseStr, AaiVnfmInfo.class);
 
  61         private String operateHttpTask(Object httpBodyObj, String httpPath, RequestMethod method) throws IOException {
 
  62                 String url=adaptorEnv.getAaiApiUriFront() + httpPath;
 
  64                 HashMap<String, String> headerMap = new HashMap<>();
 
  65                 headerMap.put("Content-Type", "application/json");
 
  66         headerMap.put("Accept", "application/json");
 
  67         headerMap.put("X-TransactionId", "9999");
 
  68         headerMap.put("X-FromAppId", "esr-server");
 
  70         Base64 token = new Base64();
 
  71         String authen = new String(token.encode(("AAI:AAI").getBytes()));
 
  72         headerMap.put("Authorization", "Basic " + authen);
 
  73         logger.info("getVimById headerMap: {}", headerMap.toString());
 
  75                 String responseStr = httpClientProcessor.process(url, method, headerMap, gson.toJson(httpBodyObj)).getContent();
 
  80         public void setAdaptorEnv(AdaptorEnv env) {
 
  81                 this.adaptorEnv = env;