7516d4bc0efd6869b23756a3067fbdfe2cc546bd
[multicloud/framework.git] / multivimbroker / multivimbroker / pub / utils / syscomm.py
1 # Copyright (c) 2017 Wind River Systems, Inc.
2 # Copyright (c) 2017-2018 VMware, Inc.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
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
13 import inspect
14 import json
15 import os
16 import re
17
18 import multivimbroker.pub.exceptions as exceptions
19 from multivimbroker.pub.msapi import extsys
20
21
22 def fun_name():
23     return inspect.stack()[1][3]
24
25
26 # Which headers are hop-by-hop headers by default
27 HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate',
28               'proxy-authorization', 'te', 'trailers',
29               'transfer-encoding', 'upgrade']
30
31
32 def getHeadersKeys(response):
33     hopbyhop = HOP_BY_HOP
34     hopbyhop.extend([x.strip()
35                      for x in response.get('connection', '').split(',')])
36     return [header for header in response.keys() if header not in hopbyhop]
37
38
39 # trim out 'HTTP_' prefix part and replace "_" wiht "-".
40 def originHeaders(request):
41     headers = {}
42     for key, value in request.META.items():
43         if key.startswith('HTTP_') and key != 'HTTP_HOST':
44             headers[key[5:].replace('_', '-')] = value
45         elif key in ('CONTENT_TYPE', 'CONTENT_LENGTH'):
46             headers[key.replace('_', '-')] = value
47     return headers
48
49
50 def findMultivimDriver(vim=None):
51     json_file = os.path.join(os.path.dirname(__file__),
52                              '../config/provider-plugin.json')
53     with open(json_file, "r") as f:
54         plugins = json.load(f)
55     if not vim or vim.get("type") not in plugins.keys():
56         raise exceptions.NotFound("Not support VIM type")
57     plugin = plugins[vim["type"]]
58     if vim.get("version") in plugin["versions"].keys():
59         return plugin["versions"][vim["version"]]["provider_plugin"]
60     return plugin["provider_plugin"]
61
62
63 def getMultivimDriver(vimid, full_path=""):
64     multcloud = "multicloud"
65     vim = extsys.get_vim_by_id(vimid)
66     multclouddriver = findMultivimDriver(vim=vim)
67     return re.sub(multcloud, multclouddriver, full_path)
68
69
70 def getVIMTypes():
71     # Fix here unless we have plugin registry
72     json_file = os.path.join(os.path.dirname(__file__),
73                              '../config/provider-plugin.json')
74     with open(json_file, "r") as f:
75         plugins = json.load(f)
76     ret = []
77     for k, v in plugins.items():
78         item = {}
79         item["vim_type"] = v.get("vim_type")
80         item["versions"] = [k for k in v.get('versions', {})]
81         ret.append(item)
82
83     return ret