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
5b1ee678
Commit
5b1ee678
authored
Jul 04, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改command搜索
parent
858c7df8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
command.py
apps/terminal/api/command.py
+10
-2
db.py
apps/terminal/backends/command/db.py
+1
-1
No files found.
apps/terminal/api/command.py
View file @
5b1ee678
...
@@ -26,14 +26,22 @@ class CommandQueryMixin:
...
@@ -26,14 +26,22 @@ class CommandQueryMixin:
pagination_class
=
LimitOffsetPagination
pagination_class
=
LimitOffsetPagination
permission_classes
=
[
IsOrgAdminOrAppUser
|
IsAuditor
]
permission_classes
=
[
IsOrgAdminOrAppUser
|
IsAuditor
]
filter_fields
=
[
filter_fields
=
[
"asset"
,
"system_user"
,
"user"
,
"
input"
,
"
session"
,
"asset"
,
"system_user"
,
"user"
,
"session"
,
]
]
default_days_ago
=
5
default_days_ago
=
5
def
get_queryset
(
self
):
def
get_queryset
(
self
):
date_from
,
date_to
=
self
.
get_date_range
()
date_from
,
date_to
=
self
.
get_date_range
()
q
=
self
.
request
.
query_params
multi_command_storage
=
get_multi_command_storage
()
multi_command_storage
=
get_multi_command_storage
()
queryset
=
multi_command_storage
.
filter
(
date_from
=
date_from
,
date_to
=
date_to
)
queryset
=
multi_command_storage
.
filter
(
date_from
=
date_from
,
date_to
=
date_to
,
input
=
q
.
get
(
"input"
),
user
=
q
.
get
(
"user"
),
asset
=
q
.
get
(
"asset"
),
system_user
=
q
.
get
(
"system_user"
)
)
return
queryset
def
filter_queryset
(
self
,
queryset
):
return
queryset
return
queryset
def
get_filter_fields
(
self
):
def
get_filter_fields
(
self
):
...
...
apps/terminal/backends/command/db.py
View file @
5b1ee678
...
@@ -80,7 +80,7 @@ class CommandStore(CommandBase):
...
@@ -80,7 +80,7 @@ class CommandStore(CommandBase):
filter_kwargs
[
'timestamp__lte'
]
=
int
(
date_to
)
filter_kwargs
[
'timestamp__lte'
]
=
int
(
date_to
)
if
user
:
if
user
:
filter_kwargs
[
"user"
]
=
user
filter_kwargs
[
"user
__startswith
"
]
=
user
if
asset
:
if
asset
:
filter_kwargs
[
'asset'
]
=
asset
filter_kwargs
[
'asset'
]
=
asset
if
system_user
:
if
system_user
:
...
...
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