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
4b1f07d7
Commit
4b1f07d7
authored
Aug 08, 2019
by
jym503558564
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 禁止不是超级管理员角色 删除/更新 审计员
parent
70bf9d17
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
permissions.py
apps/common/permissions.py
+3
-0
user.py
apps/users/api/user.py
+2
-1
user_list.html
apps/users/templates/users/user_list.html
+2
-2
No files found.
apps/common/permissions.py
View file @
4b1f07d7
...
@@ -165,6 +165,9 @@ class CanUpdateDeleteSuperUser(permissions.BasePermission):
...
@@ -165,6 +165,9 @@ class CanUpdateDeleteSuperUser(permissions.BasePermission):
return
True
return
True
elif
request
.
method
==
'DELETE'
and
str
(
request
.
user
.
id
)
==
str
(
obj
.
id
):
elif
request
.
method
==
'DELETE'
and
str
(
request
.
user
.
id
)
==
str
(
obj
.
id
):
return
False
return
False
elif
request
.
method
in
(
'DELETE'
,
'PATCH'
,
'PUT'
)
and
\
not
request
.
user
.
is_superuser
and
obj
.
is_auditor
:
return
False
elif
request
.
user
.
is_superuser
:
elif
request
.
user
.
is_superuser
:
return
True
return
True
if
hasattr
(
obj
,
'is_superuser'
)
and
obj
.
is_superuser
:
if
hasattr
(
obj
,
'is_superuser'
)
and
obj
.
is_superuser
:
...
...
apps/users/api/user.py
View file @
4b1f07d7
...
@@ -73,7 +73,8 @@ class UserViewSet(IDInCacheFilterMixin, BulkModelViewSet):
...
@@ -73,7 +73,8 @@ class UserViewSet(IDInCacheFilterMixin, BulkModelViewSet):
check current user has permission to handle instance
check current user has permission to handle instance
(update, destroy, bulk_update, bulk destroy)
(update, destroy, bulk_update, bulk destroy)
"""
"""
if
not
self
.
request
.
user
.
is_superuser
and
instance
.
is_superuser
:
if
not
self
.
request
.
user
.
is_superuser
\
and
(
instance
.
is_superuser
or
instance
.
is_auditor
):
return
True
return
True
if
self
.
request
.
user
==
instance
:
if
self
.
request
.
user
==
instance
:
return
True
return
True
...
...
apps/users/templates/users/user_list.html
View file @
4b1f07d7
...
@@ -99,7 +99,7 @@ function initTable() {
...
@@ -99,7 +99,7 @@ function initTable() {
{
targets
:
7
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
7
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
var
name
=
htmlEscape
(
rowData
.
name
);
var
name
=
htmlEscape
(
rowData
.
name
);
var
update_btn
=
""
;
var
update_btn
=
""
;
if
(
rowData
.
role
===
'Admin'
&&
(
'{{ request.user.role }}'
!==
'Admin'
))
{
if
(
rowData
.
role
===
'Admin'
&&
(
'{{ request.user.role }}'
!==
'Admin'
)
||
rowData
.
role
===
'Auditor'
&&
(
'{{ request.user.role }}'
!==
'Admin'
)
)
{
update_btn
=
'<a class="btn btn-xs disabled btn-info">{% trans "Update" %}</a>'
;
update_btn
=
'<a class="btn btn-xs disabled btn-info">{% trans "Update" %}</a>'
;
}
}
else
{
else
{
...
@@ -107,7 +107,7 @@ function initTable() {
...
@@ -107,7 +107,7 @@ function initTable() {
}
}
var
del_btn
=
""
;
var
del_btn
=
""
;
if
(
rowData
.
id
===
1
||
rowData
.
username
===
"admin"
||
rowData
.
username
===
"{{ request.user.username }}"
||
(
rowData
.
role
===
'Admin'
&&
(
'{{ request.user.role }}'
!==
'Admin'
)))
{
if
(
rowData
.
id
===
1
||
rowData
.
username
===
"admin"
||
rowData
.
username
===
"{{ request.user.username }}"
||
(
rowData
.
role
===
'Admin'
&&
(
'{{ request.user.role }}'
!==
'Admin'
))
||
rowData
.
role
===
'Auditor'
&&
(
'{{ request.user.role }}'
!==
'Admin'
)
)
{
del_btn
=
'<a class="btn btn-xs btn-danger m-l-xs" disabled>{% trans "Delete" %}</a>'
del_btn
=
'<a class="btn btn-xs btn-danger m-l-xs" disabled>{% trans "Delete" %}</a>'
.
replace
(
'{{ DEFAULT_PK }}'
,
cellData
)
.
replace
(
'{{ DEFAULT_PK }}'
,
cellData
)
.
replace
(
'99991938'
,
name
);
.
replace
(
'99991938'
,
name
);
...
...
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