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
29095a86
Commit
29095a86
authored
Jun 19, 2017
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Demo] update demo mode code
parent
cda22a6f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
3 deletions
+20
-3
LICENSE
LICENSE
+0
-0
api.py
apps/assets/api.py
+14
-0
middleware.py
apps/jumpserver/middleware.py
+3
-2
settings.py
apps/jumpserver/settings.py
+2
-0
user.py
apps/users/models/user.py
+1
-1
No files found.
LICENSE
View file @
29095a86
This diff is collapsed.
Click to expand it.
apps/assets/api.py
View file @
29095a86
# ~*~ coding: utf-8 ~*~
# Copyright (C) 2014-2017 Beijing DuiZhan Technology Co.,Ltd. All Rights Reserved.
#
# Licensed under the GNU General Public License v2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.gnu.org/licenses/gpl-2.0.html
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
rest_framework
import
viewsets
,
generics
,
mixins
...
...
apps/jumpserver/middleware.py
View file @
29095a86
# ~*~ coding: utf-8 ~*~
import
os
import
re
import
pytz
from
django.utils
import
timezone
from
django.utils.deprecation
import
MiddlewareMixin
...
...
@@ -8,7 +9,7 @@ from django.shortcuts import HttpResponse
DEMO_MODE
=
os
.
environ
.
get
(
"DEMO_MODE"
,
""
)
SAFE_URL
=
[
"/users/login"
,]
SAFE_URL
=
r'^/users/login|^/api/applications/v1/.*'
class
TimezoneMiddleware
(
MiddlewareMixin
):
...
...
@@ -22,5 +23,5 @@ class TimezoneMiddleware(MiddlewareMixin):
class
DemoMiddleware
(
MiddlewareMixin
):
def
process_request
(
self
,
request
):
if
DEMO_MODE
and
request
.
method
not
in
[
"GET"
,
"HEAD"
]
and
request
.
path
not
in
SAFE_URL
:
if
DEMO_MODE
and
request
.
method
not
in
[
"GET"
,
"HEAD"
]
and
not
re
.
match
(
SAFE_URL
,
request
.
path
)
:
return
HttpResponse
(
"Demo mode, only get request accept"
,
403
)
apps/jumpserver/settings.py
View file @
29095a86
...
...
@@ -123,6 +123,7 @@ if CONFIG.DB_ENGINE == 'sqlite':
'default'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
CONFIG
.
DB_NAME
or
os
.
path
.
join
(
BASE_DIR
,
'data'
,
'db.sqlite3'
),
'ATOMIC_REQUESTS'
:
True
,
}
}
else
:
...
...
@@ -134,6 +135,7 @@ else:
'PORT'
:
CONFIG
.
DB_PORT
,
'USER'
:
CONFIG
.
DB_USER
,
'PASSWORD'
:
CONFIG
.
DB_PASSWORD
,
'ATOMIC_REQUESTS'
:
True
,
}
}
...
...
apps/users/models/user.py
View file @
29095a86
...
...
@@ -189,7 +189,7 @@ class User(AbstractUser):
return
'https://www.gravatar.com/avatar/c6812ab450230979465d7bf288eadce2a?s=120&d=identicon'
def
generate_reset_token
(
self
):
return
signer
.
sign_t
({
'reset'
:
self
.
id
,
'email'
:
self
.
email
},
expires_in
=
3600
)
.
decode
(
'utf-8'
)
return
signer
.
sign_t
({
'reset'
:
self
.
id
,
'email'
:
self
.
email
},
expires_in
=
3600
)
def
to_json
(
self
):
return
OrderedDict
({
...
...
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