Merge "Add build dir to build_image.sh"
[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.utils.restcall import req_by_msb
20
21 logger = logging.getLogger(__name__)
22
23
24 def get_vims():
25     ret = req_by_msb("/api/aai-esr-server/v1/vims", "GET")
26     if ret[0] != 0:
27         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
28         raise NSLCMException("Failed to query vims from extsys.")
29     return json.JSONDecoder().decode(ret[1])
30
31
32 def get_vim_by_id(vim_id):
33     ret = req_by_msb("/api/aai-esr-server/v1/vims/%s" % vim_id, "GET")
34     if ret[0] != 0:
35         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
36         raise NSLCMException("Failed to query vim(%s) from extsys." % vim_id)
37     return json.JSONDecoder().decode(ret[1])
38
39
40 def get_sdn_controller_by_id(sdn_ontroller_id):
41     ret = req_by_msb("/api/aai-esr-server/v1/sdncontrollers/%s" % sdn_ontroller_id, "GET")
42     if ret[0] != 0:
43         logger.error("Failed to query sdn ontroller(%s) from extsys. detail is %s.", sdn_ontroller_id, ret[1])
44         raise NSLCMException("Failed to query sdn ontroller(%s) from extsys." % sdn_ontroller_id)
45     return json.JSONDecoder().decode(ret[1])
46
47
48 def get_vnfm_by_id(vnfm_inst_id):
49     uri = '/api/aai-esr-server/v1/vnfms/%s' % vnfm_inst_id
50     ret = req_by_msb(uri, "GET")
51     if ret[0] > 0:
52         logger.error('Send get VNFM information request to extsys failed.')
53         raise NSLCMException('Send get VNFM information request to extsys failed.')
54     return json.JSONDecoder().decode(ret[1])
55
56 def select_vnfm(vnfm_type, vim_id):
57     uri = '/api/aai-esr-server/v1/vnfms'
58     ret = req_by_msb(uri, "GET")
59     if ret[0] > 0:
60         logger.error("Failed to call %s: %s", uri, ret[1])
61         raise NSLCMException('Failed to get vnfms from extsys.')
62     vnfms = json.JSONDecoder().decode(ret[1])
63     for vnfm in vnfms:
64         if vnfm["type"] == vnfm_type and vnfm["vimId"] == vim_id:
65             return vnfm
66     raise NSLCMException('No vnfm found with %s in vim(%s)' % (vnfm_type, vim_id))
67