79445380

Date: 2025-02-17 12:25:34
Score: 4
Natty:
Report link

@Twisted Tea, I'm working with a custom EventListenerProvider in Keycloak 18 to handle events, specifically LOGIN and LOGIN_ERROR. I am trying to modify the Event object details and add additional information (like orgId). I want to achieve updated event details in the event UI for any LOGIN events.

public class TenantEventListenerProvider implements EventListenerProvider {
  private final KeycloakSession keycloakSession;

  @Override
  public void onEvent(Event event) {
    if (event.getType() == EventType.LOGIN || event.getType() == EventType.LOGIN_ERROR) {
      String orgId = extractOrgId(event);
      Event clonedEvent = event.clone();
      Map<String, String> eventDetails = new HashMap<>(clonedEvent.getDetails());
      eventDetails.put("orgId", orgId);
      clonedEvent.setDetails(eventDetails);
      keycloakSession.getTransactionManager().commit();  // <-- Commit causing the error
    }
  }
}
Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Twisted
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Pat's