Files
python-solumclient/solumclient/common/cli_utils.py
arati.mahimane ecf7c78b89 CLI changes for supporting custom language packs
- Added 'solum languagepack build' command.
- Added code to invoke the builder client.

https://review.openstack.org/#/c/103689/11

Change-Id: I0480f074bf409d58a6de1b6e1232f858bd5f80f3
2014-07-22 15:00:14 -05:00

171 lines
6.2 KiB
Python

# Copyright (c) 2014 Rackspace
#
# 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.
import os
from keystoneclient.openstack.common.apiclient import exceptions as ks_exc
from solumclient.builder import client as builder_client
from solumclient import client as solum_client
from solumclient.common import exc
from solumclient.openstack.common.apiclient import exceptions
class CommandsBase(object):
"""Base command parsing class."""
parser = None
solum = None
def __init__(self, parser):
self.parser = parser
self._get_global_flags()
self.parser.add_argument('action',
default='help',
help='Action to perform on resource')
self.parser.add_argument('--os-username',
default=env('OS_USERNAME'),
help='Defaults to env[OS_USERNAME]')
self.parser.add_argument('--os-password',
default=env('OS_PASSWORD'),
help='Defaults to env[OS_PASSWORD]')
self.parser.add_argument('--os-tenant-name',
default=env('OS_TENANT_NAME'),
help='Defaults to env[OS_TENANT_NAME]')
self.parser.add_argument('--os-auth-url',
default=env('OS_AUTH_URL'),
help='Defaults to env[OS_AUTH_URL]')
self.parser.add_argument('--os-auth-token',
default=env('OS_AUTH_TOKEN'),
help='Defaults to env[OS_AUTH_TOKEN]')
self.parser.add_argument('--solum-url',
default=env('SOLUM_URL'),
help='Defaults to env[SOLUM_URL]')
self.parser.add_argument('--solum-api-version',
default=env(
'SOLUM_API_VERSION', default='1'),
help='Defaults to env[SOLUM_API_VERSION] '
'or 1')
action = None
try:
parsed, _ = parser.parse_known_args()
action = parsed.action
except Exception:
# Parser has a habit of doing this when an arg is missing.
self.parser.print_help()
client_args = parsed.__dict__
if not (parsed.os_auth_token and parsed.solum_url):
# Remove arguments that are not to be passed to the client in this
# case.
del client_args['os_auth_token']
if not parsed.os_username:
raise exc.CommandError("You must provide a username via "
"either --os-username or via "
"env[OS_USERNAME]")
if not parsed.os_password:
raise exc.CommandError("You must provide a password via "
"either --os-password or via "
"env[OS_PASSWORD]")
if not parsed.os_tenant_name:
raise exc.CommandError("You must provide a tenant_name via "
"either --os-tenant-name or via "
"env[OS_TENANT_NAME]")
if not parsed.os_auth_url:
raise exc.CommandError("You must provide an auth url via "
"either --os-auth-url or via "
"env[OS_AUTH_URL]")
else:
client_args['endpoint'] = client_args['solum_url']
del client_args['solum_url']
if client_args['action'] == 'build':
self.client = builder_client.get_client(parsed.solum_api_version,
**client_args)
else:
self.client = solum_client.get_client(parsed.solum_api_version,
**client_args)
if action in self._actions:
try:
self.parser.error = self.parser.the_error
self._actions[action]()
except (exceptions.ClientException, ks_exc.ClientException):
# Don't print usage help on functional errors.
raise
except Exception:
self.parser.print_help()
raise
else:
self.help()
raise exceptions.CommandError('"%s" is not a valid action' %
action)
@property
def _actions(self):
"""Action handler."""
return dict((attr, getattr(self, attr))
for attr in dir(self)
if not attr.startswith('_')
and callable(getattr(self, attr)))
def _get_global_flags(self):
"""Get global flags."""
# Good location to add_argument() global options like --verbose
pass
def help(self):
"""Print this help message."""
show_help(self._actions, 'actions')
def show_help(resources, name='targets or nouns'):
"""Help screen."""
print("Available %s:" % name)
for resource in sorted(resources):
commands = resources.get(resource)
docstring = "<%s %s>" % (name.capitalize(), resource)
if commands.__doc__:
docstring = commands.__doc__
print("\t%-20s%s" % (resource, docstring))
def env(*vars, **kwargs):
"""Search for the first defined of possibly many env vars
Returns the first environment variable defined in vars, or
returns the default defined in kwargs.
"""
for v in vars:
value = os.environ.get(v, None)
if value:
return value
return kwargs.get('default', '')