
vnfd templates, parameter and config files are sent as yaml strings in requests body to tacker server. Change the attributes to dictionary objects. New behavior is applicable to tosca templates only. Also, this change may mangle the order of nodes in tosca templates. In order to address this concern and preserve the network interfaces order in these nodes, there will be follow on patch (on server) to addres this. Change-Id: I05a1d60dc643dca864aff559f37491914b1fcfc3 Partial-Bug: #1591361
195 lines
6.0 KiB
Python
195 lines
6.0 KiB
Python
# Copyright 2011, VMware, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Borrowed from nova code base, more utilities will be added/borrowed as and
|
|
# when needed.
|
|
|
|
"""Utilities and helper functions."""
|
|
|
|
import argparse
|
|
import logging
|
|
import os
|
|
|
|
from oslo_log import versionutils
|
|
from oslo_utils import encodeutils
|
|
from oslo_utils import importutils
|
|
import six
|
|
import six.moves.urllib.parse as urlparse
|
|
|
|
from tackerclient.common import exceptions
|
|
from tackerclient.i18n import _
|
|
|
|
|
|
def env(*vars, **kwargs):
|
|
"""Returns the first environment variable set.
|
|
|
|
If none are non-empty, defaults to '' or keyword arg default.
|
|
"""
|
|
for v in vars:
|
|
value = os.environ.get(v)
|
|
if value:
|
|
return value
|
|
return kwargs.get('default', '')
|
|
|
|
|
|
def get_client_class(api_name, version, version_map):
|
|
"""Returns the client class for the requested API version.
|
|
|
|
:param api_name: the name of the API, e.g. 'compute', 'image', etc
|
|
:param version: the requested API version
|
|
:param version_map: a dict of client classes keyed by version
|
|
:rtype: a client class for the requested API version
|
|
"""
|
|
try:
|
|
client_path = version_map[str(version)]
|
|
except (KeyError, ValueError):
|
|
msg = _("Invalid %(api_name)s client version '%(version)s'. must be "
|
|
"one of: %(map_keys)s")
|
|
msg = msg % {'api_name': api_name, 'version': version,
|
|
'map_keys': ', '.join(version_map.keys())}
|
|
raise exceptions.UnsupportedVersion(msg)
|
|
|
|
return importutils.import_class(client_path)
|
|
|
|
|
|
def get_item_properties(item, fields, mixed_case_fields=(), formatters=None):
|
|
"""Return a tuple containing the item properties.
|
|
|
|
:param item: a single item resource (e.g. Server, Tenant, etc)
|
|
:param fields: tuple of strings with the desired field names
|
|
:param mixed_case_fields: tuple of field names to preserve case
|
|
:param formatters: dictionary mapping field names to callables
|
|
to format the values
|
|
"""
|
|
if formatters is None:
|
|
formatters = {}
|
|
|
|
row = []
|
|
|
|
for field in fields:
|
|
if field in formatters:
|
|
row.append(formatters[field](item))
|
|
else:
|
|
if field in mixed_case_fields:
|
|
field_name = field.replace(' ', '_')
|
|
else:
|
|
field_name = field.lower().replace(' ', '_')
|
|
if not hasattr(item, field_name) and isinstance(item, dict):
|
|
data = item[field_name]
|
|
else:
|
|
data = getattr(item, field_name, '')
|
|
if data is None:
|
|
data = ''
|
|
row.append(data)
|
|
return tuple(row)
|
|
|
|
|
|
def str2bool(strbool):
|
|
if strbool is None:
|
|
return None
|
|
return strbool.lower() == 'true'
|
|
|
|
|
|
def str2dict(strdict):
|
|
"""Convert key1=value1,key2=value2,... string into dictionary.
|
|
|
|
:param strdict: key1=value1,key2=value2
|
|
"""
|
|
if not strdict:
|
|
return {}
|
|
return dict([kv.split('=', 1) for kv in strdict.split(',')])
|
|
|
|
|
|
def http_log_req(_logger, args, kwargs):
|
|
if not _logger.isEnabledFor(logging.DEBUG):
|
|
return
|
|
|
|
string_parts = ['curl -i']
|
|
for element in args:
|
|
if element in ('GET', 'POST', 'DELETE', 'PUT'):
|
|
string_parts.append(' -X %s' % element)
|
|
else:
|
|
string_parts.append(' %s' % element)
|
|
|
|
for element in kwargs['headers']:
|
|
header = ' -H "%s: %s"' % (element, kwargs['headers'][element])
|
|
string_parts.append(header)
|
|
|
|
if 'body' in kwargs and kwargs['body']:
|
|
string_parts.append(" -d '%s'" % (kwargs['body']))
|
|
req = encodeutils.safe_encode("".join(string_parts))
|
|
_logger.debug("\nREQ: %s\n", req)
|
|
|
|
|
|
def http_log_resp(_logger, resp, body):
|
|
if not _logger.isEnabledFor(logging.DEBUG):
|
|
return
|
|
_logger.debug("RESP:%(code)s %(headers)s %(body)s\n",
|
|
{'code': resp.status_code,
|
|
'headers': resp.headers,
|
|
'body': body})
|
|
|
|
|
|
def _safe_encode_without_obj(data):
|
|
if isinstance(data, six.string_types):
|
|
return encodeutils.safe_encode(data)
|
|
return data
|
|
|
|
|
|
def safe_encode_list(data):
|
|
return list(map(_safe_encode_without_obj, data))
|
|
|
|
|
|
def safe_encode_dict(data):
|
|
def _encode_item(item):
|
|
k, v = item
|
|
if isinstance(v, list):
|
|
return (k, safe_encode_list(v))
|
|
elif isinstance(v, dict):
|
|
return (k, safe_encode_dict(v))
|
|
return (k, _safe_encode_without_obj(v))
|
|
|
|
return dict(list(map(_encode_item, data.items())))
|
|
|
|
|
|
def add_boolean_argument(parser, name, **kwargs):
|
|
for keyword in ('metavar', 'choices'):
|
|
kwargs.pop(keyword, None)
|
|
default = kwargs.pop('default', argparse.SUPPRESS)
|
|
parser.add_argument(
|
|
name,
|
|
metavar='{True,False}',
|
|
choices=['True', 'true', 'False', 'false'],
|
|
default=default,
|
|
**kwargs)
|
|
|
|
|
|
def validate_url(url):
|
|
url_parts = urlparse.urlparse(url)
|
|
if not url_parts.scheme or not url_parts.netloc or not url_parts.port:
|
|
raise exceptions.TackerClientException(message='Invalid URL')
|
|
return url_parts
|
|
|
|
|
|
def get_file_path(filename):
|
|
file_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
|
|
'../%s' % filename))
|
|
return file_path
|
|
|
|
|
|
def deprecate_warning(what, as_of, in_favor_of=None, remove_in=1):
|
|
versionutils.deprecation_warning(as_of=as_of, what=what,
|
|
in_favor_of=in_favor_of,
|
|
remove_in=remove_in)
|