1baa08a5b92a409bee36d8b16f2c2ff7f668c0c8
[multicloud/framework.git] / multivimbroker / multivimbroker / pub / msapi / extsys.py
1 # Copyright (c) 2017 Wind River Systems, Inc.
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 #       http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
12 import json
13 import logging
14
15 from multivimbroker.pub.exceptions import VimBrokerException
16 from multivimbroker.pub.utils.restcall import req_by_msb
17 from multivimbroker.pub.config.config import ESR_GET_VIM_URI
18
19 logger = logging.getLogger(__name__)
20
21
22 def get_vims():
23     ret = req_by_msb(ESR_GET_VIM_URI, "GET")
24     if ret[0] != 0:
25         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
26         raise VimBrokerException(status_code=404 ,content="Failed to query VIMs from extsys.")
27     return json.JSONDecoder().decode(ret[1])
28
29
30 def get_vim_by_id(vim_id):
31     ret = req_by_msb("%s/%s" % (ESR_GET_VIM_URI, vim_id), "GET")
32     if ret[0] != 0:
33         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
34         raise VimBrokerException(status_code=404,content=
35             "Failed to query VIM with id (%s) from extsys." % vim_id)
36     return json.JSONDecoder().decode(ret[1])