Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/controllers/user/login.go

47 lignes
1.2 KiB
Go

package userController
import (
"net/http"
"github.com/NyaaPantsu/nyaa/templates"
"github.com/NyaaPantsu/nyaa/utils/cookies"
msg "github.com/NyaaPantsu/nyaa/utils/messages"
"github.com/NyaaPantsu/nyaa/utils/validator"
"github.com/NyaaPantsu/nyaa/utils/validator/user"
"github.com/gin-gonic/gin"
)
// UserLoginFormHandler : Getting View User Login
func UserLoginFormHandler(c *gin.Context) {
_, _, errorUser := cookies.CurrentUser(c)
// User is already connected, redirect to home
if errorUser == nil {
c.Redirect(http.StatusSeeOther, "/")
return
}
loginForm := userValidator.LoginForm{
RedirectTo: c.DefaultQuery("redirectTo", ""),
}
templates.Form(c, "site/user/login.jet.html", loginForm)
}
// UserLoginPostHandler : Post Login controller
func UserLoginPostHandler(c *gin.Context) {
b := userValidator.LoginForm{}
c.Bind(&b)
messages := msg.GetMessages(c)
validator.ValidateForm(&b, messages)
if !messages.HasErrors() {
_, _, errorUser := cookies.CreateUserAuthentication(c, &b)
if errorUser == nil {
url := c.DefaultPostForm("redirectTo", "/")
c.Redirect(http.StatusSeeOther, url)
return
}
messages.ErrorT(errorUser)
}
UserLoginFormHandler(c)
}