Jira user Login Details are not recorded after integrating Jira with PingFederate Single Sign On Server

Kirankumar Talapaneni April 22, 2015

Hello,

1. We have integrated Jira with Ping federate Single Sign On Server and the users login to Jira with out entering username and password.
2. But, the Login Details of the users are not recorded (unless they login to jira manually by entering username and password).
3. Because of this, we are unable to do user access review. We are trying to inactivate users who are not accessing/using jira (by looking at the Last Login Date)

 

1 answer

0 votes
Titus
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 2, 2015

Seems like the Ping Federate plugin does not login the user properly.

When logging in a user the onLoginAttempt(...) method of com.atlassian.jira.security.login.LoginManager should be called. This will update the login details for the user.

 

https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/security/login/LoginManager.html#onLoginAttempt%28javax.servlet.http.HttpServletRequest,%20java.lang.String,%20boolean%29

 

ApplicationUser appUser;

HttpServletRequest request;

LoginManager loginManager = ComponentAccessor.getComponent(LoginManager.class);

loginManager.onLoginAttempt(request, appUser.getKey(), true);

 

Suggest an answer

Log in or Sign up to answer