@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
}
}
}