Added FormScanner custom scanner, updated Go version.

This commit is contained in:
jdl 2025-03-30 11:08:20 +02:00
parent acbdcae5f9
commit 010243c726

View File

@ -8,12 +8,17 @@ import (
var ErrUnsupportedType = errors.New("unsupported type")
// FormScanFunc is a custom form scanner that can be used to scan custom
// types using the form scanner.
//
// It returns true if it recognizes the type of val, and an error if scanning
// fails.
type FormScanFunc func(name string, val any) (bool, error)
type FormScanner struct {
form url.Values
err error
scanFunc FormScanFunc
ScanFunc FormScanFunc
}
func NewFormScanner(form url.Values) *FormScanner {
@ -25,10 +30,9 @@ func (s *FormScanner) Scan(name string, val any) *FormScanner {
return s
}
if s.scanFunc != nil {
ok, err := s.scanFunc(name, val)
s.err = err
if ok || err != nil {
if s.ScanFunc != nil {
if ok, err := s.ScanFunc(name, val); ok {
s.err = err
return s
}
}