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
f863ed0f
Commit
f863ed0f
authored
May 22, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改获取common store
parent
3eaf4cd1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
10 deletions
+6
-10
conf.py
apps/jumpserver/conf.py
+1
-0
settings.py
apps/jumpserver/settings.py
+1
-6
session.py
apps/terminal/api/session.py
+2
-2
terminal_tags.py
apps/terminal/templatetags/terminal_tags.py
+1
-1
session.py
apps/terminal/views/session.py
+1
-1
No files found.
apps/jumpserver/conf.py
View file @
f863ed0f
...
@@ -343,6 +343,7 @@ defaults = {
...
@@ -343,6 +343,7 @@ defaults = {
'TERMINAL_SESSION_KEEP_DURATION'
:
9999
,
'TERMINAL_SESSION_KEEP_DURATION'
:
9999
,
'TERMINAL_HOST_KEY'
:
''
,
'TERMINAL_HOST_KEY'
:
''
,
'TERMINAL_TELNET_REGEX'
:
''
,
'TERMINAL_TELNET_REGEX'
:
''
,
'TERMINAL_COMMAND_STORAGE'
:
{},
'SECURITY_MFA_AUTH'
:
False
,
'SECURITY_MFA_AUTH'
:
False
,
'SECURITY_LOGIN_LIMIT_COUNT'
:
7
,
'SECURITY_LOGIN_LIMIT_COUNT'
:
7
,
'SECURITY_LOGIN_LIMIT_TIME'
:
30
,
'SECURITY_LOGIN_LIMIT_TIME'
:
30
,
...
...
apps/jumpserver/settings.py
View file @
f863ed0f
...
@@ -519,12 +519,7 @@ DEFAULT_TERMINAL_COMMAND_STORAGE = {
...
@@ -519,12 +519,7 @@ DEFAULT_TERMINAL_COMMAND_STORAGE = {
},
},
}
}
TERMINAL_COMMAND_STORAGE
=
{
TERMINAL_COMMAND_STORAGE
=
CONFIG
.
TERMINAL_COMMAND_STORAGE
# 'ali-es': {
# 'TYPE': 'elasticsearch',
# 'HOSTS': ['http://elastic:changeme@localhost:9200'],
# },
}
DEFAULT_TERMINAL_REPLAY_STORAGE
=
{
DEFAULT_TERMINAL_REPLAY_STORAGE
=
{
"default"
:
{
"default"
:
{
...
...
apps/terminal/api/session.py
View file @
f863ed0f
...
@@ -67,7 +67,6 @@ class CommandViewSet(viewsets.ViewSet):
...
@@ -67,7 +67,6 @@ class CommandViewSet(viewsets.ViewSet):
"""
"""
command_store
=
get_command_storage
()
command_store
=
get_command_storage
()
multi_command_storage
=
get_multi_command_storage
()
serializer_class
=
SessionCommandSerializer
serializer_class
=
SessionCommandSerializer
permission_classes
=
(
IsOrgAdminOrAppUser
,)
permission_classes
=
(
IsOrgAdminOrAppUser
,)
...
@@ -88,7 +87,8 @@ class CommandViewSet(viewsets.ViewSet):
...
@@ -88,7 +87,8 @@ class CommandViewSet(viewsets.ViewSet):
return
Response
({
"msg"
:
msg
},
status
=
401
)
return
Response
({
"msg"
:
msg
},
status
=
401
)
def
list
(
self
,
request
,
*
args
,
**
kwargs
):
def
list
(
self
,
request
,
*
args
,
**
kwargs
):
queryset
=
self
.
multi_command_storage
.
filter
()
multi_command_storage
=
get_multi_command_storage
()
queryset
=
multi_command_storage
.
filter
()
serializer
=
self
.
serializer_class
(
queryset
,
many
=
True
)
serializer
=
self
.
serializer_class
(
queryset
,
many
=
True
)
return
Response
(
serializer
.
data
)
return
Response
(
serializer
.
data
)
...
...
apps/terminal/templatetags/terminal_tags.py
View file @
f863ed0f
...
@@ -5,10 +5,10 @@ from django import template
...
@@ -5,10 +5,10 @@ from django import template
from
..backends
import
get_multi_command_storage
from
..backends
import
get_multi_command_storage
register
=
template
.
Library
()
register
=
template
.
Library
()
command_store
=
get_multi_command_storage
()
@register.filter
@register.filter
def
get_session_command_amount
(
session_id
):
def
get_session_command_amount
(
session_id
):
command_store
=
get_multi_command_storage
()
return
command_store
.
count
(
session
=
session_id
)
return
command_store
.
count
(
session
=
session_id
)
apps/terminal/views/session.py
View file @
f863ed0f
...
@@ -19,7 +19,6 @@ __all__ = [
...
@@ -19,7 +19,6 @@ __all__ = [
'SessionDetailView'
,
'SessionDetailView'
,
]
]
command_store
=
get_multi_command_storage
()
class
SessionListView
(
AdminUserRequiredMixin
,
DatetimeSearchMixin
,
ListView
):
class
SessionListView
(
AdminUserRequiredMixin
,
DatetimeSearchMixin
,
ListView
):
...
@@ -108,6 +107,7 @@ class SessionDetailView(SingleObjectMixin, AdminUserRequiredMixin, ListView):
...
@@ -108,6 +107,7 @@ class SessionDetailView(SingleObjectMixin, AdminUserRequiredMixin, ListView):
return
super
()
.
get
(
request
,
*
args
,
**
kwargs
)
return
super
()
.
get
(
request
,
*
args
,
**
kwargs
)
def
get_queryset
(
self
):
def
get_queryset
(
self
):
command_store
=
get_multi_command_storage
()
return
command_store
.
filter
(
session
=
self
.
object
.
id
)
return
command_store
.
filter
(
session
=
self
.
object
.
id
)
def
get_context_data
(
self
,
**
kwargs
):
def
get_context_data
(
self
,
**
kwargs
):
...
...
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