api/login: Use 'See Other' return code

This commit is contained in:
Tom Wiesing 2022-12-05 14:04:37 +01:00
parent e9b88b9991
commit 4dc2559431
No known key found for this signature in database
2 changed files with 6 additions and 33 deletions

View file

@ -2,7 +2,6 @@ package httpx
import (
"net/http"
"text/template"
)
// RedirectHandler represents a handler that redirects the user to the address returned
@ -21,29 +20,3 @@ func (rh RedirectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// do the redirect
http.Redirect(w, r, url, code)
}
type ClientSideRedirect func(r *http.Request) (string, error)
var htmlTemplate = template.Must(template.New("").Parse(`
<!DOCTYPE html>
<html lang="en">
<title>Redirecting</title>
<meta http-equiv="refresh" content="0; url={{ . }}" />
You should be redirected to <a href="{{ . }}">{{ . }}</a>
`))
// ServeHTTP calls r(r) and returns json
func (rh ClientSideRedirect) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// call the function
url, err := rh(r)
// intercept the errors
if htmlInterceptor.Intercept(w, r, err) {
return
}
// write out the response as json
w.Header().Set("Content-Type", "text/html")
w.WriteHeader(http.StatusOK)
htmlTemplate.Execute(w, url)
}