I am working on a custom authentication solution for our Atlassian installation. I have modified the login.url and the link.login.url init-params in the seraph-config.xml to point to our authentication service. After the user has authenticated to our external system, I am unable to add the user (Principal) to the session in a way that Confluence recognizes that the user is authenticated. This causes a loop between Confluence and the authentication system resulting in a redirect loop error message in the browser.
I am using the Atlassian refapp for my plugin because I would like to apply this plugin to Jira, Confluence, Stash and Bamboo. After successfully logging in via the custom authentication solution and looking up the user in the UserProfile privded by the Atlassian UserManager:
UserProfile userProfile = userManager.getUserProfile(uid); final String jiraUsername = userProfile.getUsername();
I attempt to add the user (Principal) to the session with the following code:
request.getSession().setAttribute(ConfluenceAuthenticator.LOGGED_IN_KEY, principal); request.getSession().setAttribute(ConfluenceAuthenticator.LOGGED_OUT_KEY, null);
Pretty much the same code works for Jira (using DefaultAuthenticator instead of ConfluenceAuthenticator). Is there something else I need to do to get Confluence to recognize the authenticated user?
Hi Lloyd,
I never used a UserProfile for that, just take a ConfluenceUser. and maybe this one helps:
https://docs.atlassian.com/atlassian-seraph/latest/sso.html
Just use the Confluence(GroupJoining)Authenticator instead of the DefaultAuthenticator
And I think those two lines might help
authoriseUserAndEstablishSession(request, response, user); getElevatedSecurityGuard().onSuccessfulLoginAttempt(request, user.getName());
Regards
Steve
Thanks Steve! This tip pointed me in the right direction and I was able to resolve my issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.