diff --git a/pages/login-memory.go.html b/pages/login-memory.go.html index a566467..395eb60 100644 --- a/pages/login-memory.go.html +++ b/pages/login-memory.go.html @@ -17,6 +17,7 @@
+
diff --git a/pages/login.go.html b/pages/login.go.html index 99380de..134b2cc 100644 --- a/pages/login.go.html +++ b/pages/login.go.html @@ -10,6 +10,7 @@
+
diff --git a/server/login.go b/server/login.go index 653c85d..5d5cd68 100644 --- a/server/login.go +++ b/server/login.go @@ -33,11 +33,13 @@ func (h *HttpServer) loginGet(rw http.ResponseWriter, req *http.Request, _ httpr pages.RenderPageTemplate(rw, "login-memory", map[string]any{ "ServiceName": h.conf.ServiceName, "LoginName": cookie.Value, + "Redirect": req.URL.Query().Get("redirect"), }) return } pages.RenderPageTemplate(rw, "login", map[string]any{ "ServiceName": h.conf.ServiceName, + "Redirect": req.URL.Query().Get("redirect"), }) } @@ -85,7 +87,7 @@ func (h *HttpServer) loginPost(rw http.ResponseWriter, req *http.Request, _ http // save state for use later state := login.Config.Namespace + ":" + uuid.NewString() - h.flowState.Set(state, flowStateData{login}, time.Now().Add(15*time.Minute)) + h.flowState.Set(state, flowStateData{login, req.PostFormValue("redirect")}, time.Now().Add(15*time.Minute)) // generate oauth2 config and redirect to authorize URL oa2conf := login.OAuth2Config @@ -135,6 +137,9 @@ func (h *HttpServer) loginCallback(rw http.ResponseWriter, req *http.Request, _ http.Error(rw, "Internal Server Error", http.StatusInternalServerError) return } + if flowState.redirect != "" { + req.Form.Set("redirect", flowState.redirect) + } h.SafeRedirect(rw, req) } diff --git a/server/server.go b/server/server.go index 08f2b8e..75bf0f2 100644 --- a/server/server.go +++ b/server/server.go @@ -41,7 +41,8 @@ type HttpServer struct { } type flowStateData struct { - sso *issuer.WellKnownOIDC + sso *issuer.WellKnownOIDC + redirect string } func NewHttpServer(conf Conf, db *database.DB, signingKey mjwt.Signer) *http.Server { diff --git a/test-client/index.html b/test-client/index.html index d57203a..955835b 100644 --- a/test-client/index.html +++ b/test-client/index.html @@ -6,24 +6,17 @@