mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
836 B
26 lines
836 B
from common.utils import get_logger
|
|
from assets.const import AutomationTypes, Connectivity
|
|
from ..base.manager import BasePlaybookManager, PushOrVerifyHostCallbackMixin
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class VerifyAccountManager(PushOrVerifyHostCallbackMixin, BasePlaybookManager):
|
|
need_privilege_account = False
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.host_account_mapper = {}
|
|
|
|
@classmethod
|
|
def method_type(cls):
|
|
return AutomationTypes.verify_account
|
|
|
|
def on_host_success(self, host, result):
|
|
account = self.host_account_mapper.get(host)
|
|
account.set_connectivity(Connectivity.OK)
|
|
|
|
def on_host_error(self, host, error, result):
|
|
account = self.host_account_mapper.get(host)
|
|
account.set_connectivity(Connectivity.FAILED)
|