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
dda876be
Commit
dda876be
authored
Feb 27, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] Stash it
parent
51b0fee9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
26 deletions
+36
-26
models.py
apps/authorization/models.py
+18
-17
model.py
apps/common/fields/model.py
+16
-9
settings.py
apps/jumpserver/settings.py
+2
-0
No files found.
apps/authorization/models.py
View file @
dda876be
from
django.db
import
models
from
django.
utils.translation
import
ugettext_lazy
as
_
from
django.
conf
import
settings
from
common.fields
import
JsonListTextField
from
orgs.mixins
import
OrgModelMixin
class
BaseRole
(
models
.
Model
):
...
...
@@ -13,38 +14,38 @@ class BaseRole(models.Model):
class
Meta
:
abstract
=
True
def
__str__
(
self
):
return
self
.
name
class
Role
(
BaseRole
):
org_id
=
models
.
CharField
(
max_length
=
36
,
blank
=
True
,
default
=
''
,
verbose_name
=
_
(
"Organization"
),
db_index
=
True
)
class
Role
(
OrgModelMixin
,
BaseRole
):
pass
class
ClusterRole
(
BaseRole
):
non_resource_urls
=
JsonListTextField
()
pass
class
Rule
(
models
.
Model
):
VERBOSE_CHOICES
=
[
(
'list'
,
'List'
),
(
'retrieve'
,
'Retrieve'
),
(
'create'
,
'Create'
),
(
'update'
,
'Update'
),
(
'patch'
,
'PartialUpdate'
),
(
'delete'
,
'Delete'
),
]
api_groups
=
JsonListTextField
()
resources
=
JsonListTextField
()
resourcesIDs
=
JsonListTextField
()
verbs
=
JsonListTextField
()
apps
=
JsonListTextField
()
resources
=
JsonListTextField
()
resources_ids
=
JsonListTextField
()
non_resource_urls
=
JsonListTextField
()
class
BaseRoleBinding
(
models
.
Model
):
role
=
models
.
ForeignKey
(
'Role'
,
on_delete
=
models
.
CASCADE
)
users
=
models
.
ManyToManyField
(
settings
.
AUTH_USER_MODEL
)
groups
=
models
.
ManyToManyField
(
settings
.
AUTH_GROUP_MODEL
)
date_created
=
models
.
DateTimeField
(
auto_now_add
=
True
)
created_by
=
models
.
CharField
(
max_length
=
128
,
blank
=
True
,
default
=
''
)
class
Meta
:
abstract
=
True
class
RoleBinding
(
BaseRoleBinding
):
class
RoleBinding
(
OrgModelMixin
,
BaseRoleBinding
):
pass
...
...
apps/common/fields/model.py
View file @
dda876be
...
...
@@ -8,7 +8,7 @@ from ..utils import get_signer
__all__
=
[
'JsonMixin'
,
'JsonDictMixin'
,
'JsonListMix'
,
'JsonTypeMixin'
,
'JsonMixin'
,
'JsonDictMixin'
,
'JsonListMix
in
'
,
'JsonTypeMixin'
,
'JsonCharField'
,
'JsonTextField'
,
'JsonListCharField'
,
'JsonListTextField'
,
'JsonDictCharField'
,
'JsonDictTextField'
,
'EncryptCharField'
,
'EncryptTextField'
,
'EncryptMixin'
,
...
...
@@ -83,18 +83,30 @@ class JsonDictTextField(JsonDictMixin, models.TextField):
description
=
_
(
"Marshal dict data to text field"
)
class
JsonListMix
(
JsonTypeMixin
):
class
JsonListMix
in
(
JsonTypeMixin
):
tp
=
list
class
JsonListCharField
(
JsonListMix
,
models
.
CharField
):
class
JsonStrListMixin
(
JsonListMixin
):
pass
class
JsonListCharField
(
JsonListMixin
,
models
.
CharField
):
description
=
_
(
"Marshal list data to char field"
)
class
JsonListTextField
(
JsonListMix
,
models
.
TextField
):
class
JsonListTextField
(
JsonListMix
in
,
models
.
TextField
):
description
=
_
(
"Marshal list data to text field"
)
class
JsonCharField
(
JsonMixin
,
models
.
CharField
):
description
=
_
(
"Marshal data to char field"
)
class
JsonTextField
(
JsonMixin
,
models
.
TextField
):
description
=
_
(
"Marshal data to text field"
)
class
EncryptMixin
:
def
from_db_value
(
self
,
value
,
expression
,
connection
,
context
):
if
value
is
not
None
:
...
...
@@ -117,9 +129,4 @@ class EncryptCharField(EncryptMixin, models.CharField):
super
()
.
__init__
(
*
args
,
**
kwargs
)
class
JsonCharField
(
JsonMixin
,
models
.
CharField
):
description
=
_
(
"Marshal data to char field"
)
class
JsonTextField
(
JsonMixin
,
models
.
TextField
):
description
=
_
(
"Marshal data to text field"
)
apps/jumpserver/settings.py
View file @
dda876be
...
...
@@ -64,6 +64,7 @@ INSTALLED_APPS = [
'terminal.apps.TerminalConfig'
,
'audits.apps.AuditsConfig'
,
'authentication.apps.AuthenticationConfig'
,
# authentication
'authorization.apps.AuthorizationConfig'
,
'rest_framework'
,
'rest_framework_swagger'
,
'drf_yasg'
,
...
...
@@ -367,6 +368,7 @@ AUTHENTICATION_BACKENDS = [
# Custom User Auth model
AUTH_USER_MODEL
=
'users.User'
AUTH_GROUP_MODEL
=
'users.UserGroup'
# File Upload Permissions
FILE_UPLOAD_PERMISSIONS
=
0
o644
...
...
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