mirror of https://github.com/jumpserver/jumpserver
Remote ansible_api file
parent
6015f2423b
commit
eb5a9dd20f
|
@ -2,48 +2,41 @@
|
|||
# from __future__ import unicode_literals, print_function
|
||||
|
||||
import os
|
||||
import json
|
||||
import logging
|
||||
import traceback
|
||||
import ansible.constants as default_config
|
||||
from collections import namedtuple
|
||||
|
||||
from uuid import uuid4
|
||||
from django.utils import timezone
|
||||
from ansible.executor.task_queue_manager import TaskQueueManager
|
||||
from ansible.inventory import Inventory, Host, Group
|
||||
from ansible.vars import VariableManager
|
||||
from ansible.parsing.dataloader import DataLoader
|
||||
from ansible.executor.playbook_executor import PlaybookExecutor
|
||||
from ansible.utils.display import Display
|
||||
from ansible.playbook.play import Play
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
import ansible.constants as C
|
||||
from ansible.utils.vars import load_extra_vars
|
||||
from ansible.utils.vars import load_options_vars
|
||||
|
||||
from ..models import TaskRecord, AnsiblePlay, AnsibleTask, AnsibleHostResult
|
||||
from .inventory import JMSInventory
|
||||
from common.utils import get_logger
|
||||
|
||||
|
||||
__all__ = ["ADHocRunner", "Options"]
|
||||
|
||||
C.HOST_KEY_CHECKING = False
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
logger = get_logger(__name__)
|
||||
|
||||
|
||||
class AnsibleError(StandardError):
|
||||
pass
|
||||
|
||||
|
||||
class BasicResultCallback(CallbackBase):
|
||||
class AdHocResultCallback(CallbackBase):
|
||||
"""
|
||||
Custom Callback
|
||||
"""
|
||||
def __init__(self, display=None):
|
||||
self.result_q = dict(contacted={}, dark={})
|
||||
super(BasicResultCallback, self).__init__(display)
|
||||
super(AdHocResultCallback, self).__init__(display)
|
||||
|
||||
def gather_result(self, n, res):
|
||||
self.result_q[n].update({res._host.name: res._result})
|
||||
|
@ -67,7 +60,7 @@ class BasicResultCallback(CallbackBase):
|
|||
pass
|
||||
|
||||
|
||||
class PlaybookCallBack(CallbackBase):
|
||||
class PlaybookResultCallBack(CallbackBase):
|
||||
"""
|
||||
Custom callback model for handlering the output data of
|
||||
execute playbook file,
|
||||
|
@ -79,7 +72,7 @@ class PlaybookCallBack(CallbackBase):
|
|||
CALLBACK_NAME = 'Dict'
|
||||
|
||||
def __init__(self, display=None):
|
||||
super(PlaybookCallBack, self).__init__(display)
|
||||
super(PlaybookResultCallBack, self).__init__(display)
|
||||
self.results = []
|
||||
self.output = ""
|
||||
self.item_results = {} # {"host": []}
|
||||
|
@ -163,151 +156,16 @@ class PlaybookCallBack(CallbackBase):
|
|||
self.gather_item_result(res)
|
||||
|
||||
|
||||
class CallbackModule(CallbackBase):
|
||||
"""处理和分析Ansible运行结果,并保存数据.
|
||||
"""
|
||||
CALLBACK_VERSION = 2.0
|
||||
CALLBACK_TYPE = 'stdout'
|
||||
CALLBACK_NAME = 'json'
|
||||
|
||||
def __init__(self, tasker_id, display=None):
|
||||
super(CallbackModule, self).__init__(display)
|
||||
self.results = []
|
||||
self.output = {}
|
||||
self.tasker_id = tasker_id
|
||||
|
||||
def _new_play(self, play):
|
||||
"""将Play保持到数据里面
|
||||
"""
|
||||
ret = {
|
||||
'tasker': self.tasker_id,
|
||||
'name': play.name,
|
||||
'uuid': str(play._uuid),
|
||||
'tasks': []
|
||||
}
|
||||
|
||||
try:
|
||||
tasker = TaskRecord.objects.get(uuid=self.tasker_id)
|
||||
play = AnsiblePlay(tasker, name=ret['name'], uuid=ret['uuid'])
|
||||
play.save()
|
||||
except Exception as e:
|
||||
traceback.print_exc()
|
||||
logger.error("Save ansible play uuid to database error!, %s" % e.message)
|
||||
|
||||
return ret
|
||||
|
||||
def _new_task(self, task):
|
||||
"""将Task保持到数据库里,需要和Play进行关联
|
||||
"""
|
||||
ret = {
|
||||
'name': task.name,
|
||||
'uuid': str(task._uuid),
|
||||
'failed': {},
|
||||
'unreachable': {},
|
||||
'skipped': {},
|
||||
'no_hosts': {},
|
||||
'success': {}
|
||||
}
|
||||
|
||||
try:
|
||||
play = AnsiblePlay.objects.get(uuid=self.__play_uuid)
|
||||
task = AnsibleTask(play=play, uuid=ret['uuid'], name=ret['name'])
|
||||
task.save()
|
||||
except Exception as e:
|
||||
logger.error("Save ansible task uuid to database error!, %s" % e.message)
|
||||
|
||||
return ret
|
||||
|
||||
@property
|
||||
def __task_uuid(self):
|
||||
return self.results[-1]['tasks'][-1]['uuid']
|
||||
|
||||
@property
|
||||
def __play_uuid(self):
|
||||
return self.results[-1]['uuid']
|
||||
|
||||
def save_task_result(self, result, status):
|
||||
try:
|
||||
task = AnsibleTask.objects.get(uuid=self.__task_uuid)
|
||||
host_result = AnsibleHostResult(task=task, name=result._host)
|
||||
if status == "failed":
|
||||
host_result.failed = json.dumps(result._result)
|
||||
elif status == "unreachable":
|
||||
host_result.unreachable = json.dumps(result._result)
|
||||
elif status == "skipped":
|
||||
host_result.skipped = json.dumps(result._result)
|
||||
elif status == "success":
|
||||
host_result.success = json.dumps(result._result)
|
||||
else:
|
||||
logger.error("No such status(failed|unreachable|skipped|success), please check!")
|
||||
host_result.save()
|
||||
except Exception as e:
|
||||
logger.error("Save Ansible host result to database error!, %s" % e.message)
|
||||
|
||||
@staticmethod
|
||||
def save_no_host_result(task):
|
||||
try:
|
||||
task = AnsibleTask.objects.get(uuid=task._uuid)
|
||||
host_result = AnsibleHostResult(task=task, no_host="no host to run this task")
|
||||
host_result.save()
|
||||
except Exception as e:
|
||||
logger.error("Save Ansible host result to database error!, %s" % e.message)
|
||||
|
||||
def v2_runner_on_failed(self, result, ignore_errors=False):
|
||||
self.save_task_result(result, "failed")
|
||||
host = result._host
|
||||
self.results[-1]['tasks'][-1]['failed'][host.name] = result._result
|
||||
|
||||
def v2_runner_on_unreachable(self, result):
|
||||
self.save_task_result(result, "unreachable")
|
||||
host = result._host
|
||||
self.results[-1]['tasks'][-1]['unreachable'][host.name] = result._result
|
||||
|
||||
def v2_runner_on_skipped(self, result):
|
||||
self.save_task_result(result, "skipped")
|
||||
host = result._host
|
||||
self.results[-1]['tasks'][-1]['skipped'][host.name] = result._result
|
||||
|
||||
def v2_runner_on_no_hosts(self, task):
|
||||
self.save_no_host_result(task)
|
||||
self.results[-1]['tasks'][-1]['no_hosts']['msg'] = "no host to run this task"
|
||||
|
||||
def v2_runner_on_ok(self, result):
|
||||
self.save_task_result(result, "success")
|
||||
host = result._host
|
||||
self.results[-1]['tasks'][-1]['success'][host.name] = result._result
|
||||
|
||||
def v2_playbook_on_play_start(self, play):
|
||||
self.results.append(self._new_play(play))
|
||||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
self.results[-1]['tasks'].append(self._new_task(task))
|
||||
|
||||
def v2_playbook_on_stats(self, stats):
|
||||
"""AdHoc模式下这个钩子不会执行
|
||||
"""
|
||||
hosts = sorted(stats.processed.keys())
|
||||
|
||||
summary = {}
|
||||
for h in hosts:
|
||||
s = stats.summarize(h)
|
||||
summary[h] = s
|
||||
|
||||
self.output['plays'] = self.results
|
||||
self.output['stats'] = summary
|
||||
print("summary: %s", summary)
|
||||
|
||||
|
||||
class PlayBookRunner(object):
|
||||
"""用于执行AnsiblePlaybook的接口.简化Playbook对象的使用.
|
||||
"""
|
||||
用于执行AnsiblePlaybook的接口.简化Playbook对象的使用.
|
||||
"""
|
||||
Options = namedtuple('Options', [
|
||||
'listtags', 'listtasks', 'listhosts', 'syntax', 'connection',
|
||||
'module_path', 'forks', 'remote_user', 'private_key_file', 'timeout',
|
||||
'ssh_common_args', 'ssh_extra_args', 'sftp_extra_args',
|
||||
'scp_extra_args',
|
||||
'become', 'become_method', 'become_user', 'verbosity', 'check',
|
||||
'extra_vars'])
|
||||
'scp_extra_args', 'become', 'become_method', 'become_user',
|
||||
'verbosity', 'check', 'extra_vars'])
|
||||
|
||||
def __init__(self,
|
||||
hosts=None,
|
||||
|
@ -335,7 +193,7 @@ class PlayBookRunner(object):
|
|||
check=False):
|
||||
|
||||
C.RETRY_FILES_ENABLED = False
|
||||
self.callbackmodule = PlaybookCallBack()
|
||||
self.callbackmodule = PlaybookResultCallBack()
|
||||
if playbook_path is None or not os.path.exists(playbook_path):
|
||||
raise AnsibleError(
|
||||
"Not Found the playbook file: %s." % playbook_path)
|
||||
|
@ -407,6 +265,7 @@ class ADHocRunner(object):
|
|||
|
||||
def __init__(self,
|
||||
hosts=C.DEFAULT_HOST_LIST,
|
||||
task_name='Ansible Ad-hoc',
|
||||
module_name=C.DEFAULT_MODULE_NAME, # * command
|
||||
module_args=C.DEFAULT_MODULE_ARGS, # * 'cmd args'
|
||||
forks=C.DEFAULT_FORKS, # 5
|
||||
|
@ -431,7 +290,7 @@ class ADHocRunner(object):
|
|||
self.module_args = module_args
|
||||
self.check_module_args()
|
||||
self.gather_facts = gather_facts
|
||||
self.results_callback = BasicResultCallback()
|
||||
self.results_callback = AdHocResultCallback()
|
||||
self.options = self.Options(
|
||||
connection=connection_type,
|
||||
timeout=timeout,
|
||||
|
@ -453,7 +312,7 @@ class ADHocRunner(object):
|
|||
self.variable_manager.set_inventory(self.inventory)
|
||||
|
||||
self.play_source = dict(
|
||||
name='Ansible Ad-hoc',
|
||||
name=task_name,
|
||||
hosts=self.pattern,
|
||||
gather_facts=self.gather_facts,
|
||||
tasks=[
|
||||
|
@ -496,8 +355,9 @@ class ADHocRunner(object):
|
|||
try:
|
||||
self.runner.run(self.play)
|
||||
except Exception as e:
|
||||
pass
|
||||
logger.warning(e)
|
||||
else:
|
||||
logger.debug(self.results_callback.result_q)
|
||||
return self.results_callback.result_q
|
||||
finally:
|
||||
if self.runner:
|
||||
|
@ -505,6 +365,11 @@ class ADHocRunner(object):
|
|||
if self.loader:
|
||||
self.loader.cleanup_all_tmp_files()
|
||||
|
||||
def clean_result(self):
|
||||
failed = self.results_callback.result_q['dark'].keys()
|
||||
success = self.results_callback.result_q['contacted'].keys()
|
||||
return {'failed': failed, 'success': success}
|
||||
|
||||
|
||||
def test_run():
|
||||
assets = [
|
||||
|
@ -520,5 +385,20 @@ def test_run():
|
|||
ret = hoc.run()
|
||||
print(ret)
|
||||
|
||||
play = PlayBookRunner(assets, playbook_path='/tmp/some.yml')
|
||||
"""
|
||||
# /tmp/some.yml
|
||||
---
|
||||
- name: Test the plabybook API.
|
||||
hosts: all
|
||||
remote_user: root
|
||||
gather_facts: yes
|
||||
tasks:
|
||||
- name: exec uptime
|
||||
shell: uptime
|
||||
"""
|
||||
play.run()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_run()
|
||||
|
|
|
@ -0,0 +1,132 @@
|
|||
# ~*~ coding: utf-8 ~*~
|
||||
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
|
||||
|
||||
class AdHocResultCallback(CallbackBase):
|
||||
"""
|
||||
Custom Callback
|
||||
"""
|
||||
def __init__(self, display=None):
|
||||
self.result_q = dict(contacted={}, dark={})
|
||||
super(AdHocResultCallback, self).__init__(display)
|
||||
|
||||
def gather_result(self, n, res):
|
||||
self.result_q[n].update({res._host.name: res._result})
|
||||
|
||||
def v2_runner_on_ok(self, result):
|
||||
self.gather_result("contacted", result)
|
||||
|
||||
def v2_runner_on_failed(self, result, ignore_errors=False):
|
||||
self.gather_result("dark", result)
|
||||
|
||||
def v2_runner_on_unreachable(self, result):
|
||||
self.gather_result("dark", result)
|
||||
|
||||
def v2_runner_on_skipped(self, result):
|
||||
self.gather_result("dark", result)
|
||||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
pass
|
||||
|
||||
def v2_playbook_on_play_start(self, play):
|
||||
pass
|
||||
|
||||
|
||||
class PlaybookResultCallBack(CallbackBase):
|
||||
"""
|
||||
Custom callback model for handlering the output data of
|
||||
execute playbook file,
|
||||
Base on the build-in callback plugins of ansible which named `json`.
|
||||
"""
|
||||
|
||||
CALLBACK_VERSION = 2.0
|
||||
CALLBACK_TYPE = 'stdout'
|
||||
CALLBACK_NAME = 'Dict'
|
||||
|
||||
def __init__(self, display=None):
|
||||
super(PlaybookResultCallBack, self).__init__(display)
|
||||
self.results = []
|
||||
self.output = ""
|
||||
self.item_results = {} # {"host": []}
|
||||
|
||||
def _new_play(self, play):
|
||||
return {
|
||||
'play': {
|
||||
'name': play.name,
|
||||
'id': str(play._uuid)
|
||||
},
|
||||
'tasks': []
|
||||
}
|
||||
|
||||
def _new_task(self, task):
|
||||
return {
|
||||
'task': {
|
||||
'name': task.get_name(),
|
||||
},
|
||||
'hosts': {}
|
||||
}
|
||||
|
||||
def v2_playbook_on_no_hosts_matched(self):
|
||||
self.output = "skipping: No match hosts."
|
||||
|
||||
def v2_playbook_on_no_hosts_remaining(self):
|
||||
pass
|
||||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
self.results[-1]['tasks'].append(self._new_task(task))
|
||||
|
||||
def v2_playbook_on_play_start(self, play):
|
||||
self.results.append(self._new_play(play))
|
||||
|
||||
def v2_playbook_on_stats(self, stats):
|
||||
hosts = sorted(stats.processed.keys())
|
||||
summary = {}
|
||||
for h in hosts:
|
||||
s = stats.summarize(h)
|
||||
summary[h] = s
|
||||
|
||||
if self.output:
|
||||
pass
|
||||
else:
|
||||
self.output = {
|
||||
'plays': self.results,
|
||||
'stats': summary
|
||||
}
|
||||
|
||||
def gather_result(self, res):
|
||||
if res._task.loop and "results" in res._result and res._host.name in self.item_results:
|
||||
res._result.update({"results": self.item_results[res._host.name]})
|
||||
del self.item_results[res._host.name]
|
||||
|
||||
self.results[-1]['tasks'][-1]['hosts'][res._host.name] = res._result
|
||||
|
||||
def v2_runner_on_ok(self, res, **kwargs):
|
||||
if "ansible_facts" in res._result:
|
||||
del res._result["ansible_facts"]
|
||||
|
||||
self.gather_result(res)
|
||||
|
||||
def v2_runner_on_failed(self, res, **kwargs):
|
||||
self.gather_result(res)
|
||||
|
||||
def v2_runner_on_unreachable(self, res, **kwargs):
|
||||
self.gather_result(res)
|
||||
|
||||
def v2_runner_on_skipped(self, res, **kwargs):
|
||||
self.gather_result(res)
|
||||
|
||||
def gather_item_result(self, res):
|
||||
self.item_results.setdefault(res._host.name, []).append(res._result)
|
||||
|
||||
def v2_runner_item_on_ok(self, res):
|
||||
self.gather_item_result(res)
|
||||
|
||||
def v2_runner_item_on_failed(self, res):
|
||||
self.gather_item_result(res)
|
||||
|
||||
def v2_runner_item_on_skipped(self, res):
|
||||
self.gather_item_result(res)
|
||||
|
||||
|
||||
|
|
@ -1,2 +1,280 @@
|
|||
# ~*~ coding: utf-8 ~*~
|
||||
|
||||
# ~*~ coding: utf-8 ~*~
|
||||
# from __future__ import unicode_literals, print_function
|
||||
|
||||
import os
|
||||
from collections import namedtuple
|
||||
|
||||
from ansible.executor.task_queue_manager import TaskQueueManager
|
||||
from ansible.vars import VariableManager
|
||||
from ansible.parsing.dataloader import DataLoader
|
||||
from ansible.executor.playbook_executor import PlaybookExecutor
|
||||
from ansible.playbook.play import Play
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
import ansible.constants as C
|
||||
from ansible.utils.vars import load_extra_vars
|
||||
from ansible.utils.vars import load_options_vars
|
||||
|
||||
from .inventory import JMSInventory
|
||||
from .callback import AdHocResultCallback, PlaybookResultCallBack
|
||||
from common.utils import get_logger
|
||||
|
||||
|
||||
__all__ = ["ADHocRunner", "Options"]
|
||||
|
||||
C.HOST_KEY_CHECKING = False
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
||||
|
||||
class AnsibleError(StandardError):
|
||||
pass
|
||||
|
||||
|
||||
class PlayBookRunner(object):
|
||||
"""
|
||||
用于执行AnsiblePlaybook的接口.简化Playbook对象的使用.
|
||||
"""
|
||||
Options = namedtuple('Options', [
|
||||
'listtags', 'listtasks', 'listhosts', 'syntax', 'connection',
|
||||
'module_path', 'forks', 'remote_user', 'private_key_file', 'timeout',
|
||||
'ssh_common_args', 'ssh_extra_args', 'sftp_extra_args',
|
||||
'scp_extra_args', 'become', 'become_method', 'become_user',
|
||||
'verbosity', 'check', 'extra_vars'])
|
||||
|
||||
def __init__(self,
|
||||
hosts=None,
|
||||
playbook_path=None,
|
||||
forks=C.DEFAULT_FORKS,
|
||||
listtags=False,
|
||||
listtasks=False,
|
||||
listhosts=False,
|
||||
syntax=False,
|
||||
module_path=None,
|
||||
remote_user='root',
|
||||
timeout=C.DEFAULT_TIMEOUT,
|
||||
ssh_common_args=None,
|
||||
ssh_extra_args=None,
|
||||
sftp_extra_args=None,
|
||||
scp_extra_args=None,
|
||||
become=True,
|
||||
become_method=None,
|
||||
become_user="root",
|
||||
verbosity=None,
|
||||
extra_vars=None,
|
||||
connection_type="ssh",
|
||||
passwords=None,
|
||||
private_key_file=None,
|
||||
check=False):
|
||||
|
||||
C.RETRY_FILES_ENABLED = False
|
||||
self.callbackmodule = PlaybookResultCallBack()
|
||||
if playbook_path is None or not os.path.exists(playbook_path):
|
||||
raise AnsibleError(
|
||||
"Not Found the playbook file: %s." % playbook_path)
|
||||
self.playbook_path = playbook_path
|
||||
self.loader = DataLoader()
|
||||
self.variable_manager = VariableManager()
|
||||
self.passwords = passwords or {}
|
||||
self.inventory = JMSInventory(hosts)
|
||||
|
||||
self.options = self.Options(
|
||||
listtags=listtags,
|
||||
listtasks=listtasks,
|
||||
listhosts=listhosts,
|
||||
syntax=syntax,
|
||||
timeout=timeout,
|
||||
connection=connection_type,
|
||||
module_path=module_path,
|
||||
forks=forks,
|
||||
remote_user=remote_user,
|
||||
private_key_file=private_key_file,
|
||||
ssh_common_args=ssh_common_args or "",
|
||||
ssh_extra_args=ssh_extra_args or "",
|
||||
sftp_extra_args=sftp_extra_args,
|
||||
scp_extra_args=scp_extra_args,
|
||||
become=become,
|
||||
become_method=become_method,
|
||||
become_user=become_user,
|
||||
verbosity=verbosity,
|
||||
extra_vars=extra_vars or [],
|
||||
check=check
|
||||
)
|
||||
|
||||
self.variable_manager.extra_vars = load_extra_vars(loader=self.loader,
|
||||
options=self.options)
|
||||
self.variable_manager.options_vars = load_options_vars(self.options)
|
||||
|
||||
self.variable_manager.set_inventory(self.inventory)
|
||||
|
||||
# 初始化playbook的executor
|
||||
self.runner = PlaybookExecutor(
|
||||
playbooks=[self.playbook_path],
|
||||
inventory=self.inventory,
|
||||
variable_manager=self.variable_manager,
|
||||
loader=self.loader,
|
||||
options=self.options,
|
||||
passwords=self.passwords)
|
||||
|
||||
if self.runner._tqm:
|
||||
self.runner._tqm._stdout_callback = self.callbackmodule
|
||||
|
||||
def run(self):
|
||||
if not self.inventory.list_hosts('all'):
|
||||
raise AnsibleError('Inventory is empty')
|
||||
self.runner.run()
|
||||
self.runner._tqm.cleanup()
|
||||
return self.callbackmodule.output
|
||||
|
||||
|
||||
class ADHocRunner(object):
|
||||
"""
|
||||
ADHoc接口
|
||||
"""
|
||||
Options = namedtuple("Options", [
|
||||
'connection', 'module_path', 'private_key_file', "remote_user",
|
||||
'timeout', 'forks', 'become', 'become_method', 'become_user',
|
||||
'check', 'extra_vars',
|
||||
]
|
||||
)
|
||||
|
||||
def __init__(self,
|
||||
hosts=C.DEFAULT_HOST_LIST,
|
||||
task_name='Ansible Ad-hoc',
|
||||
module_name=C.DEFAULT_MODULE_NAME, # * command
|
||||
module_args=C.DEFAULT_MODULE_ARGS, # * 'cmd args'
|
||||
forks=C.DEFAULT_FORKS, # 5
|
||||
timeout=C.DEFAULT_TIMEOUT, # SSH timeout = 10s
|
||||
pattern="all", # all
|
||||
remote_user=C.DEFAULT_REMOTE_USER, # root
|
||||
module_path=None, # dirs of custome modules
|
||||
connection_type="smart",
|
||||
become=None,
|
||||
become_method=None,
|
||||
become_user=None,
|
||||
check=False,
|
||||
passwords=None,
|
||||
extra_vars=None,
|
||||
private_key_file=None,
|
||||
gather_facts='no'):
|
||||
|
||||
self.pattern = pattern
|
||||
self.variable_manager = VariableManager()
|
||||
self.loader = DataLoader()
|
||||
self.module_name = module_name
|
||||
self.module_args = module_args
|
||||
self.check_module_args()
|
||||
self.gather_facts = gather_facts
|
||||
self.results_callback = AdHocResultCallback()
|
||||
self.options = self.Options(
|
||||
connection=connection_type,
|
||||
timeout=timeout,
|
||||
module_path=module_path,
|
||||
forks=forks,
|
||||
become=become,
|
||||
become_method=become_method,
|
||||
become_user=become_user,
|
||||
check=check,
|
||||
remote_user=remote_user,
|
||||
extra_vars=extra_vars or [],
|
||||
private_key_file=private_key_file,
|
||||
)
|
||||
|
||||
self.variable_manager.extra_vars = load_extra_vars(self.loader, options=self.options)
|
||||
self.variable_manager.options_vars = load_options_vars(self.options)
|
||||
self.passwords = passwords or {}
|
||||
self.inventory = JMSInventory(hosts)
|
||||
self.variable_manager.set_inventory(self.inventory)
|
||||
|
||||
self.play_source = dict(
|
||||
name=task_name,
|
||||
hosts=self.pattern,
|
||||
gather_facts=self.gather_facts,
|
||||
tasks=[
|
||||
dict(action=dict(
|
||||
module=self.module_name,
|
||||
args=self.module_args,
|
||||
)
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
self.play = Play().load(
|
||||
self.play_source,
|
||||
variable_manager=self.variable_manager,
|
||||
loader=self.loader,
|
||||
)
|
||||
|
||||
self.runner = TaskQueueManager(
|
||||
inventory=self.inventory,
|
||||
variable_manager=self.variable_manager,
|
||||
loader=self.loader,
|
||||
options=self.options,
|
||||
passwords=self.passwords,
|
||||
stdout_callback=self.results_callback,
|
||||
)
|
||||
|
||||
def check_module_args(self):
|
||||
if self.module_name in C.MODULE_REQUIRE_ARGS and not self.module_args:
|
||||
err = "No argument passed to '%s' module." % self.module_name
|
||||
raise AnsibleError(err)
|
||||
|
||||
def run(self):
|
||||
if not self.inventory.list_hosts("all"):
|
||||
raise AnsibleError("Inventory is empty.")
|
||||
|
||||
if not self.inventory.list_hosts(self.pattern):
|
||||
raise AnsibleError(
|
||||
"pattern: %s dose not match any hosts." % self.pattern)
|
||||
|
||||
try:
|
||||
self.runner.run(self.play)
|
||||
except Exception as e:
|
||||
logger.warning(e)
|
||||
else:
|
||||
logger.debug(self.results_callback.result_q)
|
||||
return self.results_callback.result_q
|
||||
finally:
|
||||
if self.runner:
|
||||
self.runner.cleanup()
|
||||
if self.loader:
|
||||
self.loader.cleanup_all_tmp_files()
|
||||
|
||||
def clean_result(self):
|
||||
failed = self.results_callback.result_q['dark'].keys()
|
||||
success = self.results_callback.result_q['contacted'].keys()
|
||||
return {'failed': failed, 'success': success}
|
||||
|
||||
|
||||
def test_run():
|
||||
assets = [
|
||||
{
|
||||
"hostname": "192.168.152.129",
|
||||
"ip": "192.168.152.129",
|
||||
"port": 22,
|
||||
"username": "root",
|
||||
"password": "redhat",
|
||||
},
|
||||
]
|
||||
hoc = ADHocRunner(module_name='shell', module_args='ls', hosts=assets)
|
||||
ret = hoc.run()
|
||||
print(ret)
|
||||
|
||||
play = PlayBookRunner(assets, playbook_path='/tmp/some.yml')
|
||||
"""
|
||||
# /tmp/some.yml
|
||||
---
|
||||
- name: Test the plabybook API.
|
||||
hosts: all
|
||||
remote_user: root
|
||||
gather_facts: yes
|
||||
tasks:
|
||||
- name: exec uptime
|
||||
shell: uptime
|
||||
"""
|
||||
play.run()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_run()
|
||||
|
|
Loading…
Reference in New Issue