refactors eos_template to use network_cli (#20742)

This commit is contained in:
Peter Sprygada 2017-01-27 09:07:42 -05:00 committed by GitHub
parent 7460b748ca
commit 32913c0fdf

View file

@ -15,9 +15,11 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# #
ANSIBLE_METADATA = {'status': ['preview'], ANSIBLE_METADATA = {
'supported_by': 'community', 'status': ['preview'],
'version': '1.0'} 'supported_by': 'community',
'version': '1.0'
}
DOCUMENTATION = """ DOCUMENTATION = """
--- ---
@ -32,8 +34,8 @@ description:
by evaluating the current running-config and only pushing configuration by evaluating the current running-config and only pushing configuration
commands that are not already configured. The config source can commands that are not already configured. The config source can
be a set of commands or a template. be a set of commands or a template.
deprecated: Deprecated in 2.2. Use eos_config instead deprecated: Deprecated in 2.2. Use M(eos_config) instead
extends_documentation_fragment: eos extends_documentation_fragment: eapi
options: options:
src: src:
description: description:
@ -122,15 +124,40 @@ responses:
""" """
import re import re
import ansible.module_utils.eos from ansible.module_utils import eos
from ansible.module_utils import eapi
from ansible.module_utils.network import NetworkModule from ansible.module_utils.local import LocalAnsibleModule
from ansible.module_utils.basic import AnsibleModle
from ansible.module_utils.netcfg import NetworkConfig, dumps from ansible.module_utils.netcfg import NetworkConfig, dumps
from ansible.module_utils.network import NET_TRANSPORT_ARGS, _transitional_argument_spec
def get_config(module): SHARED_LIB = 'eos'
def get_ansible_module():
if SHARED_LIB == 'eos':
return LocalAnsibleModule
return AnsibleModule
def invoke(name, *args, **kwargs):
obj = globals().get(SHARED_LIB)
func = getattr(obj, name)
return func(*args, **kwargs)
load_config = partial(invoke, 'load_config')
get_config = partial(invoke, 'get_config')
def check_args(module):
warnings = list()
if SHARED_LIB == 'eapi':
eapi.check_args(module)
return warnings
def get_current_config(module):
config = module.params.get('config') config = module.params.get('config')
defaults = module.params['include_defaults']
if not config and not module.params['force']: if not config and not module.params['force']:
flags = []
if module.params['include_defaults']:
flags.append('all')
config = module.config.get_config(include_defaults=defaults) config = module.config.get_config(include_defaults=defaults)
return config return config
@ -171,48 +198,53 @@ def main():
config=dict() config=dict()
) )
argument_spec.update(eapi.eapi_argument_spec)
mutually_exclusive = [('config', 'backup'), ('config', 'force')] mutually_exclusive = [('config', 'backup'), ('config', 'force')]
module = NetworkModule(argument_spec=argument_spec, cls = get_ansible_module()
mutually_exclusive=mutually_exclusive,
supports_check_mode=True)
replace = module.params['replace'] module = cls(argument_spec=argument_spec,
mutually_exclusive=mutually_exclusive,
supports_check_mode=True)
commands = list() warnings = check_args(module)
running = None
result = dict(changed=False) result = {'changed': False}
if warnings:
result['warnings'] = warnings
candidate = NetworkConfig(contents=module.params['src'], indent=3) src = module.params['src']
candidate = NetworkConfig(contents=src, indent=3)
if module.params['backup']:
result['__backup__'] = get_config()
if not module.params['force']:
contents = get_current_config(module)
configobj = NetworkConfig(contents=contents, indent=3)
commands = candidate.difference(configobj)
commands = dumps(commands, 'commands').split('\n')
commands = [str(c).strip() for c in commands if c]
else:
commands = [c.strip() for c in str(candidate).split('\n')]
# FIXME not implemented yet!!
if replace: if replace:
if module.params['transport'] == 'cli': if module.params['transport'] == 'cli':
module.fail_json(msg='config replace is only supported over eapi') module.fail_json(msg='config replace is only supported over eapi')
commands = str(candidate).split('\n') commands = str(candidate).split('\n')
else:
contents = get_config(module)
if contents:
running = NetworkConfig(contents=contents, indent=3)
result['_backup'] = contents
if not module.params['force']:
commands = candidate.difference((running or list()))
commands = dumps(commands, 'commands').split('\n')
commands = [str(c) for c in commands if c]
else:
commands = str(candidate).split('\n')
commands = filter_exit(commands)
if commands: if commands:
if not module.check_mode: commands = filter_exit(commands)
response = module.config.load_config(commands, replace=replace, commit = not module.check_mode
commit=True) load_config(commands, commit=commit)
result['responses'] = response
result['changed'] = True result['changed'] = True
result['updates'] = commands result['updates'] = commands
module.exit_json(**result) module.exit_json(**result)
if __name__ == '__main__': if __name__ == '__main__':
SHARED_LIB = 'eapi'
main() main()