Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
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
jumpserver
Commits
f3a0c390
Commit
f3a0c390
authored
Jun 16, 2015
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
connect.py base ok
parent
bb32c048
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
35 deletions
+43
-35
connect.py
connect.py
+9
-27
api.py
jumpserver/api.py
+33
-7
models.py
juser/models.py
+1
-1
No files found.
connect.py
View file @
f3a0c390
...
@@ -58,8 +58,8 @@ def color_print(msg, color='red', exits=False):
...
@@ -58,8 +58,8 @@ def color_print(msg, color='red', exits=False):
class
Jtty
(
object
):
class
Jtty
(
object
):
def
__init__
(
self
,
chan
,
user
,
asset
):
def
__init__
(
self
,
user
,
asset
):
self
.
chan
=
chan
self
.
chan
=
None
self
.
username
=
user
.
username
self
.
username
=
user
.
username
self
.
ip
=
asset
.
ip
self
.
ip
=
asset
.
ip
self
.
user
=
user
self
.
user
=
user
...
@@ -86,7 +86,7 @@ class Jtty(object):
...
@@ -86,7 +86,7 @@ class Jtty(object):
"""
"""
try
:
try
:
win_size
=
self
.
get_win_size
()
win_size
=
self
.
get_win_size
()
self
.
chan
nel
.
resize_pty
(
height
=
win_size
[
0
],
width
=
win_size
[
1
])
self
.
chan
.
resize_pty
(
height
=
win_size
[
0
],
width
=
win_size
[
1
])
except
Exception
:
except
Exception
:
pass
pass
...
@@ -199,6 +199,7 @@ class Jtty(object):
...
@@ -199,6 +199,7 @@ class Jtty(object):
Connect server.
Connect server.
"""
"""
username
,
password
,
ip
,
port
=
self
.
get_connect_item
()
username
,
password
,
ip
,
port
=
self
.
get_connect_item
()
logger
.
debug
(
"username:
%
s, password:
%
s, ip:
%
s, port:
%
s"
%
(
username
,
password
,
ip
,
port
))
ps1
=
"PS1='[
\
u@
%
s
\
W]
\
$ '
\n
"
%
self
.
ip
ps1
=
"PS1='[
\
u@
%
s
\
W]
\
$ '
\n
"
%
self
.
ip
login_msg
=
"clear;echo -e '
\\
033[32mLogin
%
s done. Enjoy it.
\\
033[0m'
\n
"
%
self
.
ip
login_msg
=
"clear;echo -e '
\\
033[32mLogin
%
s done. Enjoy it.
\\
033[0m'
\n
"
%
self
.
ip
...
@@ -216,7 +217,7 @@ class Jtty(object):
...
@@ -216,7 +217,7 @@ class Jtty(object):
# Make a channel and set windows size
# Make a channel and set windows size
global
channel
global
channel
win_size
=
self
.
get_win_size
()
win_size
=
self
.
get_win_size
()
channel
=
ssh
.
invoke_shell
(
height
=
win_size
[
0
],
width
=
win_size
[
1
])
self
.
chan
=
channel
=
ssh
.
invoke_shell
(
height
=
win_size
[
0
],
width
=
win_size
[
1
])
try
:
try
:
signal
.
signal
(
signal
.
SIGWINCH
,
self
.
set_win_size
)
signal
.
signal
(
signal
.
SIGWINCH
,
self
.
set_win_size
)
except
:
except
:
...
@@ -264,8 +265,9 @@ def verify_connect(user, option):
...
@@ -264,8 +265,9 @@ def verify_connect(user, option):
elif
len
(
ip_matched
)
<
1
:
elif
len
(
ip_matched
)
<
1
:
color_print
(
'No Permission or No host.'
,
'red'
)
color_print
(
'No Permission or No host.'
,
'red'
)
else
:
else
:
asset
=
Jasset
(
ip
=
ip_matched
[
0
])
asset
=
Jasset
(
ip
=
ip_matched
[
0
])
.
asset
jtty
=
Jtty
(
chan
,
user
,
)
jtty
=
Jtty
(
user
,
asset
)
jtty
.
connect
()
def
print_prompt
():
def
print_prompt
():
...
@@ -280,26 +282,6 @@ def print_prompt():
...
@@ -280,26 +282,6 @@ def print_prompt():
print
textwrap
.
dedent
(
msg
)
print
textwrap
.
dedent
(
msg
)
# def print_user_host_group(username):
# host_groups = get_host_groups(username)
# for host_group in host_groups:
# print "[%3s] %s -- %s" % (host_group.id, host_group.ip, host_group.comment)
# def asset_group_member(username, gid):
# pattern = re.compile(r'\d+')
# match = pattern.match(gid)
#
# if match:
# hosts_attr = get_host_group_host(username, gid)
# hosts = hosts_attr.keys()
# hosts.sort()
# for ip in hosts:
# print '%-15s -- %s' % (ip, hosts_attr[ip][2])
# else:
# color_print('No such group id, Please check it.', 'red')
# def remote_exec_cmd(ip, port, username, password, cmd):
# def remote_exec_cmd(ip, port, username, password, cmd):
# try:
# try:
# time.sleep(5)
# time.sleep(5)
...
@@ -394,7 +376,7 @@ if __name__ == '__main__':
...
@@ -394,7 +376,7 @@ if __name__ == '__main__':
elif
gid_pattern
.
match
(
option
):
elif
gid_pattern
.
match
(
option
):
gid
=
option
[
1
:]
.
strip
()
gid
=
option
[
1
:]
.
strip
()
asset_group
=
JassetGroup
(
id
=
gid
)
asset_group
=
JassetGroup
(
id
=
gid
)
if
asset_group
.
validate
():
if
asset_group
.
validate
()
and
asset_group
.
is_permed
(
user
=
login_user
.
user
)
:
asset_group
.
get_asset_info
(
printable
=
True
)
asset_group
.
get_asset_info
(
printable
=
True
)
continue
continue
elif
option
in
[
'E'
,
'e'
]:
elif
option
in
[
'E'
,
'e'
]:
...
...
jumpserver/api.py
View file @
f3a0c390
...
@@ -440,7 +440,10 @@ class Juser(object):
...
@@ -440,7 +440,10 @@ class Juser(object):
class
Jasset
(
object
):
class
Jasset
(
object
):
"""
Jumpserver asset class
Jumpserver资产类
"""
def
__init__
(
self
,
ip
=
None
,
id
=
None
):
def
__init__
(
self
,
ip
=
None
,
id
=
None
):
if
ip
:
if
ip
:
asset
=
Asset
.
objects
.
filter
(
ip
=
ip
)
asset
=
Asset
.
objects
.
filter
(
ip
=
ip
)
...
@@ -453,10 +456,6 @@ class Jasset(object):
...
@@ -453,10 +456,6 @@ class Jasset(object):
asset
=
asset
[
0
]
asset
=
asset
[
0
]
self
.
asset
=
asset
self
.
asset
=
asset
self
.
id
=
asset
.
id
self
.
id
=
asset
.
id
# self.ip = asset.ip
# self.id = asset.id
# self.port = asset.port
# self.comment = asset.comment
else
:
else
:
self
.
id
=
None
self
.
id
=
None
...
@@ -482,7 +481,7 @@ class Jasset(object):
...
@@ -482,7 +481,7 @@ class Jasset(object):
else
:
else
:
return
False
return
False
def
get_
_
user
(
self
):
def
get_user
(
self
):
perm_list
=
[]
perm_list
=
[]
asset_group_all
=
self
.
asset
.
bis_group
.
all
()
asset_group_all
=
self
.
asset
.
bis_group
.
all
()
for
asset_group
in
asset_group_all
:
for
asset_group
in
asset_group_all
:
...
@@ -500,7 +499,10 @@ class Jasset(object):
...
@@ -500,7 +499,10 @@ class Jasset(object):
class
JassetGroup
(
object
):
class
JassetGroup
(
object
):
"""
Jumpserver AssetGroup class
Jumpserver 资产组类
"""
def
__init__
(
self
,
name
=
None
,
id
=
None
):
def
__init__
(
self
,
name
=
None
,
id
=
None
):
if
id
:
if
id
:
asset_group
=
BisGroup
.
objects
.
filter
(
id
=
int
(
id
))
asset_group
=
BisGroup
.
objects
.
filter
(
id
=
int
(
id
))
...
@@ -548,6 +550,30 @@ class JassetGroup(object):
...
@@ -548,6 +550,30 @@ class JassetGroup(object):
def
get_asset_num
(
self
):
def
get_asset_num
(
self
):
return
len
(
self
.
get_asset
())
return
len
(
self
.
get_asset
())
def
get_user_group
(
self
):
perm_list
=
self
.
asset_group
.
perm_set
.
all
()
user_group_list
=
[]
for
perm
in
perm_list
:
user_group_list
.
append
(
perm
.
user_group
)
return
user_group_list
def
get_user
(
self
):
user_list
=
[]
user_group_list
=
self
.
get_user_group
()
for
user_group
in
user_group_list
:
user_list
.
extend
(
user_group
.
user_set
.
all
())
return
user_list
def
is_permed
(
self
,
user
=
None
,
user_group
=
None
):
if
user
:
if
user
in
self
.
get_user
():
return
True
if
user_group
:
if
user_group
in
self
.
get_user_group
():
return
True
return
False
# def asset_perm_api(asset):
# def asset_perm_api(asset):
# if asset:
# if asset:
...
...
juser/models.py
View file @
f3a0c390
...
@@ -31,7 +31,7 @@ class User(models.Model):
...
@@ -31,7 +31,7 @@ class User(models.Model):
role
=
models
.
CharField
(
max_length
=
2
,
choices
=
USER_ROLE_CHOICES
,
default
=
'CU'
)
role
=
models
.
CharField
(
max_length
=
2
,
choices
=
USER_ROLE_CHOICES
,
default
=
'CU'
)
dept
=
models
.
ForeignKey
(
DEPT
)
dept
=
models
.
ForeignKey
(
DEPT
)
group
=
models
.
ManyToManyField
(
UserGroup
)
group
=
models
.
ManyToManyField
(
UserGroup
)
ldap_pwd
=
models
.
CharField
(
max_length
=
1
00
)
ldap_pwd
=
models
.
CharField
(
max_length
=
1
28
)
ssh_key_pwd
=
models
.
CharField
(
max_length
=
100
)
ssh_key_pwd
=
models
.
CharField
(
max_length
=
100
)
is_active
=
models
.
BooleanField
(
default
=
True
)
is_active
=
models
.
BooleanField
(
default
=
True
)
last_login
=
models
.
DateTimeField
(
null
=
True
)
last_login
=
models
.
DateTimeField
(
null
=
True
)
...
...
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