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.
33 lines
1.1 KiB
33 lines
1.1 KiB
from django.db.models import QuerySet
|
|
|
|
from common.utils import get_logger
|
|
from accounts.const import AutomationTypes, Connectivity
|
|
from ..base.manager import PushOrVerifyHostCallbackMixin, AccountBasePlaybookManager
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class VerifyAccountManager(PushOrVerifyHostCallbackMixin, AccountBasePlaybookManager):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.host_account_mapper = {}
|
|
|
|
@classmethod
|
|
def method_type(cls):
|
|
return AutomationTypes.verify_account
|
|
|
|
def get_accounts(self, privilege_account, accounts: QuerySet):
|
|
snapshot_account_usernames = self.execution.snapshot['accounts']
|
|
if '*' not in snapshot_account_usernames:
|
|
accounts = accounts.filter(username__in=snapshot_account_usernames)
|
|
return accounts
|
|
|
|
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)
|