Merge changes I3d0a9a7f,Iab983899
[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.values import ignore_case_get
21
22 logger = logging.getLogger(__name__)
23
24
25 def get_vims():
26     ret = call_aai("/cloud-infrastructure/cloud-regions?depth=all", "GET")
27     if ret[0] != 0:
28         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
29         raise NSLCMException("Failed to query vims from extsys.")
30     # convert vim_info_aai to internal vim_info
31     vims_aai = json.JSONDecoder().decode(ret[1])
32     vims_aai = ignore_case_get(vims_aai, "cloud-region")
33     vims_info = []
34     for vim in vims_aai:
35         vim = convert_vim_info(vim)
36         vims_info.append(vim)
37     return vims_info
38
39
40 def get_vim_by_id(vim_id):
41     cloud_owner, cloud_region = split_vim_to_owner_region(vim_id)
42     ret = call_aai("/cloud-infrastructure/cloud-regions/cloud-region/%s/%s?depth=all"
43                    % (cloud_owner, cloud_region), "GET")
44     if ret[0] != 0:
45         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
46         raise NSLCMException("Failed to query vim(%s) from extsys." % vim_id)
47     # convert vim_info_aai to internal vim_info
48     vim_info_aai = json.JSONDecoder().decode(ret[1])
49     vim_info = convert_vim_info(vim_info_aai)
50     return vim_info
51
52
53 def split_vim_to_owner_region(vim_id):
54     split_vim = vim_id.split('_')
55     cloud_owner = split_vim[0]
56     cloud_region = "".join(split_vim[1:])
57     return cloud_owner, cloud_region
58
59
60 def convert_vim_info(vim_info_aai):
61     vim_id = vim_info_aai["cloud-owner"] + "_" + vim_info_aai["cloud-region-id"]
62     esr_system_info = ignore_case_get(ignore_case_get(vim_info_aai, "esr-system-info-list"), "esr-system-info")
63     # tenants = ignore_case_get(vim_info_aai, "tenants")
64     vim_info = {
65         "vimId": vim_id,
66         "name": vim_id,
67         "url": ignore_case_get(esr_system_info[0], "service-url"),
68         "userName": ignore_case_get(esr_system_info[0], "user-name"),
69         "password": ignore_case_get(esr_system_info[0], "password"),
70         # "tenant": ignore_case_get(tenants[0], "tenant-id"),
71         "tenant": ignore_case_get(esr_system_info[0], "default-tenant"),
72         "vendor": ignore_case_get(esr_system_info[0], "vendor"),
73         "version": ignore_case_get(esr_system_info[0], "version"),
74         "description": "vim",
75         "domain": "",
76         "type": ignore_case_get(esr_system_info[0], "type"),
77         "createTime": "2016-07-18 12:22:53"
78     }
79     return vim_info
80
81
82 def get_sdn_controller_by_id(sdn_ontroller_id):
83     ret = call_aai("/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/%s?depth=all"
84                    % sdn_ontroller_id, "GET")
85     if ret[0] != 0:
86         logger.error("Failed to query sdn ontroller(%s) from extsys. detail is %s.", sdn_ontroller_id, ret[1])
87         raise NSLCMException("Failed to query sdn ontroller(%s) from extsys." % sdn_ontroller_id)
88     # convert vim_info_aai to internal vim_info
89     sdnc_info_aai = json.JSONDecoder().decode(ret[1])
90     sdnc_info = convert_sdnc_info(sdnc_info_aai)
91     return sdnc_info
92
93
94 def convert_sdnc_info(sdnc_info_aai):
95     esr_system_info = ignore_case_get(ignore_case_get(sdnc_info_aai, "esr-system-info-list"), "esr-system-info")
96     sdnc_info = {
97         "sdnControllerId": sdnc_info_aai["thirdparty-sdnc-id"],
98         "name": sdnc_info_aai["thirdparty-sdnc-id"],
99         "url": ignore_case_get(esr_system_info[0], "service-url"),
100         "userName": ignore_case_get(esr_system_info[0], "user-name"),
101         "password": ignore_case_get(esr_system_info[0], "password"),
102         "vendor": ignore_case_get(esr_system_info[0], "vendor"),
103         "version": ignore_case_get(esr_system_info[0], "version"),
104         "description": "",
105         "protocol": ignore_case_get(esr_system_info[0], "protocal"),
106         "productName": ignore_case_get(sdnc_info_aai, "product-name"),
107         "type": ignore_case_get(esr_system_info[0], "type"),
108         "createTime": "2016-07-18 12:22:53"
109     }
110     return sdnc_info
111
112
113 def get_vnfm_by_id(vnfm_inst_id):
114     uri = "/external-system/esr-vnfm-list/esr-vnfm/%s?depth=all" % vnfm_inst_id
115     ret = call_aai(uri, "GET")
116     if ret[0] > 0:
117         logger.error('Send get VNFM information request to extsys failed.')
118         raise NSLCMException('Send get VNFM information request to extsys failed.')
119     # convert vnfm_info_aai to internal vnfm_info
120     vnfm_info_aai = json.JSONDecoder().decode(ret[1])
121     vnfm_info = convert_vnfm_info(vnfm_info_aai)
122     return vnfm_info
123
124
125 def convert_vnfm_info(vnfm_info_aai):
126     esr_system_info = ignore_case_get(ignore_case_get(vnfm_info_aai, "esr-system-info-list"), "esr-system-info")
127     vnfm_info = {
128         "vnfmId": vnfm_info_aai["vnfm-id"],
129         "name": vnfm_info_aai["vnfm-id"],
130         "type": ignore_case_get(esr_system_info[0], "type"),
131         "vimId": vnfm_info_aai["vim-id"],
132         "vendor": ignore_case_get(esr_system_info[0], "vendor"),
133         "version": ignore_case_get(esr_system_info[0], "version"),
134         "description": "vnfm",
135         "certificateUrl": vnfm_info_aai["certificate-url"],
136         "url": ignore_case_get(esr_system_info[0], "service-url"),
137         "userName": ignore_case_get(esr_system_info[0], "user-name"),
138         "password": ignore_case_get(esr_system_info[0], "password"),
139         "createTime": "2016-07-06 15:33:18"
140     }
141     return vnfm_info
142
143
144 def select_vnfm(vnfm_type, vim_id):
145     uri = "/external-system/esr-vnfm-list?depth=all"
146     ret = call_aai(uri, "GET")
147     if ret[0] > 0:
148         logger.error("Failed to call %s: %s", uri, ret[1])
149         raise NSLCMException('Failed to get vnfms from extsys.')
150     vnfms = json.JSONDecoder().decode(ret[1])
151     vnfms = ignore_case_get(vnfms, "esr-vnfm")
152     for vnfm in vnfms:
153         esr_system_info = ignore_case_get(vnfm, "esr-system-info")
154         type = ignore_case_get(esr_system_info, "type")
155         vimId = vnfm["vnfm-id"]
156         if type == vnfm_type and vimId == vim_id:
157             # convert vnfm_info_aai to internal vnfm_info
158             vnfm = convert_vnfm_info(vnfm)
159             return vnfm
160     raise NSLCMException('No vnfm found with %s in vim(%s)' % (vnfm_type, vim_id))