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
eb62a381
Commit
eb62a381
authored
Dec 17, 2017
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] 默认登陆优先级最高的 system user
parent
aa72fc59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
22 deletions
+30
-22
interactive.py
coco/interactive.py
+21
-7
logo.txt
logo.txt
+9
-15
No files found.
coco/interactive.py
View file @
eb62a381
...
...
@@ -187,11 +187,11 @@ class InteractiveServer:
def
display_search_result
(
self
):
self
.
search_result
=
sort_assets
(
self
.
search_result
,
self
.
app
.
config
[
"ASSET_LIST_SORT_BY"
])
fake_asset
=
Asset
(
hostname
=
_
(
"Hostname"
),
ip
=
_
(
"IP"
),
system_users_join
=
_
(
"LoginAs"
),
comment
=
_
(
"Comment"
))
fake_asset
=
Asset
(
hostname
=
_
(
"Hostname"
),
ip
=
_
(
"IP"
),
_system_users_name_list
=
_
(
"LoginAs"
),
comment
=
_
(
"Comment"
))
id_max_length
=
max
(
len
(
str
(
len
(
self
.
search_result
))),
3
)
hostname_max_length
=
max
(
max
([
len
(
asset
.
hostname
)
for
asset
in
self
.
search_result
+
[
fake_asset
]]),
15
)
sysuser_max_length
=
max
([
len
(
asset
.
system_users_
join
)
for
asset
in
self
.
search_result
+
[
fake_asset
]])
header
=
'{1:>
%
d} {0.hostname:
%
d} {0.ip:15} {0.system_users_
join
:
%
d} '
%
\
sysuser_max_length
=
max
([
len
(
asset
.
system_users_
name_list
)
for
asset
in
self
.
search_result
+
[
fake_asset
]])
header
=
'{1:>
%
d} {0.hostname:
%
d} {0.ip:15} {0.system_users_
name_list
:
%
d} '
%
\
(
id_max_length
,
hostname_max_length
,
sysuser_max_length
)
comment_length
=
self
.
request
.
meta
[
"width"
]
-
len
(
header
.
format
(
fake_asset
,
id_max_length
))
line
=
header
+
'{0.comment:.
%
d}'
%
(
comment_length
//
2
)
# comment中可能有中文
...
...
@@ -214,8 +214,18 @@ class InteractiveServer:
thread
=
threading
.
Thread
(
target
=
self
.
get_user_asset_groups
)
thread
.
start
()
@staticmethod
def
filter_system_users
(
assets
):
for
asset
in
assets
:
system_users_granted
=
asset
.
system_users_granted
high_priority
=
max
([
s
.
priority
for
s
in
system_users_granted
])
system_users_cleaned
=
[
s
for
s
in
system_users_granted
if
s
.
priority
==
high_priority
]
asset
.
system_users_granted
=
system_users_cleaned
return
assets
def
get_user_assets
(
self
):
self
.
assets
=
self
.
app
.
service
.
get_user_assets
(
self
.
client
.
user
)
assets
=
self
.
app
.
service
.
get_user_assets
(
self
.
client
.
user
)
self
.
assets
=
self
.
filter_system_users
(
assets
)
logger
.
debug
(
"Get user {} assets total: {}"
.
format
(
self
.
client
.
user
,
len
(
self
.
assets
)))
def
get_user_assets_async
(
self
):
...
...
@@ -223,6 +233,9 @@ class InteractiveServer:
thread
.
start
()
def
choose_system_user
(
self
,
system_users
):
# highest_priority = max([s.priority for s in system_users])
# system_users = [s for s in system_users if s == highest_priority]
if
len
(
system_users
)
==
1
:
return
system_users
[
0
]
elif
len
(
system_users
)
==
0
:
...
...
@@ -235,15 +248,15 @@ class InteractiveServer:
if
opt
.
isdigit
()
and
len
(
system_users
)
>
int
(
opt
):
return
system_users
[
int
(
opt
)]
elif
opt
in
[
'q'
,
'Q'
]:
break
return
None
else
:
for
system_user
in
system_users
:
if
system_user
.
user
name
==
opt
:
if
system_user
.
name
==
opt
:
return
system_user
def
display_system_users
(
self
,
system_users
):
for
index
,
system_user
in
enumerate
(
system_users
):
self
.
client
.
send
(
wr
(
"{} {}"
.
format
(
index
,
system_user
.
user
name
)))
self
.
client
.
send
(
wr
(
"{} {}"
.
format
(
index
,
system_user
.
name
)))
def
search_and_proxy
(
self
,
opt
):
self
.
search_assets
(
opt
)
...
...
@@ -256,6 +269,7 @@ class InteractiveServer:
system_user
=
self
.
choose_system_user
(
asset
.
system_users_granted
)
if
system_user
is
None
:
self
.
client
.
send
(
_
(
"No user"
))
return
forwarder
=
ProxyServer
(
self
.
app
,
self
.
client
)
forwarder
.
proxy
(
asset
,
system_user
)
...
...
logo.txt
View file @
eb62a381
┏┓ ┏┓
┏┛┻━━━┛┻━━┓
┃ ━ ┃
┃ ┳┛ ┗┳ ┃
┃ ┃
┃ ┻ ┃
┗━┓ ┏━┛
┃ ┃神兽保佑
┃ ┃永不宕机!
┃ ┗━━━┓
┗┓┓┏━┳┓┏┛
┃┫┫ ┃┫┫
┗┻┛ ┗┻┛
# more see https://gist.github.com/edokeh/7580064
___
|_ |
| |_ _ _ __ ___ _ __ ___ _____ _____ _ __
| | | | | '_ ` _ \| '_ \/ __|/ _ \ \ / / _ \ '__|
/\__/ / |_| | | | | | | |_) \__ \ __/\ V / __/ |
\____/ \__,_|_| |_| |_| .__/|___/\___| \_/ \___|_|
| |
|_|
\ No newline at end of file
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