mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Move the rest of the playbook code to use global display
This commit is contained in:
parent
aa4f213cb5
commit
7ecfa072da
3 changed files with 48 additions and 49 deletions
|
@ -39,6 +39,7 @@ from ansible.utils.vars import combine_vars, isidentifier
|
||||||
|
|
||||||
BASE_ATTRIBUTES = {}
|
BASE_ATTRIBUTES = {}
|
||||||
|
|
||||||
|
|
||||||
class Base:
|
class Base:
|
||||||
|
|
||||||
# connection/transport
|
# connection/transport
|
||||||
|
@ -75,13 +76,6 @@ class Base:
|
||||||
# and initialize the base attributes
|
# and initialize the base attributes
|
||||||
self._initialize_base_attributes()
|
self._initialize_base_attributes()
|
||||||
|
|
||||||
try:
|
|
||||||
from __main__ import display
|
|
||||||
self._display = display
|
|
||||||
except ImportError:
|
|
||||||
from ansible.utils.display import Display
|
|
||||||
self._display = Display()
|
|
||||||
|
|
||||||
# The following three functions are used to programatically define data
|
# The following three functions are used to programatically define data
|
||||||
# descriptors (aka properties) for the Attributes of all of the playbook
|
# descriptors (aka properties) for the Attributes of all of the playbook
|
||||||
# objects (tasks, blocks, plays, etc).
|
# objects (tasks, blocks, plays, etc).
|
||||||
|
@ -246,7 +240,8 @@ class Base:
|
||||||
value = getattr(self, name)
|
value = getattr(self, name)
|
||||||
if value is not None:
|
if value is not None:
|
||||||
if attribute.isa == 'string' and isinstance(value, (list, dict)):
|
if attribute.isa == 'string' and isinstance(value, (list, dict)):
|
||||||
raise AnsibleParserError("The field '%s' is supposed to be a string type, however the incoming data structure is a %s" % (name, type(value)), obj=self.get_ds())
|
raise AnsibleParserError("The field '%s' is supposed to be a string type,"
|
||||||
|
" however the incoming data structure is a %s" % (name, type(value)), obj=self.get_ds())
|
||||||
|
|
||||||
def copy(self):
|
def copy(self):
|
||||||
'''
|
'''
|
||||||
|
@ -336,7 +331,8 @@ class Base:
|
||||||
if attribute.listof is not None:
|
if attribute.listof is not None:
|
||||||
for item in value:
|
for item in value:
|
||||||
if not isinstance(item, attribute.listof):
|
if not isinstance(item, attribute.listof):
|
||||||
raise AnsibleParserError("the field '%s' should be a list of %s, but the item '%s' is a %s" % (name, attribute.listof, item, type(item)), obj=self.get_ds())
|
raise AnsibleParserError("the field '%s' should be a list of %s,"
|
||||||
|
" but the item '%s' is a %s" % (name, attribute.listof, item, type(item)), obj=self.get_ds())
|
||||||
elif attribute.required and attribute.listof == string_types:
|
elif attribute.required and attribute.listof == string_types:
|
||||||
if item is None or item.strip() == "":
|
if item is None or item.strip() == "":
|
||||||
raise AnsibleParserError("the field '%s' is required, and cannot have empty values" % (name,), obj=self.get_ds())
|
raise AnsibleParserError("the field '%s' is required, and cannot have empty values" % (name,), obj=self.get_ds())
|
||||||
|
@ -358,10 +354,12 @@ class Base:
|
||||||
setattr(self, name, value)
|
setattr(self, name, value)
|
||||||
|
|
||||||
except (TypeError, ValueError) as e:
|
except (TypeError, ValueError) as e:
|
||||||
raise AnsibleParserError("the field '%s' has an invalid value (%s), and could not be converted to an %s. Error was: %s" % (name, value, attribute.isa, e), obj=self.get_ds())
|
raise AnsibleParserError("the field '%s' has an invalid value (%s), and could not be converted to an %s."
|
||||||
|
" Error was: %s" % (name, value, attribute.isa, e), obj=self.get_ds())
|
||||||
except UndefinedError as e:
|
except UndefinedError as e:
|
||||||
if templar._fail_on_undefined_errors and name != 'name':
|
if templar._fail_on_undefined_errors and name != 'name':
|
||||||
raise AnsibleParserError("the field '%s' has an invalid value, which appears to include a variable that is undefined. The error was: %s" % (name,e), obj=self.get_ds())
|
raise AnsibleParserError("the field '%s' has an invalid value, which appears to include a variable that is undefined."
|
||||||
|
" The error was: %s" % (name,e), obj=self.get_ds())
|
||||||
|
|
||||||
def serialize(self):
|
def serialize(self):
|
||||||
'''
|
'''
|
||||||
|
@ -455,4 +453,3 @@ class Base:
|
||||||
def __setstate__(self, data):
|
def __setstate__(self, data):
|
||||||
self.__init__()
|
self.__init__()
|
||||||
self.deserialize(data)
|
self.deserialize(data)
|
||||||
|
|
||||||
|
|
|
@ -21,21 +21,17 @@ __metaclass__ = type
|
||||||
|
|
||||||
from ansible.compat.six import string_types
|
from ansible.compat.six import string_types
|
||||||
|
|
||||||
from ansible.errors import AnsibleError, AnsibleParserError
|
from ansible.errors import AnsibleParserError
|
||||||
|
|
||||||
from ansible.playbook.attribute import Attribute, FieldAttribute
|
from ansible.playbook.attribute import FieldAttribute
|
||||||
from ansible.playbook.base import Base
|
from ansible.playbook.base import Base
|
||||||
from ansible.playbook.become import Become
|
from ansible.playbook.become import Become
|
||||||
from ansible.playbook.block import Block
|
from ansible.playbook.block import Block
|
||||||
from ansible.playbook.helpers import load_list_of_blocks, load_list_of_roles
|
from ansible.playbook.helpers import load_list_of_blocks, load_list_of_roles
|
||||||
from ansible.playbook.role import Role
|
from ansible.playbook.role import Role
|
||||||
from ansible.playbook.taggable import Taggable
|
from ansible.playbook.taggable import Taggable
|
||||||
from ansible.playbook.task import Task
|
|
||||||
from ansible.vars import preprocess_vars
|
from ansible.vars import preprocess_vars
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['Play']
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from __main__ import display
|
from __main__ import display
|
||||||
display = display
|
display = display
|
||||||
|
@ -44,6 +40,9 @@ except ImportError:
|
||||||
display = Display()
|
display = Display()
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ['Play']
|
||||||
|
|
||||||
|
|
||||||
class Play(Base, Taggable, Become):
|
class Play(Base, Taggable, Become):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -124,7 +123,8 @@ class Play(Base, Taggable, Become):
|
||||||
# this should never happen, but error out with a helpful message
|
# this should never happen, but error out with a helpful message
|
||||||
# to the user if it does...
|
# to the user if it does...
|
||||||
if 'remote_user' in ds:
|
if 'remote_user' in ds:
|
||||||
raise AnsibleParserError("both 'user' and 'remote_user' are set for %s. The use of 'user' is deprecated, and should be removed" % self.get_name(), obj=ds)
|
raise AnsibleParserError("both 'user' and 'remote_user' are set for %s."
|
||||||
|
" The use of 'user' is deprecated, and should be removed" % self.get_name(), obj=ds)
|
||||||
|
|
||||||
ds['remote_user'] = ds['user']
|
ds['remote_user'] = ds['user']
|
||||||
del ds['user']
|
del ds['user']
|
||||||
|
@ -217,7 +217,7 @@ class Play(Base, Taggable, Become):
|
||||||
vars_prompts = []
|
vars_prompts = []
|
||||||
for prompt_data in new_ds:
|
for prompt_data in new_ds:
|
||||||
if 'name' not in prompt_data:
|
if 'name' not in prompt_data:
|
||||||
self._display.deprecated("Using the 'short form' for vars_prompt has been deprecated")
|
display.deprecated("Using the 'short form' for vars_prompt has been deprecated")
|
||||||
for vname, prompt in prompt_data.iteritems():
|
for vname, prompt in prompt_data.iteritems():
|
||||||
vars_prompts.append(dict(
|
vars_prompts.append(dict(
|
||||||
name = vname,
|
name = vname,
|
||||||
|
@ -345,4 +345,3 @@ class Play(Base, Taggable, Become):
|
||||||
new_me.ROLE_CACHE = self.ROLE_CACHE.copy()
|
new_me.ROLE_CACHE = self.ROLE_CACHE.copy()
|
||||||
new_me._included_path = self._included_path
|
new_me._included_path = self._included_path
|
||||||
return new_me
|
return new_me
|
||||||
|
|
||||||
|
|
|
@ -24,12 +24,11 @@ from ansible.compat.six import iteritems, string_types
|
||||||
from ansible.errors import AnsibleError
|
from ansible.errors import AnsibleError
|
||||||
|
|
||||||
from ansible.parsing.mod_args import ModuleArgsParser
|
from ansible.parsing.mod_args import ModuleArgsParser
|
||||||
from ansible.parsing.splitter import parse_kv
|
|
||||||
from ansible.parsing.yaml.objects import AnsibleBaseYAMLObject, AnsibleMapping, AnsibleUnicode
|
from ansible.parsing.yaml.objects import AnsibleBaseYAMLObject, AnsibleMapping, AnsibleUnicode
|
||||||
|
|
||||||
from ansible.plugins import module_loader, lookup_loader
|
from ansible.plugins import lookup_loader
|
||||||
|
|
||||||
from ansible.playbook.attribute import Attribute, FieldAttribute
|
from ansible.playbook.attribute import FieldAttribute
|
||||||
from ansible.playbook.base import Base
|
from ansible.playbook.base import Base
|
||||||
from ansible.playbook.become import Become
|
from ansible.playbook.become import Become
|
||||||
from ansible.playbook.block import Block
|
from ansible.playbook.block import Block
|
||||||
|
@ -37,8 +36,6 @@ from ansible.playbook.conditional import Conditional
|
||||||
from ansible.playbook.role import Role
|
from ansible.playbook.role import Role
|
||||||
from ansible.playbook.taggable import Taggable
|
from ansible.playbook.taggable import Taggable
|
||||||
|
|
||||||
__all__ = ['Task']
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from __main__ import display
|
from __main__ import display
|
||||||
display = display
|
display = display
|
||||||
|
@ -46,6 +43,9 @@ except ImportError:
|
||||||
from ansible.utils.display import Display
|
from ansible.utils.display import Display
|
||||||
display = Display()
|
display = Display()
|
||||||
|
|
||||||
|
__all__ = ['Task']
|
||||||
|
|
||||||
|
|
||||||
class Task(Base, Conditional, Taggable, Become):
|
class Task(Base, Conditional, Taggable, Become):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -174,7 +174,8 @@ class Task(Base, Conditional, Taggable, Become):
|
||||||
if action in ('command', 'shell', 'script'):
|
if action in ('command', 'shell', 'script'):
|
||||||
if 'cmd' in args:
|
if 'cmd' in args:
|
||||||
if args.get('_raw_params', '') != '':
|
if args.get('_raw_params', '') != '':
|
||||||
raise AnsibleError("The 'cmd' argument cannot be used when other raw parameters are specified. Please put everything in one or the other place.", obj=ds)
|
raise AnsibleError("The 'cmd' argument cannot be used when other raw parameters are specified."
|
||||||
|
" Please put everything in one or the other place.", obj=ds)
|
||||||
args['_raw_params'] = args.pop('cmd')
|
args['_raw_params'] = args.pop('cmd')
|
||||||
|
|
||||||
new_ds['action'] = action
|
new_ds['action'] = action
|
||||||
|
@ -204,7 +205,9 @@ class Task(Base, Conditional, Taggable, Become):
|
||||||
# here, and show a deprecation message as we will remove this at
|
# here, and show a deprecation message as we will remove this at
|
||||||
# some point in the future.
|
# some point in the future.
|
||||||
if action == 'include' and k not in self._get_base_attributes() and k not in self.DEPRECATED_ATTRIBUTES:
|
if action == 'include' and k not in self._get_base_attributes() and k not in self.DEPRECATED_ATTRIBUTES:
|
||||||
self._display.deprecated("Specifying include variables at the top-level of the task is deprecated. Please see:\nhttp://docs.ansible.com/ansible/playbooks_roles.html#task-include-files-and-encouraging-reuse\n\nfor currently supported syntax regarding included files and variables")
|
display.deprecated("Specifying include variables at the top-level of the task is deprecated."
|
||||||
|
" Please see:\nhttp://docs.ansible.com/ansible/playbooks_roles.html#task-include-files-and-encouraging-reuse\n\n"
|
||||||
|
" for currently supported syntax regarding included files and variables")
|
||||||
new_ds['vars'][k] = v
|
new_ds['vars'][k] = v
|
||||||
else:
|
else:
|
||||||
new_ds[k] = v
|
new_ds[k] = v
|
||||||
|
@ -249,7 +252,8 @@ class Task(Base, Conditional, Taggable, Become):
|
||||||
|
|
||||||
for env_item in value:
|
for env_item in value:
|
||||||
if isinstance(env_item, (string_types, AnsibleUnicode)) and env_item in templar._available_variables.keys():
|
if isinstance(env_item, (string_types, AnsibleUnicode)) and env_item in templar._available_variables.keys():
|
||||||
self._display.deprecated("Using bare variables for environment is deprecated. Update your playbooks so that the environment value uses the full variable syntax ('{{foo}}')")
|
display.deprecated("Using bare variables for environment is deprecated."
|
||||||
|
" Update your playbooks so that the environment value uses the full variable syntax ('{{foo}}')")
|
||||||
break
|
break
|
||||||
return templar.template(value, convert_bare=True)
|
return templar.template(value, convert_bare=True)
|
||||||
|
|
||||||
|
@ -387,4 +391,3 @@ class Task(Base, Conditional, Taggable, Become):
|
||||||
if parent_environment is not None:
|
if parent_environment is not None:
|
||||||
environment = self._extend_value(environment, parent_environment)
|
environment = self._extend_value(environment, parent_environment)
|
||||||
return environment
|
return environment
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue