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
c82044f6
Commit
c82044f6
authored
Mar 22, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改一些bug
parent
311538dc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
5 deletions
+15
-5
ldap.py
apps/authentication/backends/ldap.py
+3
-0
conf.py
apps/jumpserver/conf.py
+1
-1
__init__.py
apps/ops/celery/__init__.py
+6
-3
views.py
apps/orgs/views.py
+5
-1
No files found.
apps/authentication/backends/ldap.py
View file @
c82044f6
...
...
@@ -88,7 +88,10 @@ class LDAPUser(_LDAPUser):
def
_populate_user_from_attributes
(
self
):
super
()
.
_populate_user_from_attributes
()
if
not
hasattr
(
self
.
_user
,
'email'
)
or
'@'
not
in
self
.
_user
.
email
:
if
'@'
not
in
self
.
_user
.
username
:
email
=
'{}@{}'
.
format
(
self
.
_user
.
username
,
settings
.
EMAIL_SUFFIX
)
else
:
email
=
self
.
_user
.
username
setattr
(
self
.
_user
,
'email'
,
email
)
...
...
apps/jumpserver/conf.py
View file @
c82044f6
...
...
@@ -193,7 +193,7 @@ class Config(dict):
if
self
.
root_path
:
filename
=
os
.
path
.
join
(
self
.
root_path
,
filename
)
try
:
with
open
(
filename
)
as
f
:
with
open
(
filename
,
'rt'
,
encoding
=
'utf8'
)
as
f
:
obj
=
yaml
.
load
(
f
)
except
IOError
as
e
:
if
silent
and
e
.
errno
in
(
errno
.
ENOENT
,
errno
.
EISDIR
):
...
...
apps/ops/celery/__init__.py
View file @
c82044f6
...
...
@@ -6,12 +6,15 @@ from celery import Celery
# set the default Django settings module for the 'celery' program.
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'jumpserver.settings'
)
from
django.conf
import
settings
from
jumpserver
import
settings
#
from django.conf import settings
app
=
Celery
(
'jumpserver'
)
configs
=
{
k
:
v
for
k
,
v
in
settings
.
__dict__
.
items
()
if
k
.
startswith
(
'CELERY'
)}
# Using a string here means the worker will not have to
# pickle the object when using Windows.
app
.
config_from_object
(
'django.conf:settings'
,
namespace
=
'CELERY'
)
# app.config_from_object('django.conf:settings', namespace='CELERY')
app
.
namespace
=
'CELERY'
app
.
conf
.
update
(
configs
)
app
.
autodiscover_tasks
(
lambda
:
[
app_config
.
split
(
'.'
)[
0
]
for
app_config
in
settings
.
INSTALLED_APPS
])
apps/orgs/views.py
View file @
c82044f6
...
...
@@ -14,8 +14,12 @@ class SwitchOrgView(DetailView):
pk
=
kwargs
.
get
(
'pk'
)
self
.
object
=
Organization
.
get_instance
(
pk
)
request
.
session
[
'oid'
]
=
self
.
object
.
id
.
__str__
()
referer
=
request
.
META
.
get
(
'HTTP_REFERER'
,
reverse
(
'index'
))
host
=
request
.
get_host
()
referer
=
request
.
META
.
get
(
'HTTP_REFERER'
)
if
referer
.
find
(
host
)
!=
-
1
:
return
redirect
(
referer
)
else
:
return
redirect
(
'index'
)
class
SwitchToAOrgView
(
View
):
...
...
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