mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-06 06:49:53 -06:00
Check if LDAPObject is available from a previously cached proxied user
Closes #34412 Signed-off-by: Stefan Guilhen <sguilhen@redhat.com>
This commit is contained in:
committed by
Pedro Igor
parent
a4cbd77043
commit
d66030fcad
@@ -45,7 +45,13 @@ public class LDAPStorageUserManager {
|
||||
}
|
||||
|
||||
public LDAPObject getManagedLDAPObject(String userId) {
|
||||
return managedLDAPObjects.get(userId);
|
||||
ManagedUserEntry entry = managedUsers.get(userId);
|
||||
if (entry != null) {
|
||||
return entry.getLdapUser();
|
||||
}
|
||||
else {
|
||||
return managedLDAPObjects.get(userId);
|
||||
}
|
||||
}
|
||||
|
||||
public void setManagedLDAPObject(String userId, LDAPObject ldapObject) {
|
||||
@@ -74,7 +80,7 @@ public class LDAPStorageUserManager {
|
||||
}
|
||||
|
||||
LDAPTransaction ldapTransaction = new LDAPTransaction(provider, ldapObject);
|
||||
ManagedUserEntry newEntry = new ManagedUserEntry(proxiedUser, ldapTransaction);
|
||||
ManagedUserEntry newEntry = new ManagedUserEntry(proxiedUser, ldapObject, ldapTransaction);
|
||||
managedUsers.put(userId, newEntry);
|
||||
}
|
||||
|
||||
@@ -87,10 +93,12 @@ public class LDAPStorageUserManager {
|
||||
private static class ManagedUserEntry {
|
||||
|
||||
private final UserModel managedProxiedUser;
|
||||
private final LDAPObject ldapUser;
|
||||
private final LDAPTransaction ldapTransaction;
|
||||
|
||||
public ManagedUserEntry(UserModel managedProxiedUser, LDAPTransaction ldapTransaction) {
|
||||
public ManagedUserEntry(UserModel managedProxiedUser, LDAPObject ldapUser, LDAPTransaction ldapTransaction) {
|
||||
this.managedProxiedUser = managedProxiedUser;
|
||||
this.ldapUser = ldapUser;
|
||||
this.ldapTransaction = ldapTransaction;
|
||||
}
|
||||
|
||||
@@ -98,6 +106,10 @@ public class LDAPStorageUserManager {
|
||||
return managedProxiedUser;
|
||||
}
|
||||
|
||||
public LDAPObject getLdapUser() {
|
||||
return ldapUser;
|
||||
}
|
||||
|
||||
public LDAPTransaction getLdapTransaction() {
|
||||
return ldapTransaction;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user