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
794f27bd
Verified
Commit
794f27bd
authored
5 years ago
by
Nik | Klampfradler
Committed by
Tom Teichler
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Suppress exceptions due to LDAP data inconsistencies
parent
0de3054d
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
+12
-6
12 additions, 6 deletions
aleksis/apps/ldap/util/ldap_sync.py
with
12 additions
and
6 deletions
aleksis/apps/ldap/util/ldap_sync.py
+
12
−
6
View file @
794f27bd
...
...
@@ -69,7 +69,9 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
if
config
.
ENABLE_LDAP_SYNC
and
(
created
or
config
.
LDAP_SYNC_ON_UPDATE
)
and
hasattr
(
instance
,
"
ldap_user
"
):
# Check if there is an existing person connected to the user.
if
not
Person
.
objects
.
filter
(
user
=
instance
).
exists
():
if
Person
.
objects
.
filter
(
user
=
instance
).
exists
():
person
=
instance
.
person
else
:
# Build filter criteria depending on config
matches
=
{}
if
"
-email
"
in
config
.
LDAP_MATCHING_FIELDS
:
...
...
@@ -85,7 +87,6 @@ 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
):
...
...
@@ -94,11 +95,9 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
# Try sync if constance setting for this field is non-empty
ldap_field
=
getattr
(
config
,
setting_name
,
""
).
lower
()
if
ldap_field
and
ldap_field
in
instance
.
ldap_user
.
attrs
.
data
:
setattr
(
instance
.
person
,
field
.
name
,
setattr
(
person
,
field
.
name
,
from_ldap
(
instance
.
ldap_user
.
attrs
.
data
[
ldap_field
][
0
],
field
))
instance
.
person
.
save
()
if
config
.
ENABLE_LDAP_GROUP_SYNC
:
# Resolve Group objects from LDAP group objects
group_objects
=
[]
...
...
@@ -116,10 +115,17 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
group_objects
.
append
(
group
)
# Replace linked groups of logged-in user completely
instance
.
person
.
member_of
.
set
(
group_objects
)
person
.
member_of
.
set
(
group_objects
)
# Sync additional fields if enabled in config.
ldap_user
=
instance
.
ldap_user
try
:
person
.
save
()
except
Exception
:
# Exceptions here are silenced because the synchronisation is optional
# FIXME throw warning to user instead
pass
# Remove semaphore
del
instance
.
_skip_signal
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