Skip to content

Commit

Permalink
Add support for storing and retrieving login redirect URI in cookies
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Dec 4, 2024
1 parent f6dad7b commit bafcc91
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/galaxy/webapps/galaxy/controllers/authnz.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
log = logging.getLogger(__name__)

PROVIDER_COOKIE_NAME = "galaxy-oidc-provider"
LOGIN_NEXT_COOKIE_NAME = "galaxy-oidc-login-next"


class OIDC(JSAppLauncher):
Expand Down Expand Up @@ -77,7 +78,9 @@ def login(self, trans, provider, idphint=None):
msg = "Login to Galaxy using third-party identities is not enabled on this Galaxy instance."
log.debug(msg)
return trans.show_error_message(msg)
success, message, redirect_uri = trans.app.authnz_manager.authenticate(provider, trans, idphint=idphint)
if next:
trans.set_cookie(value=next, name=LOGIN_NEXT_COOKIE_NAME)
success, message, redirect_uri = trans.app.authnz_manager.authenticate(provider, trans, idphint)
if success:
return {"redirect_uri": redirect_uri}
else:
Expand All @@ -86,6 +89,7 @@ def login(self, trans, provider, idphint=None):
@web.expose
def callback(self, trans, provider, idphint=None, **kwargs):
user = trans.user.username if trans.user is not None else "anonymous"
login_next = url_for(trans.get_cookie(name=LOGIN_NEXT_COOKIE_NAME) or "/")
if not bool(kwargs):
log.error(f"OIDC callback received no data for provider `{provider}` and user `{user}`")
return trans.show_error_message(
Expand All @@ -110,7 +114,7 @@ def callback(self, trans, provider, idphint=None, **kwargs):
kwargs.get("state", " "),
kwargs["code"],
trans,
login_redirect_url=url_for("/"),
login_redirect_url=login_next,
idphint=idphint,
)
except exceptions.AuthenticationFailed:
Expand Down

0 comments on commit bafcc91

Please sign in to comment.