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

@ -75,28 +75,28 @@ func (info *Info) Handler(ctx context.Context, route string, progress io.Writer)
Template: instanceTemplate,
})
router.Path(route + "api/login").Handler(httpx.ClientSideRedirect(func(r *http.Request) (string, error) {
router.Path(route + "api/login").Handler(httpx.RedirectHandler(func(r *http.Request) (string, int, error) {
// enforce POST
if r.Method != http.MethodPost {
return "", httpx.ErrMethodNotAllowed
return "", 0, httpx.ErrMethodNotAllowed
}
// parse the form
if err := r.ParseForm(); err != nil {
return "", err
return "", 0, err
}
// get the instance
instance, err := info.Instances.WissKI(r.Context(), r.PostFormValue("slug"))
if err != nil {
return "", httpx.ErrNotFound
return "", 0, httpx.ErrNotFound
}
target, err := instance.Users().Login(r.Context(), nil, r.PostFormValue("user"))
if err != nil {
return "", err
return "", 0, err
}
return target.String(), err
return target.String(), http.StatusSeeOther, err
}))
return