|
|
|
@ -31,6 +31,8 @@ from ansible.utils.path import makedirs_safe
|
|
|
|
|
Plugin = namedtuple('Plugin', 'name type')
|
|
|
|
|
Setting = namedtuple('Setting', 'name value origin type')
|
|
|
|
|
|
|
|
|
|
INTERNAL_DEFS = {'lookup': ('_terms',)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# FIXME: see if we can unify in module_utils with similar function used by argspec
|
|
|
|
|
def ensure_type(value, value_type, origin=None):
|
|
|
|
@ -219,7 +221,7 @@ class ConfigManager(object):
|
|
|
|
|
with open(cfile, 'rb') as f:
|
|
|
|
|
try:
|
|
|
|
|
cfg_text = to_text(f.read(), errors='surrogate_or_strict')
|
|
|
|
|
except UnicodeError:
|
|
|
|
|
except UnicodeError as e:
|
|
|
|
|
raise AnsibleOptionsError("Error reading config file(%s) because the config file was not utf8 encoded: %s" % (cfile, to_native(e)))
|
|
|
|
|
try:
|
|
|
|
|
if PY3:
|
|
|
|
@ -240,12 +242,12 @@ class ConfigManager(object):
|
|
|
|
|
''' Load YAML Config Files in order, check merge flags, keep origin of settings'''
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def get_plugin_options(self, plugin_type, name, keys=None, variables=None):
|
|
|
|
|
def get_plugin_options(self, plugin_type, name, keys=None, variables=None, direct=None):
|
|
|
|
|
|
|
|
|
|
options = {}
|
|
|
|
|
defs = self.get_configuration_definitions(plugin_type, name)
|
|
|
|
|
for option in defs:
|
|
|
|
|
options[option] = self.get_config_value(option, plugin_type=plugin_type, plugin_name=name, keys=keys, variables=variables)
|
|
|
|
|
options[option] = self.get_config_value(option, plugin_type=plugin_type, plugin_name=name, keys=keys, variables=variables, direct=direct)
|
|
|
|
|
|
|
|
|
|
return options
|
|
|
|
|
|
|
|
|
@ -289,17 +291,17 @@ class ConfigManager(object):
|
|
|
|
|
|
|
|
|
|
return value, origin
|
|
|
|
|
|
|
|
|
|
def get_config_value(self, config, cfile=None, plugin_type=None, plugin_name=None, keys=None, variables=None):
|
|
|
|
|
def get_config_value(self, config, cfile=None, plugin_type=None, plugin_name=None, keys=None, variables=None, direct=None):
|
|
|
|
|
''' wrapper '''
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
value, _drop = self.get_config_value_and_origin(config, cfile=cfile, plugin_type=plugin_type, plugin_name=plugin_name,
|
|
|
|
|
keys=keys, variables=variables)
|
|
|
|
|
keys=keys, variables=variables, direct=direct)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
raise AnsibleError("Invalid settings supplied for %s: %s" % (config, to_native(e)))
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
def get_config_value_and_origin(self, config, cfile=None, plugin_type=None, plugin_name=None, keys=None, variables=None):
|
|
|
|
|
def get_config_value_and_origin(self, config, cfile=None, plugin_type=None, plugin_name=None, keys=None, variables=None, direct=None):
|
|
|
|
|
''' Given a config key figure out the actual value and report on the origin of the settings '''
|
|
|
|
|
|
|
|
|
|
if cfile is None:
|
|
|
|
@ -318,60 +320,68 @@ class ConfigManager(object):
|
|
|
|
|
defs = self._plugins[plugin_type][plugin_name]
|
|
|
|
|
|
|
|
|
|
if config in defs:
|
|
|
|
|
# Use 'variable overrides' if present, highest precedence, but only present when querying running play
|
|
|
|
|
if variables and defs[config].get('vars'):
|
|
|
|
|
value, origin = self._loop_entries(variables, defs[config]['vars'])
|
|
|
|
|
origin = 'var: %s' % origin
|
|
|
|
|
|
|
|
|
|
# use playbook keywords if you have em
|
|
|
|
|
if value is None and keys:
|
|
|
|
|
value, origin = self._loop_entries(keys, defs[config]['keywords'])
|
|
|
|
|
origin = 'keyword: %s' % origin
|
|
|
|
|
|
|
|
|
|
# env vars are next precedence
|
|
|
|
|
if value is None and defs[config].get('env'):
|
|
|
|
|
value, origin = self._loop_entries(os.environ, defs[config]['env'])
|
|
|
|
|
origin = 'env: %s' % origin
|
|
|
|
|
|
|
|
|
|
# try config file entries next, if we have one
|
|
|
|
|
if self._parsers.get(cfile, None) is None:
|
|
|
|
|
self._parse_config_file(cfile)
|
|
|
|
|
|
|
|
|
|
if value is None and cfile is not None:
|
|
|
|
|
ftype = get_config_type(cfile)
|
|
|
|
|
if ftype and defs[config].get(ftype):
|
|
|
|
|
if ftype == 'ini':
|
|
|
|
|
# load from ini config
|
|
|
|
|
try: # FIXME: generalize _loop_entries to allow for files also, most of this code is dupe
|
|
|
|
|
for ini_entry in defs[config]['ini']:
|
|
|
|
|
temp_value = get_ini_config_value(self._parsers[cfile], ini_entry)
|
|
|
|
|
if temp_value is not None:
|
|
|
|
|
value = temp_value
|
|
|
|
|
origin = cfile
|
|
|
|
|
if 'deprecated' in ini_entry:
|
|
|
|
|
self.DEPRECATED.append(('[%s]%s' % (ini_entry['section'], ini_entry['key']), ini_entry['deprecated']))
|
|
|
|
|
except Exception as e:
|
|
|
|
|
sys.stderr.write("Error while loading ini config %s: %s" % (cfile, to_native(e)))
|
|
|
|
|
elif ftype == 'yaml':
|
|
|
|
|
# FIXME: implement, also , break down key from defs (. notation???)
|
|
|
|
|
origin = cfile
|
|
|
|
|
|
|
|
|
|
# set default if we got here w/o a value
|
|
|
|
|
if value is None:
|
|
|
|
|
if defs[config].get('required', False):
|
|
|
|
|
entry = ''
|
|
|
|
|
if plugin_type:
|
|
|
|
|
entry += 'plugin_type: %s ' % plugin_type
|
|
|
|
|
if plugin_name:
|
|
|
|
|
entry += 'plugin: %s ' % plugin_name
|
|
|
|
|
entry += 'setting: %s ' % config
|
|
|
|
|
raise AnsibleError("No setting was provided for required configuration %s" % (entry))
|
|
|
|
|
else:
|
|
|
|
|
value = defs[config].get('default')
|
|
|
|
|
origin = 'default'
|
|
|
|
|
# skip typing as this is a temlated default that will be resolved later in constants, which has needed vars
|
|
|
|
|
if plugin_type is None and isinstance(value, string_types) and (value.startswith('{{') and value.endswith('}}')):
|
|
|
|
|
return value, origin
|
|
|
|
|
|
|
|
|
|
# direct setting via plugin arguments, can set to None so we bypass rest of processing/defaults
|
|
|
|
|
if direct and config in direct:
|
|
|
|
|
value = direct[config]
|
|
|
|
|
origin = 'Direct'
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
# Use 'variable overrides' if present, highest precedence, but only present when querying running play
|
|
|
|
|
if variables and defs[config].get('vars'):
|
|
|
|
|
value, origin = self._loop_entries(variables, defs[config]['vars'])
|
|
|
|
|
origin = 'var: %s' % origin
|
|
|
|
|
|
|
|
|
|
# use playbook keywords if you have em
|
|
|
|
|
if value is None and keys and defs[config].get('keywords'):
|
|
|
|
|
value, origin = self._loop_entries(keys, defs[config]['keywords'])
|
|
|
|
|
origin = 'keyword: %s' % origin
|
|
|
|
|
|
|
|
|
|
# env vars are next precedence
|
|
|
|
|
if value is None and defs[config].get('env'):
|
|
|
|
|
value, origin = self._loop_entries(os.environ, defs[config]['env'])
|
|
|
|
|
origin = 'env: %s' % origin
|
|
|
|
|
|
|
|
|
|
# try config file entries next, if we have one
|
|
|
|
|
if self._parsers.get(cfile, None) is None:
|
|
|
|
|
self._parse_config_file(cfile)
|
|
|
|
|
|
|
|
|
|
if value is None and cfile is not None:
|
|
|
|
|
ftype = get_config_type(cfile)
|
|
|
|
|
if ftype and defs[config].get(ftype):
|
|
|
|
|
if ftype == 'ini':
|
|
|
|
|
# load from ini config
|
|
|
|
|
try: # FIXME: generalize _loop_entries to allow for files also, most of this code is dupe
|
|
|
|
|
for ini_entry in defs[config]['ini']:
|
|
|
|
|
temp_value = get_ini_config_value(self._parsers[cfile], ini_entry)
|
|
|
|
|
if temp_value is not None:
|
|
|
|
|
value = temp_value
|
|
|
|
|
origin = cfile
|
|
|
|
|
if 'deprecated' in ini_entry:
|
|
|
|
|
self.DEPRECATED.append(('[%s]%s' % (ini_entry['section'], ini_entry['key']), ini_entry['deprecated']))
|
|
|
|
|
except Exception as e:
|
|
|
|
|
sys.stderr.write("Error while loading ini config %s: %s" % (cfile, to_native(e)))
|
|
|
|
|
elif ftype == 'yaml':
|
|
|
|
|
# FIXME: implement, also , break down key from defs (. notation???)
|
|
|
|
|
origin = cfile
|
|
|
|
|
|
|
|
|
|
# set default if we got here w/o a value
|
|
|
|
|
if value is None:
|
|
|
|
|
if defs[config].get('required', False):
|
|
|
|
|
entry = ''
|
|
|
|
|
if plugin_type:
|
|
|
|
|
entry += 'plugin_type: %s ' % plugin_type
|
|
|
|
|
if plugin_name:
|
|
|
|
|
entry += 'plugin: %s ' % plugin_name
|
|
|
|
|
entry += 'setting: %s ' % config
|
|
|
|
|
if not plugin_type or config not in INTERNAL_DEFS.get(plugin_type, {}):
|
|
|
|
|
raise AnsibleError("No setting was provided for required configuration %s" % (entry))
|
|
|
|
|
else:
|
|
|
|
|
value = defs[config].get('default')
|
|
|
|
|
origin = 'default'
|
|
|
|
|
# skip typing as this is a temlated default that will be resolved later in constants, which has needed vars
|
|
|
|
|
if plugin_type is None and isinstance(value, string_types) and (value.startswith('{{') and value.endswith('}}')):
|
|
|
|
|
return value, origin
|
|
|
|
|
|
|
|
|
|
# ensure correct type, can raise exceptoins on mismatched types
|
|
|
|
|
value = ensure_type(value, defs[config].get('type'), origin=origin)
|
|
|
|
|