diff --git a/controllers/middlewares.go b/controllers/middlewares.go
index 09efd1a0..be562abd 100644
--- a/controllers/middlewares.go
+++ b/controllers/middlewares.go
@@ -3,18 +3,26 @@ package controllers
import (
"net/http"
- "github.com/NyaaPantsu/nyaa/utils/messages"
+ "github.com/NyaaPantsu/nyaa/config"
+ "github.com/NyaaPantsu/nyaa/utils/log"
+ msg "github.com/NyaaPantsu/nyaa/utils/messages"
"github.com/gin-gonic/gin"
)
func errorMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Next()
+ if config.Get().Environment == "DEVELOPMENT" {
+ messages := msg.GetMessages(c)
+ if messages.HasErrors() {
+ log.Errorf("Request has errors: %v", messages.GetAllErrors())
+ }
+ }
if c.Writer.Status() != http.StatusOK && c.Writer.Size() <= 0 {
if c.ContentType() == "application/json" {
- msg := messages.GetMessages(c)
- msg.AddErrorT("errors", "404_not_found")
- c.JSON(c.Writer.Status(), msg.GetAllErrors())
+ messages := msg.GetMessages(c)
+ messages.AddErrorT("errors", "404_not_found")
+ c.JSON(c.Writer.Status(), messages.GetAllErrors())
return
}
httpError(c, c.Writer.Status())
diff --git a/templates/site/user/edit.jet.html b/templates/site/user/edit.jet.html
index 5f41e8fb..f31c61c7 100644
--- a/templates/site/user/edit.jet.html
+++ b/templates/site/user/edit.jet.html
@@ -13,7 +13,7 @@
Reset API key
- {{ yield errors(name="email")}}
+ {{ yield errors(name="Email")}}
- {{ yield errors(name="language")}}
+ {{ yield errors(name="Language")}}
{{ if !User.HasAdmin()}}
- {{ yield errors(name="current_password")}}
+ {{ yield errors(name="CurrentPassword")}}
{{end}}
- {{ yield errors(name="password")}}
+ {{ yield errors(name="Password")}}
- {{ yield errors(name="password_confirmation")}}
+ {{ yield errors(name="ConfirmPassword")}}
{{ T("preferences")}}
@@ -42,14 +42,14 @@
- {{ yield errors(name="theme")}}
+ {{ yield errors(name="Theme")}}
{{ if DefaultUserSettings("new_torrent")}}
- {{ yield errors(name="new_torrent")}}
+ {{ yield errors(name="NewTorrent")}}
{{end}}
{{ if DefaultUserSettings("new_torrent_email")}}
@@ -57,7 +57,7 @@
- {{ yield errors(name="new_torrent_email")}}
+ {{ yield errors(name="NewTorrentEmail")}}
{{end}}
{{ if DefaultUserSettings("new_comment")}}
@@ -65,7 +65,7 @@
- {{ yield errors(name="new_comment")}}
+ {{ yield errors(name="NewComment")}}
{{end}}
{{ if DefaultUserSettings("new_comment_email")}}
@@ -73,7 +73,7 @@
- {{ yield errors(name="new_comment_email")}}
+ {{ yield errors(name="NewCommentEmail")}}
{{end}}
{{ if DefaultUserSettings("new_responses")}}
@@ -81,7 +81,7 @@
- {{ yield errors(name="new_responses")}}
+ {{ yield errors(name="NewResponses")}}
{{end}}
{{ if DefaultUserSettings("new_responses_email")}}
@@ -89,7 +89,7 @@
- {{ yield errors(name="new_responses_email")}}
+ {{ yield errors(name="NewResponsesEmail")}}
{{end}}
{{ if DefaultUserSettings("new_follower")}}
@@ -97,7 +97,7 @@
- {{ yield errors(name="new_follower")}}
+ {{ yield errors(name="NewFollower")}}
{{end}}
{{ if DefaultUserSettings("new_follower_email")}}
@@ -105,7 +105,7 @@
- {{ yield errors(name="new_follower_email")}}
+ {{ yield errors(name="NewFollowerEmail")}}
{{end}}
{{ if DefaultUserSettings("followed")}}
@@ -113,7 +113,7 @@
- {{ yield errors(name="followed")}}
+ {{ yield errors(name="Followed")}}
{{end}}
{{ if DefaultUserSettings("followed_email")}}
@@ -121,13 +121,13 @@
- {{ yield errors(name="followed_email")}}
+ {{ yield errors(name="FollowedEmail")}}
{{end}}
{{ if User.HasAdmin()}}
{{ T("moderation")}}
- {{ yield errors(name="username")}}
+ {{ yield errors(name="Username")}}
- {{ yield errors(name="status")}}
+ {{ yield errors(name="Status")}}
{{end}}
diff --git a/templates/site/user/login.jet.html b/templates/site/user/login.jet.html
index f16cd432..7432cb24 100644
--- a/templates/site/user/login.jet.html
+++ b/templates/site/user/login.jet.html
@@ -9,10 +9,10 @@
{{ yield csrf_field()}}
{{ T("sign_in_box_title")}}
- {{ yield errors(name="username")}}
+ {{ yield errors(name="Username")}}
- {{ yield errors(name="password")}}
+ {{ yield errors(name="Password")}}
{{ yield captcha(captchaid=Form.CaptchaID)}}
diff --git a/utils/validator/user/forms.go b/utils/validator/user/forms.go
index d790c215..8165822d 100644
--- a/utils/validator/user/forms.go
+++ b/utils/validator/user/forms.go
@@ -7,7 +7,7 @@ type RegistrationForm struct {
Password string `validate:"required,min=6,max=72,eqfield=ConfirmPassword" form:"password" json:"password"`
ConfirmPassword string `validate:"required" omit:"true" form:"password_confirmation" json:"password_confirmation"` // Omit when binding to user model since user model doesn't have those field
CaptchaID string `validate:"required" omit:"true" form:"captchaID" json:"captchaID"`
- TermsAndConditions string `validate:"eq=true" omit:"true" form:"t_and_c" json:"t_and_c"`
+ TermsAndConditions string `validate:"eq=1" omit:"true" form:"t_and_c" json:"t_and_c"`
}
// LoginForm is used when a user logs in.
diff --git a/utils/validator/user/functions.go b/utils/validator/user/functions.go
index c8cae92c..188136d1 100644
--- a/utils/validator/user/functions.go
+++ b/utils/validator/user/functions.go
@@ -25,7 +25,7 @@ func EmailValidation(email string) bool {
// ValidateUsername : Check if a username is valid
func ValidateUsername(username string) bool {
- return validator.IsUTFLetterNumeric(username)
+ return validator.IsUTFLetterNumeric(username) && len(username) > 0
}
// IsAgreed : Check if terms and conditions are valid
diff --git a/utils/validator/user/functions_test.go b/utils/validator/user/functions_test.go
index c05e3c1e..c9738840 100644
--- a/utils/validator/user/functions_test.go
+++ b/utils/validator/user/functions_test.go
@@ -2,12 +2,13 @@ package userValidator
import (
"testing"
-
- "github.com/NyaaPantsu/nyaa/utils/validator"
)
func TestValideUsername(t *testing.T) {
- tests := [][]interface{}{
+ tests := []struct {
+ Username string
+ Expected bool
+ }{
{
"lol",
true,
@@ -36,12 +37,16 @@ func TestValideUsername(t *testing.T) {
"れんちょん",
true,
},
+ {
+ "",
+ false,
+ },
}
for _, val := range tests {
- testVal := validator.IsUTFLetterNumeric(val[0].(string))
- if testVal != val[1] {
- t.Errorf("The test returned a result %t instead of %t for %s", testVal, val[1].(bool), val[0].(string))
+ testVal := ValidateUsername(val.Username)
+ if testVal != val.Expected {
+ t.Errorf("The test returned a result %t instead of %t for '%s'", testVal, val.Expected, val.Username)
}
}
}
diff --git a/utils/validator/validator.go b/utils/validator/validator.go
index 27a2972e..284ff17c 100644
--- a/utils/validator/validator.go
+++ b/utils/validator/validator.go
@@ -6,10 +6,11 @@ import (
"time"
"unicode"
+ "strconv"
+
"github.com/NyaaPantsu/nyaa/utils/log"
msg "github.com/NyaaPantsu/nyaa/utils/messages"
"github.com/go-playground/validator"
- "strconv"
)
var validate *validator.Validate
@@ -27,7 +28,7 @@ func ValidateForm(form interface{}, mes *msg.Messages) {
for _, fieldError := range err.(validator.ValidationErrors) {
switch fieldError.Tag() {
case "required":
- mes.AddErrorTf(fieldError.Field(), "error_field_needed", fieldError.Field(), fieldError.Param())
+ mes.AddErrorTf(fieldError.Field(), "error_field_needed", fieldError.Field())
case "eq":
mes.AddErrorTf(fieldError.Field(), "error_equal", fieldError.Field(), fieldError.Param())
case "ne", "nefield", "necsfield":
@@ -164,4 +165,4 @@ func DefaultValidator(fl validator.FieldLevel) bool {
}
}
return true
-}
\ No newline at end of file
+}