udemy-go-web-1/internal/forms/forms.go

54 lines
1.1 KiB
Go
Raw Normal View History

2024-06-30 15:08:47 +00:00
package forms
import (
2024-07-01 11:37:03 +00:00
"fmt"
2024-06-30 15:08:47 +00:00
"net/http"
"net/url"
2024-07-01 11:37:03 +00:00
"strings"
2024-06-30 15:08:47 +00:00
)
// Form creates a custom form struct, embeds a url.Values object
type Form struct {
url.Values
Errors errors
}
// New initializes a form struct
func New(data url.Values) *Form {
return &Form{
data,
errors(map[string][]string{}),
}
}
2024-07-01 11:37:03 +00:00
// Required checks required fields
func (f *Form) Required(fields ...string) {
for _, field := range fields {
value := f.Get(field)
if strings.TrimSpace(value) == "" {
f.Errors.Add(field, "This field cannot be blank")
}
}
}
2024-06-30 15:08:47 +00:00
// Has checks if form field is in post and not emtpy
func (f *Form) Has(field string, r *http.Request) bool {
x := r.Form.Get(field)
2024-07-01 11:37:03 +00:00
return x != ""
2024-06-30 17:35:59 +00:00
}
// Valid returns true if there are no errors, otherwise false
func (f *Form) Valid() bool {
return len(f.Errors) == 0
2024-06-30 15:08:47 +00:00
}
2024-07-01 11:37:03 +00:00
// MinLength checks for string minimum length
func (f *Form) MinLength(field string, length int, r *http.Request) bool {
value := r.Form.Get(field)
if len(value) < length {
f.Errors.Add(field, fmt.Sprintf("This field must have at least %d letters", length))
return false
}
return true
}