Update query sdnc api and unit test
[vfc/nfvo/lcm.git] / lcm / pub / msapi / extsys.py
1 # Copyright 2016 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import json
16 import logging
17
18 from lcm.pub.exceptions import NSLCMException
19 from lcm.pub.msapi.aai import call_aai
20 from lcm.pub.utils.restcall import req_by_msb
21 from lcm.pub.utils.values import ignore_case_get
22
23 logger = logging.getLogger(__name__)
24
25
26 def get_vims():
27     ret = req_by_msb("/api/aai-esr-server/v1/vims", "GET")
28     if ret[0] != 0:
29         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
30         raise NSLCMException("Failed to query vims from extsys.")
31     return json.JSONDecoder().decode(ret[1])
32
33
34 def get_vim_by_id(vim_id):
35     ret = req_by_msb("/api/aai-esr-server/v1/vims/%s" % vim_id, "GET")
36     if ret[0] != 0:
37         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
38         raise NSLCMException("Failed to query vim(%s) from extsys." % vim_id)
39     return json.JSONDecoder().decode(ret[1])
40
41
42 def get_sdn_controller_by_id(sdn_ontroller_id):
43     ret = call_aai("/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/%s" % sdn_ontroller_id, "GET")
44     if ret[0] != 0:
45         logger.error("Failed to query sdn ontroller(%s) from extsys. detail is %s.", sdn_ontroller_id, ret[1])
46         raise NSLCMException("Failed to query sdn ontroller(%s) from extsys." % sdn_ontroller_id)
47     # convert vim_info_aai to internal vim_info
48     sdnc_info_aai = json.JSONDecoder().decode(ret[1])
49     sdnc_info = convert_sdnc_info(sdnc_info_aai)
50     return sdnc_info
51
52
53 def convert_sdnc_info(sdnc_info_aai):
54     esr_system_info = ignore_case_get(ignore_case_get(sdnc_info_aai, "esr-system-info-list"), "esr-system-info")
55     sdnc_info = {
56         "sdnControllerId": sdnc_info_aai["thirdparty-sdnc-id"],
57         "name": sdnc_info_aai["thirdparty-sdnc-id"],
58         "url": ignore_case_get(esr_system_info[0], "service-url"),
59         "userName": ignore_case_get(esr_system_info[0], "user-name"),
60         "password": ignore_case_get(esr_system_info[0], "password"),
61         "vendor": ignore_case_get(esr_system_info[0], "vendor"),
62         "version": ignore_case_get(esr_system_info[0], "version"),
63         "description": "",
64         "protocol": ignore_case_get(esr_system_info[0], "protocal"),
65         "productName": ignore_case_get(sdnc_info_aai, "product-name"),
66         "type": ignore_case_get(esr_system_info[0], "type"),
67         "createTime": "2016-07-18 12:22:53"
68     }
69     return sdnc_info
70
71
72 def get_vnfm_by_id(vnfm_inst_id):
73     uri = '/api/aai-esr-server/v1/vnfms/%s' % vnfm_inst_id
74     ret = req_by_msb(uri, "GET")
75     if ret[0] > 0:
76         logger.error('Send get VNFM information request to extsys failed.')
77         raise NSLCMException('Send get VNFM information request to extsys failed.')
78     return json.JSONDecoder().decode(ret[1])
79
80 def select_vnfm(vnfm_type, vim_id):
81     uri = '/api/aai-esr-server/v1/vnfms'
82     ret = req_by_msb(uri, "GET")
83     if ret[0] > 0:
84         logger.error("Failed to call %s: %s", uri, ret[1])
85         raise NSLCMException('Failed to get vnfms from extsys.')
86     vnfms = json.JSONDecoder().decode(ret[1])
87     for vnfm in vnfms:
88         if vnfm["type"] == vnfm_type and vnfm["vimId"] == vim_id:
89             return vnfm
90     raise NSLCMException('No vnfm found with %s in vim(%s)' % (vnfm_type, vim_id))
91