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
cee70020
Verified
Commit
cee70020
authored
5 years ago
by
Nik | Klampfradler
Committed by
Tom Teichler
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Move field detection to function
parent
379d1b68
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
+18
-14
18 additions, 14 deletions
aleksis/apps/ldap/util/ldap_sync.py
with
18 additions
and
14 deletions
aleksis/apps/ldap/util/ldap_sync.py
+
18
−
14
View file @
cee70020
...
...
@@ -11,6 +11,12 @@ def setting_name_from_field(model, field):
return
"
LDAP_ADDITIONAL_FIELD_%s_%s
"
%
(
model
.
_meta
.
label
,
field
.
name
)
def
syncable_fields
(
model
):
"""
Collect all fields that can be synced on a model
"""
return
[
field
for
field
in
models
.
_meta
.
fields
if
field
.
editable
and
not
field
.
auto_created
]
def
update_constance_config_fields
():
"""
Auto-generate sync field settings from models
"""
...
...
@@ -18,13 +24,12 @@ def update_constance_config_fields():
for
model
in
(
Person
,):
# Collect fields that are matchable
setting_names
=
[]
for
field
in
model
.
_meta
.
fields
:
if
field
.
editable
and
not
field
.
auto_created
:
setting_name
=
setting_name_from_field
(
model
,
field
)
setting_desc
=
field
.
verbose_name
for
field
in
syncable_fields
(
model
):
setting_name
=
setting_name_from_field
(
model
,
field
)
setting_desc
=
field
.
verbose_name
settings
.
CONSTANCE_CONFIG
[
setting_name
]
=
(
""
,
setting_desc
,
str
)
setting_names
.
append
(
setting_name
)
settings
.
CONSTANCE_CONFIG
[
setting_name
]
=
(
""
,
setting_desc
,
str
)
setting_names
.
append
(
setting_name
)
# Add separate constance section if settings were generated
if
setting_names
:
...
...
@@ -58,14 +63,13 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
person
.
user
=
instance
# Synchronise additional fields if enabled
for
field
in
Person
.
_meta
.
fields
:
if
field
.
editable
and
not
field
.
auto_created
:
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
])
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
])
person
.
save
()
...
...
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