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
ce641b19
Verified
Commit
ce641b19
authored
5 years ago
by
Nik | Klampfradler
Committed by
Tom Teichler
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Implement type conversion for additional fields
Advances
#3
parent
37d205a2
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aleksis/apps/ldap/util/ldap_sync.py
+22
-2
22 additions, 2 deletions
aleksis/apps/ldap/util/ldap_sync.py
pyproject.toml
+1
-0
1 addition, 0 deletions
pyproject.toml
with
23 additions
and
2 deletions
aleksis/apps/ldap/util/ldap_sync.py
+
22
−
2
View file @
ce641b19
from
django.apps
import
apps
from
django.conf
import
settings
from
django.contrib.auth
import
get_user_model
from
django.db.models
import
fields
from
constance
import
config
...
...
@@ -17,6 +18,24 @@ def syncable_fields(model):
return
[
field
for
field
in
model
.
_meta
.
fields
if
field
.
editable
and
not
field
.
auto_created
]
def
from_ldap
(
value
,
field
):
"""
Convert an LDAP value to the Python type of the target field
This conversion is prone to error because LDAP deliberately breaks
standards to cope with ASN.1 limitations.
"""
from
ldapdb.models.fields
import
datetime_from_ldap
# noqa
# Pre-convert DateTimeField and DateField due to ISO 8601 limitations in RFC 4517
if
type
(
field
)
in
(
fields
.
DateField
,
fields
.
DateTimeField
):
# Be opportunistic, but keep old value if conversion fails
value
=
datetime_from_ldap
(
value
)
or
value
# Finally, use field's conversion method as default
return
field
.
to_python
(
value
)
def
update_constance_config_fields
():
"""
Auto-generate sync field settings from models
"""
...
...
@@ -73,9 +92,10 @@ def ldap_sync_from_user(sender, instance, created, raw, using, update_fields, **
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
,
""
)
ldap_field
=
getattr
(
config
,
setting_name
,
""
)
.
lower
()
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
])
setattr
(
instance
.
person
,
field
.
name
,
from_ldap
(
instance
.
ldap_user
.
attrs
.
data
[
ldap_field
][
0
],
field
))
instance
.
person
.
save
()
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
0
View file @
ce641b19
...
...
@@ -20,6 +20,7 @@ classifiers = [
[tool.poetry.dependencies]
python
=
"^3.7"
django-ldapdb
=
"^1.4.0"
AlekSIS
=
{
path
=
"../../.."
}
[build-system]
...
...
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