24c42133f8
Flake8 is failing due to bugbear updating with new error codes: B009: Do not call getattr with a constant attribute value B010: Do not call setattr with a constant attribute value Fix these errors by using normal property access instead Change-Id: Ib857d229ae86e88cb5dbf69e826b25d6018c8547 Signed-off-by: Eric Barrett <eric.barrett@windriver.com>
113 lines
4.3 KiB
Python
113 lines
4.3 KiB
Python
#
|
|
# Copyright (c) 2013-2018 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
from sm_client.common import utils
|
|
from keystoneclient.v3 import client as ksclient
|
|
|
|
|
|
def _get_ksclient(**kwargs):
|
|
"""Get an endpoint and auth token from Keystone.
|
|
|
|
:param kwargs: keyword args containing credentials:
|
|
* username: name of user
|
|
* password: user's password
|
|
* auth_url: endpoint to authenticate against
|
|
* insecure: allow insecure SSL (no cert verification)
|
|
* tenant_{name|id}: name or ID of tenant
|
|
"""
|
|
return ksclient.Client(username=kwargs.get('username'),
|
|
password=kwargs.get('password'),
|
|
user_domain_name=kwargs.get('user_domain_name'),
|
|
project_domain_name=kwargs.get('project_domain_name'),
|
|
project_name=kwargs.get('project_name'),
|
|
auth_url=kwargs.get('auth_url'),
|
|
cacert=kwargs.get('os_cacert'),
|
|
insecure=kwargs.get('insecure'))
|
|
|
|
|
|
def _get_endpoint(client, **kwargs):
|
|
"""Get an endpoint using the provided keystone client."""
|
|
return client.service_catalog.url_for(
|
|
service_type=kwargs.get('service_name') or 'smapi',
|
|
endpoint_type=kwargs.get('endpoint_type') or 'public',
|
|
region_name=kwargs.get('os_region_name') or 'RegionOne')
|
|
|
|
|
|
def get_client(api_version, **kwargs):
|
|
"""Get an authtenticated client, based on the credentials
|
|
in the keyword args.
|
|
|
|
:param api_version: the API version to use ('1' or '2')
|
|
:param kwargs: keyword args containing credentials, either:
|
|
* os_auth_token: pre-existing token to re-use
|
|
* smc_url: smc API endpoint
|
|
or:
|
|
* os_username: name of user
|
|
* os_password: user's password
|
|
* os_auth_url: endpoint to authenticate against
|
|
* insecure: allow insecure SSL (no cert verification)
|
|
* os_tenant_{name|id}: name or ID of tenant
|
|
* os_region_name: region of the service
|
|
"""
|
|
if kwargs.get('os_auth_token') and kwargs.get('smc_url'):
|
|
token = kwargs.get('os_auth_token')
|
|
endpoint = kwargs.get('smc_url')
|
|
auth_ref = None
|
|
elif (kwargs.get('os_username') and
|
|
kwargs.get('os_password') and
|
|
kwargs.get('os_auth_url')):
|
|
|
|
ks_kwargs = {
|
|
'username': kwargs.get('os_username'),
|
|
'password': kwargs.get('os_password'),
|
|
'auth_url': kwargs.get('os_auth_url'),
|
|
'project_id': kwargs.get('os_project_id'),
|
|
'project_name': kwargs.get('os_project_name'),
|
|
'user_domain_id': kwargs.get('os_user_domain_id'),
|
|
'user_domain_name': kwargs.get('os_user_domain_name'),
|
|
'project_domain_id': kwargs.get('os_project_domain_id'),
|
|
'project_domain_name': kwargs.get('os_project_domain_name'),
|
|
'service_type': kwargs.get('os_service_type'),
|
|
'endpoint_type': kwargs.get('os_endpoint_type'),
|
|
'insecure': kwargs.get('insecure'),
|
|
}
|
|
_ksclient = _get_ksclient(**ks_kwargs)
|
|
token = kwargs.get('os_auth_token') if kwargs.get('os_auth_token') else _ksclient.auth_ref.auth_token
|
|
ep_kwargs = {
|
|
'username': kwargs.get('os_username'),
|
|
'password': kwargs.get('os_password'),
|
|
'auth_url': kwargs.get('os_auth_url'),
|
|
'service_type': kwargs.get('os_service_type'),
|
|
'endpoint_type': kwargs.get('os_endpoint_type'),
|
|
'region_name': kwargs.get('os_region_name'),
|
|
'insecure': kwargs.get('insecure'),
|
|
}
|
|
|
|
endpoint = kwargs.get('smc_url') or \
|
|
_get_endpoint(_ksclient, **ep_kwargs)
|
|
|
|
auth_ref = _ksclient.auth_ref
|
|
|
|
cli_kwargs = {
|
|
'token': token,
|
|
'insecure': kwargs.get('insecure'),
|
|
'timeout': kwargs.get('timeout'),
|
|
'ca_file': kwargs.get('ca_file'),
|
|
'cert_file': kwargs.get('cert_file'),
|
|
'key_file': kwargs.get('key_file'),
|
|
'auth_ref': auth_ref,
|
|
'auth_url': kwargs.get('os_auth_url'),
|
|
}
|
|
|
|
return Client(api_version, endpoint, **cli_kwargs)
|
|
|
|
|
|
def Client(version, *args, **kwargs):
|
|
module = utils.import_versioned_module(version, 'client')
|
|
client_class = module.Client
|
|
return client_class(*args, **kwargs)
|