Browse Source

Fix nil render data on invalid password

This would cause this error:

    template: head.html:7:15: executing "head.html" at <index .Global.Path 0>: error calling index: index of untyped nil
master
Simon Ser 3 years ago
parent
commit
92b3016196
No known key found for this signature in database GPG Key ID: FDE7BE0E88F5E48
1 changed files with 10 additions and 9 deletions
  1. +10
    -9
      plugins/base/routes.go

+ 10
- 9
plugins/base/routes.go View File

@@ -171,6 +171,14 @@ func handleLogin(ctx *alps.Context) error {
password := ctx.FormValue("password")
remember := ctx.FormValue("remember-me")

renderData := struct {
alps.BaseRenderData
CanRememberMe bool
}{
BaseRenderData: *alps.NewBaseRenderData(ctx),
CanRememberMe: ctx.Server.Options.LoginKey != nil,
}

if username == "" && password == "" {
username, password = ctx.GetLoginToken()
}
@@ -179,7 +187,7 @@ func handleLogin(ctx *alps.Context) error {
s, err := ctx.Server.Sessions.Put(username, password)
if err != nil {
if _, ok := err.(alps.AuthError); ok {
return ctx.Render(http.StatusOK, "login.html", nil)
return ctx.Render(http.StatusOK, "login.html", &renderData)
}
return fmt.Errorf("failed to put connection in pool: %v", err)
}
@@ -195,14 +203,7 @@ func handleLogin(ctx *alps.Context) error {
return ctx.Redirect(http.StatusFound, "/mailbox/INBOX")
}

return ctx.Render(http.StatusOK, "login.html",
&struct {
alps.BaseRenderData
CanRememberMe bool
}{
BaseRenderData: *alps.NewBaseRenderData(ctx),
CanRememberMe: ctx.Server.Options.LoginKey != nil,
})
return ctx.Render(http.StatusOK, "login.html", &renderData)
}

func handleLogout(ctx *alps.Context) error {


Loading…
Cancel
Save