/usr/lib/python2.6/site-packages/keystoneauth1/loading
NameSizeModeActions
_plugins/-0755rm
base.py39530644editdlrm
base.pyc46070644editdlrm
cli.py39900644editdlrm
cli.pyc36900644editdlrm
conf.py47770644editdlrm
conf.pyc41860644editdlrm
identity.py61480644editdlrm
identity.pyc66280644editdlrm
opts.py33080644editdlrm
opts.pyc33800644editdlrm
session.py101540644editdlrm
session.pyc94600644editdlrm
__init__.py21320644editdlrm
__init__.pyc13820644editdlrm
Edit: /usr/lib/python2.6/site-packages/keystoneauth1/loading/cli.py (3990B)
# 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 argparse import os from keystoneauth1 import _utils as utils from keystoneauth1.loading import base __all__ = ['register_argparse_arguments', 'load_from_argparse_arguments'] def _register_plugin_argparse_arguments(parser, plugin): for opt in plugin.get_options(): parser.add_argument(*opt.argparse_args, default=opt.argparse_default, metavar=opt.metavar, help=opt.help, dest='os_%s' % opt.dest) @utils.positional() def register_argparse_arguments(parser, argv, default=None): """Register CLI options needed to create a plugin. The function inspects the provided arguments so that it can also register the options required for that specific plugin if available. :param argparse.ArgumentParser: the parser to attach argparse options to. :param list argv: the arguments provided to the appliation. :param str/class default: a default plugin name or a plugin object to use if one isn't specified by the CLI. default: None. :returns: The plugin class that will be loaded or None if not provided. :rtype: :py:class:`keystonauth.auth.BaseAuthPlugin` :raises keystonauth.exceptions.NoMatchingPlugin: if a plugin cannot be created. """ in_parser = argparse.ArgumentParser(add_help=False) env_plugin = os.environ.get('OS_AUTH_TYPE', os.environ.get('OS_AUTH_PLUGIN', default)) for p in (in_parser, parser): p.add_argument('--os-auth-type', '--os-auth-plugin', metavar='', default=env_plugin, help='Authentication type to use') options, _args = in_parser.parse_known_args(argv) if not options.os_auth_type: return None if isinstance(options.os_auth_type, base.BaseLoader): msg = 'Default Authentication options' plugin = options.os_auth_type else: msg = 'Options specific to the %s plugin.' % options.os_auth_type plugin = base.get_plugin_loader(options.os_auth_type) group = parser.add_argument_group('Authentication Options', msg) _register_plugin_argparse_arguments(group, plugin) return plugin def load_from_argparse_arguments(namespace, **kwargs): """Retrieve the created plugin from the completed argparse results. Loads and creates the auth plugin from the information parsed from the command line by argparse. :param Namespace namespace: The result from CLI parsing. :returns: An auth plugin, or None if a name is not provided. :rtype: :py:class:`keystonauth.auth.BaseAuthPlugin` :raises keystonauth.exceptions.NoMatchingPlugin: if a plugin cannot be created. """ if not namespace.os_auth_type: return None if isinstance(namespace.os_auth_type, type): plugin = namespace.os_auth_type else: plugin = base.get_plugin_loader(namespace.os_auth_type) plugin_opts = plugin.get_options() for opt in plugin_opts: val = getattr(namespace, 'os_%s' % opt.dest) if val is not None: val = opt.type(val) kwargs.setdefault(opt.dest, val) return plugin.load_from_options(**kwargs)