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
f10a7a75
Commit
f10a7a75
authored
Jun 25, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改用户表结构
parent
e08d542c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
25 deletions
+11
-25
0021_auto_20190625_1104.py
apps/users/migrations/0021_auto_20190625_1104.py
+8
-3
user.py
apps/users/models/user.py
+3
-22
No files found.
apps/users/migrations/0021_auto_20190625_1104.py
View file @
f10a7a75
# Generated by Django 2.1.7 on 2019-06-25 03:04
import
common.fields.model
from
django.db
import
migrations
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
...
...
@@ -19,11 +19,16 @@ class Migration(migrations.Migration):
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'_private_key'
,
field
=
common
.
fields
.
model
.
EncryptTextField
(
blank
=
True
,
max_length
=
5000
,
verbose_name
=
'Private key'
),
field
=
common
.
fields
.
model
.
EncryptTextField
(
blank
=
True
,
null
=
True
,
verbose_name
=
'Private key'
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'_public_key'
,
field
=
common
.
fields
.
model
.
EncryptTextField
(
blank
=
True
,
max_length
=
5000
,
verbose_name
=
'Public key'
),
field
=
common
.
fields
.
model
.
EncryptTextField
(
blank
=
True
,
null
=
True
,
verbose_name
=
'Public key'
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'comment'
,
field
=
models
.
TextField
(
blank
=
True
,
null
=
True
,
verbose_name
=
'Comment'
),
),
]
apps/users/models/user.py
View file @
f10a7a75
...
...
@@ -88,13 +88,13 @@ class User(AbstractUser):
otp_secret_key
=
fields
.
EncryptCharField
(
max_length
=
128
,
blank
=
True
,
null
=
True
)
# Todo: Auto generate key, let user download
private_key
=
fields
.
EncryptTextField
(
max_length
=
5000
,
blank
=
True
,
verbose_name
=
_
(
'Private key'
)
blank
=
True
,
null
=
True
,
verbose_name
=
_
(
'Private key'
)
)
public_key
=
fields
.
EncryptTextField
(
max_length
=
5000
,
blank
=
True
,
verbose_name
=
_
(
'Public key'
)
blank
=
True
,
null
=
True
,
verbose_name
=
_
(
'Public key'
)
)
comment
=
models
.
TextField
(
max_length
=
200
,
blank
=
True
,
verbose_name
=
_
(
'Comment'
)
blank
=
True
,
null
=
True
,
verbose_name
=
_
(
'Comment'
)
)
is_first_login
=
models
.
BooleanField
(
default
=
True
)
date_expired
=
models
.
DateTimeField
(
...
...
@@ -276,7 +276,6 @@ class User(AbstractUser):
self
.
role
=
'Admin'
self
.
is_active
=
True
super
()
.
save
(
*
args
,
**
kwargs
)
self
.
expire_user_cache
()
@property
def
private_token
(
self
):
...
...
@@ -425,26 +424,8 @@ class User(AbstractUser):
def
delete
(
self
,
using
=
None
,
keep_parents
=
False
):
if
self
.
pk
==
1
or
self
.
username
==
'admin'
:
return
self
.
expire_user_cache
()
return
super
(
User
,
self
)
.
delete
()
def
expire_user_cache
(
self
):
key
=
self
.
user_cache_key_prefix
.
format
(
self
.
id
)
cache
.
delete
(
key
)
@classmethod
def
get_user_or_from_cache
(
cls
,
uid
):
key
=
cls
.
user_cache_key_prefix
.
format
(
uid
)
user
=
cache
.
get
(
key
)
if
user
:
return
user
try
:
user
=
cls
.
objects
.
get
(
id
=
uid
)
cache
.
set
(
key
,
user
,
3600
)
except
cls
.
DoesNotExist
:
user
=
None
return
user
class
Meta
:
ordering
=
[
'username'
]
verbose_name
=
_
(
"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