| import logging |
| import six |
| import uuid |
| |
| import os_client_config |
| from salt import exceptions |
| |
| |
| log = logging.getLogger(__name__) |
| |
| SERVICE_KEY = 'orchestration' |
| |
| |
| def get_raw_client(cloud_name): |
| config = os_client_config.OpenStackConfig() |
| cloud = config.get_one_cloud(cloud_name) |
| adapter = cloud.get_session_client(SERVICE_KEY) |
| adapter.version = '1' |
| try: |
| access_info = adapter.session.auth.get_access(adapter.session) |
| endpoints = access_info.service_catalog.get_endpoints() |
| except (AttributeError, ValueError) as exc: |
| six.raise_from(exc, exceptions.SaltInvocationError( |
| "Cannot load keystoneauth plugin. Please check your environment " |
| "configuration.")) |
| if SERVICE_KEY not in endpoints: |
| raise exceptions.SaltInvocationError("Cannot find heat endpoint in " |
| "environment endpoint list.") |
| return adapter |
| |
| |
| def send(method): |
| def wrap(func): |
| @six.wraps(func) |
| def wrapped_f(*args, **kwargs): |
| cloud_name = kwargs.get('cloud_name', None) |
| if not cloud_name: |
| raise exceptions.SaltInvocationError( |
| "No cloud_name specified. Please provide cloud_name " |
| "parameter") |
| adapter = get_raw_client(cloud_name) |
| # Remove salt internal kwargs |
| kwarg_keys = list(kwargs.keys()) |
| for k in kwarg_keys: |
| if k.startswith('__'): |
| kwargs.pop(k) |
| url, request_kwargs = func(*args, **kwargs) |
| try: |
| response = getattr(adapter, method.lower())(url, |
| **request_kwargs) |
| except Exception as e: |
| log.exception("Error occured when executing request") |
| return {"result": False, |
| "comment": str(e), |
| "status_code": getattr(e, "http_status", 500)} |
| try: |
| resp_body = response.json() if response.content else {} |
| except: |
| resp_body = str(response.content) |
| return {"result": True, |
| "body": resp_body, |
| "status_code": response.status_code} |
| return wrapped_f |
| return wrap |
| |
| |
| def _check_uuid(val): |
| try: |
| return str(uuid.UUID(val)) == val |
| except (TypeError, ValueError, AttributeError): |
| return False |
| |
| |
| def get_by_name_or_uuid(resource_list, resp_key): |
| def wrap(func): |
| @six.wraps(func) |
| def wrapped_f(*args, **kwargs): |
| if 'name' in kwargs: |
| ref = kwargs.get('name', None) |
| start_arg = 0 |
| else: |
| start_arg = 1 |
| ref = args[0] |
| kwargs["name"] = ref |
| if _check_uuid(ref): |
| uuid = ref |
| else: |
| # Then we have name not uuid |
| cloud_name = kwargs['cloud_name'] |
| resp = resource_list( |
| name=ref, cloud_name=cloud_name)["body"][resp_key] |
| if len(resp) == 0: |
| msg = ("Uniq {resource} resource " |
| "with name={name} not found.").format( |
| resource=resp_key, name=ref) |
| return {"result": False, |
| "body": msg, |
| "status_code": 404} |
| elif len(resp) > 1: |
| msg = ("Multiple resource: {resource} " |
| "with name: {name} found ").format( |
| resource=resp_key, name=ref) |
| return {"result": False, |
| "body": msg, |
| "status_code": 400} |
| uuid = resp[0]['id'] |
| return func(uuid, *args[start_arg:], **kwargs) |
| return wrapped_f |
| return wrap |