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
9b371557
Commit
9b371557
authored
Aug 07, 2019
by
jym503558564
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改变量名小问题
parent
9cefc625
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
middleware.py
apps/orgs/middleware.py
+1
-1
models.py
apps/orgs/models.py
+3
-3
user.py
apps/users/models/user.py
+2
-2
No files found.
apps/orgs/middleware.py
View file @
9b371557
...
...
@@ -20,7 +20,7 @@ class OrgMiddleware:
org
=
get_org_from_request
(
request
)
if
org
.
can_admin_by
(
request
.
user
):
return
if
org
.
can_audit
or
_by
(
request
.
user
):
if
org
.
can_audit_by
(
request
.
user
):
return
admin_orgs
=
Organization
.
get_user_admin_orgs
(
request
.
user
)
if
admin_orgs
:
...
...
apps/orgs/models.py
View file @
9b371557
...
...
@@ -11,7 +11,7 @@ class Organization(models.Model):
name
=
models
.
CharField
(
max_length
=
128
,
unique
=
True
,
verbose_name
=
_
(
"Name"
))
users
=
models
.
ManyToManyField
(
'users.User'
,
related_name
=
'orgs'
,
blank
=
True
)
admins
=
models
.
ManyToManyField
(
'users.User'
,
related_name
=
'admin_orgs'
,
blank
=
True
)
auditors
=
models
.
ManyToManyField
(
'users.User'
,
related_name
=
'audit
or
_orgs'
,
blank
=
True
)
auditors
=
models
.
ManyToManyField
(
'users.User'
,
related_name
=
'audit_orgs'
,
blank
=
True
)
created_by
=
models
.
CharField
(
max_length
=
32
,
null
=
True
,
blank
=
True
,
verbose_name
=
_
(
'Created by'
))
date_created
=
models
.
DateTimeField
(
auto_now_add
=
True
,
null
=
True
,
blank
=
True
,
verbose_name
=
_
(
'Date created'
))
comment
=
models
.
TextField
(
max_length
=
128
,
default
=
''
,
blank
=
True
,
verbose_name
=
_
(
'Comment'
))
...
...
@@ -94,7 +94,7 @@ class Organization(models.Model):
return
True
return
False
def
can_audit
or
_by
(
self
,
user
):
def
can_audit_by
(
self
,
user
):
if
user
in
list
(
self
.
get_org_auditors
()):
return
True
return
False
...
...
@@ -113,7 +113,7 @@ class Organization(models.Model):
elif
user
.
is_org_admin
:
admin_orgs
=
user
.
admin_orgs
.
all
()
elif
user
.
is_auditor
:
admin_orgs
=
user
.
audit
or
_orgs
.
all
()
admin_orgs
=
user
.
audit_orgs
.
all
()
if
not
admin_orgs
:
admin_orgs
=
[
cls
.
default
()]
return
admin_orgs
...
...
apps/users/models/user.py
View file @
9b371557
...
...
@@ -165,13 +165,13 @@ class RoleMixin:
return
self
.
role
==
'Auditor'
@property
def
audit
or
_orgs
(
self
):
def
audit_orgs
(
self
):
from
orgs.models
import
Organization
return
Organization
.
get_user_admin_orgs
(
self
)
@property
def
is_org_auditor
(
self
):
if
self
.
is_auditor
and
self
.
audit
or
_orgs
.
exists
():
if
self
.
is_auditor
and
self
.
audit_orgs
.
exists
():
return
True
else
:
return
False
...
...
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