Merge "Add registry API to MultiCloud framework"
[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 get_res_from_aai
17
18 logger = logging.getLogger(__name__)
19
20
21 def split_vim_to_owner_region(vim_id):
22     split_vim = vim_id.split('_')
23     cloud_owner = split_vim[0]
24     cloud_region = "".join(split_vim[1:])
25     return cloud_owner, cloud_region
26
27
28 def get_vim_by_id(vim_id):
29     cloud_owner, cloud_region = split_vim_to_owner_region(vim_id)
30     ret = get_res_from_aai("/cloud-infrastructure/cloud-regions/cloud-region"
31                            "/%s/%s" % (cloud_owner, cloud_region))
32     if ret[0] != 0:
33         logger.error("Status code is %s, detail is %s." % (ret[2], ret[1]))
34         raise VimBrokerException(
35             status_code=404,
36             content="Failed to query VIM with id (%s) from extsys." % vim_id)
37     ret = json.JSONDecoder().decode(ret[1])
38     ret['type'] = ret['cloud-type']
39     ret['version'] = ret['cloud-region-version']
40     ret['vimId'] = vim_id
41     return ret