Server Side form validation 4: check email

This commit is contained in:
Muyao CHEN
2024-07-01 13:47:52 +02:00
parent 87dfd26268
commit 6826634a01
4 changed files with 15 additions and 0 deletions

View File

@ -5,6 +5,8 @@ import (
"net/http"
"net/url"
"strings"
"github.com/asaskevich/govalidator"
)
// Form creates a custom form struct, embeds a url.Values object
@ -51,3 +53,11 @@ func (f *Form) MinLength(field string, length int, r *http.Request) bool {
}
return true
}
// IsEmail checks the email address
func (f *Form) IsEmail(field string, r *http.Request) {
value := r.Form.Get(field)
if !govalidator.IsEmail(value) {
f.Errors.Add(field, "Invalid email address")
}
}