Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-LDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-LDAP
Commits
c797519f
Verified
Commit
c797519f
authored
5 years ago
by
Nik | Klampfradler
Committed by
Tom Teichler
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo and logic of additional field sync
parent
cee70020
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2
Resolve "Sync additional LDAP fields after login"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/apps/ldap/util/ldap_sync.py
+9
-10
9 additions, 10 deletions
aleksis/apps/ldap/util/ldap_sync.py
with
9 additions
and
10 deletions
aleksis/apps/ldap/util/ldap_sync.py
+
9
−
10
View file @
c797519f
...
...
@@ -14,7 +14,7 @@ def setting_name_from_field(model, field):
def
syncable_fields
(
model
):
"""
Collect all fields that can be synced on a model
"""
return
[
field
for
field
in
model
s
.
_meta
.
fields
if
field
.
editable
and
not
field
.
auto_created
]
return
[
field
for
field
in
model
.
_meta
.
fields
if
field
.
editable
and
not
field
.
auto_created
]
def
update_constance_config_fields
():
...
...
@@ -61,17 +61,16 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
return
person
.
user
=
instance
person
.
save
()
# Synchronise additional fields if enabled
for
field
in
syncable_fields
(
Person
):
setting_name
=
setting_name_from_field
(
Person
,
field
)
# Try sync if constance setting for this field is non-empty
ldap_field
=
getattr
(
config
,
setting_name
,
""
)
if
ldap_field
and
ldap_field
in
instance
.
ldap_user
.
attrs
.
data
:
setattr
(
person
,
field
.
_meta
.
name
,
instance
.
ldap_user
.
attrs
.
data
[
ldap_field
])
# Synchronise additional fields if enabled
for
field
in
syncable_fields
(
Person
):
setting_name
=
setting_name_from_field
(
Person
,
field
)
person
.
save
()
# Try sync if constance setting for this field is non-empty
ldap_field
=
getattr
(
config
,
setting_name
,
""
)
if
ldap_field
and
ldap_field
in
instance
.
ldap_user
.
attrs
.
data
:
setattr
(
instance
.
person
,
field
.
name
,
instance
.
ldap_user
.
attrs
.
data
[
ldap_field
][
0
])
if
config
.
ENABLE_LDAP_GROUP_SYNC
:
# Resolve Group objects from LDAP group objects
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment