a8286f86b21325c92fdb0b7a654d469b23d5b84b
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / aai / impl / AaiMgmrInfImpl.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.impl;
18
19 import java.io.IOException;
20 import java.util.HashMap;
21
22 import org.apache.http.client.ClientProtocolException;
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.http.MediaType;
32 import org.springframework.stereotype.Component;
33 import org.springframework.web.bind.annotation.RequestMethod;
34
35 import com.google.gson.Gson;
36
37 @Component
38 public class AaiMgmrInfImpl implements AaiMgmrInf{
39         private static final Logger logger = LoggerFactory.getLogger(AaiMgmrInfImpl.class);
40         
41         @Autowired 
42         private AdaptorEnv adaptorEnv;
43         
44         @Autowired
45         HttpClientProcessorInf httpClientProcessor;
46         
47         private Gson gson = new Gson();
48         @Override
49         public AaiVnfmInfo queryVnfm(String vnfmId) throws ClientProtocolException, IOException {
50                 String httpPath = String.format(CommonConstants.RetrieveVnfmListPath, vnfmId);
51                 RequestMethod method = RequestMethod.GET;
52                 
53                 String responseStr = operateHttpTask(null, httpPath, method);
54                 
55                 logger.info("AaiMgmrInfImpl->queryVnfm, the vnfmInfo is {}", responseStr);
56                 
57                 AaiVnfmInfo response = gson.fromJson(responseStr, AaiVnfmInfo.class);
58                 
59                 return response;
60         }
61         
62         private String operateHttpTask(Object httpBodyObj, String httpPath, RequestMethod method) throws ClientProtocolException, IOException {
63                 String url=adaptorEnv.getAaiApiUriFront() + httpPath;
64                 
65                 HashMap<String, String> map = new HashMap<>();
66                 map.put(CommonConstants.CONTENT_TYPE, MediaType.APPLICATION_FORM_URLENCODED_VALUE);
67                 
68                 String responseStr = httpClientProcessor.process(url, method, map, gson.toJson(httpBodyObj)).getContent();
69                 
70                 return responseStr;
71         }
72
73         public void setAdaptorEnv(AdaptorEnv env) {
74                 this.adaptorEnv = env;
75         }
76
77 }