summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSybren <122987084+drsybren@users.noreply.github.com>2023-01-24 17:41:38 +0100
committerGitHub <noreply@github.com>2023-01-24 11:41:38 -0500
commit95e8ea944097ca14d21f2b2a2601f85c28e1cd7c (patch)
tree6b48ed0c8842b1d198e83ca71a2fb39c138843c0
parent9cc15d18dfe25f5e0a7569ffb6203e9a4dbb2404 (diff)
downloadgitea-95e8ea944097ca14d21f2b2a2601f85c28e1cd7c.tar.gz
gitea-95e8ea944097ca14d21f2b2a2601f85c28e1cd7c.zip
Allow setting `redirect_to` cookie on OAuth login (#22594)
The regular login flow can use a `redirect_to` cookie to ensure the user ends their authentication flow on the same page as where they started it. This commit adds the same functionality to the OAuth login URLs, so that you can use URLs like these to directly use a specific OAuth provider: `/user/oauth2/{provider}?redirect_to={post-login path}` Only the `auth.SignInOAuth()` function needed a change for this, as the rest of the login flow is aware of this cookie and uses it properly already.
-rw-r--r--routers/web/auth/oauth.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/web/auth/oauth.go b/routers/web/auth/oauth.go
index 3d70ca9a50..be60a0c73b 100644
--- a/routers/web/auth/oauth.go
+++ b/routers/web/auth/oauth.go
@@ -847,6 +847,11 @@ func SignInOAuth(ctx *context.Context) {
return
}
+ redirectTo := ctx.FormString("redirect_to")
+ if len(redirectTo) > 0 {
+ middleware.SetRedirectToCookie(ctx.Resp, redirectTo)
+ }
+
// try to do a direct callback flow, so we don't authenticate the user again but use the valid accesstoken to get the user
user, gothUser, err := oAuth2UserLoginCallback(authSource, ctx.Req, ctx.Resp)
if err == nil && user != nil {