Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
01df40d4
Commit
01df40d4
authored
Mar 18, 2019
by
BaiJiangJie
Committed by
老广
Mar 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] 修改获取系统用户认证信息的API调用(获取某个系统用户对于某个资产的认证信息) (#197)
parent
c3af966b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
connection.py
coco/connection.py
+3
-3
proxy.py
coco/proxy.py
+1
-1
No files found.
coco/connection.py
View file @
01df40d4
...
@@ -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
)
...
...
coco/proxy.py
View file @
01df40d4
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment