-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(user_ldap): Avoid extra LDAP request when mapping a user for the first time #46114
Merged
blizzz
merged 6 commits into
master
from
enh/improve-ldap-group-members-listing-performances
Sep 3, 2024
Merged
fix(user_ldap): Avoid extra LDAP request when mapping a user for the first time #46114
blizzz
merged 6 commits into
master
from
enh/improve-ldap-group-members-listing-performances
Sep 3, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
come-nc
force-pushed
the
enh/improve-ldap-group-members-listing-performances
branch
from
July 9, 2024 07:29
4b75668
to
e681d82
Compare
come-nc
added
3. to review
Waiting for reviews
and removed
2. developing
Work in progress
labels
Jul 9, 2024
This comment was marked as outdated.
This comment was marked as outdated.
Merged
…first time Avoids using several LDAP searches to get UUID, display name and internal name, now gets all attributes at the same time. Also avoids extra request to build an unused user object in userExists. Signed-off-by: Côme Chilliet <[email protected]>
…n mapping new user Signed-off-by: Côme Chilliet <[email protected]>
Signed-off-by: Côme Chilliet <[email protected]>
Avoid surprises by making sure these are lowercased apart from documented special case user displayname. Signed-off-by: Côme Chilliet <[email protected]>
…anager Signed-off-by: Côme Chilliet <[email protected]>
come-nc
force-pushed
the
enh/improve-ldap-group-members-listing-performances
branch
from
August 27, 2024 10:15
f3e9cde
to
c3029c7
Compare
come-nc
requested review from
blizzz,
a team,
ArtificialOwl,
icewind1991 and
sorbaugh
and removed request for
a team
August 27, 2024 10:15
Signed-off-by: Côme Chilliet <[email protected]>
artonge
approved these changes
Sep 2, 2024
blizzz
approved these changes
Sep 3, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did not test, but looks good and reasonable
blizzz
deleted the
enh/improve-ldap-group-members-listing-performances
branch
September 3, 2024 09:13
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Avoids using several LDAP searches to get UUID, display name and
internal name, now gets all attributes at the same time.
Also avoids extra request to build an unused user object in userExists.
TODO
Avoid extra request to fetch the display name by directly caching it. (The display name is fetched by dav to update the calendar entry as soon as the user is mapped).This is too complicated because of internal quirks, keeping an extra request for the display name for now.Checklist