Commit 01df40d4 authored by BaiJiangJie's avatar BaiJiangJie Committed by 老广

[Feature] 修改获取系统用户认证信息的API调用(获取某个系统用户对于某个资产的认证信息) (#197)

parent c3af966b
...@@ -25,13 +25,13 @@ AUTO_LOGIN = 'auto' ...@@ -25,13 +25,13 @@ AUTO_LOGIN = 'auto'
class SSHConnection: class SSHConnection:
@staticmethod @staticmethod
def get_system_user_auth(system_user): def get_system_user_auth(system_user, asset):
""" """
获取系统用户的认证信息,密码或秘钥 获取系统用户的认证信息,密码或秘钥
:return: system user have full info :return: system user have full info
""" """
password, private_key = \ password, private_key = \
app_service.get_system_user_auth_info(system_user) app_service.get_system_user_auth_info(system_user, asset)
system_user.password = password system_user.password = password
system_user.private_key = private_key system_user.private_key = private_key
...@@ -42,7 +42,7 @@ class SSHConnection: ...@@ -42,7 +42,7 @@ class SSHConnection:
error = '' error = ''
if not system_user.password and not system_user.private_key: if not system_user.password and not system_user.private_key:
self.get_system_user_auth(system_user) self.get_system_user_auth(system_user, asset)
if asset.domain: if asset.domain:
sock = self.get_proxy_sock_v2(asset) sock = self.get_proxy_sock_v2(asset)
......
...@@ -34,7 +34,7 @@ class ProxyServer: ...@@ -34,7 +34,7 @@ class ProxyServer:
:return: system user have full info :return: system user have full info
""" """
password, private_key = \ password, private_key = \
app_service.get_system_user_auth_info(self.system_user) app_service.get_system_user_auth_info(self.system_user, self.asset)
if self.system_user.login_mode == MANUAL_LOGIN \ if self.system_user.login_mode == MANUAL_LOGIN \
or (not password and not private_key): or (not password and not private_key):
prompt = "{}'s password: ".format(self.system_user.username) prompt = "{}'s password: ".format(self.system_user.username)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment