Added FormScanner custom scanner, updated Go version.
This commit is contained in:
parent
acbdcae5f9
commit
010243c726
@ -8,12 +8,17 @@ import (
|
|||||||
|
|
||||||
var ErrUnsupportedType = errors.New("unsupported type")
|
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 FormScanFunc func(name string, val any) (bool, error)
|
||||||
|
|
||||||
type FormScanner struct {
|
type FormScanner struct {
|
||||||
form url.Values
|
form url.Values
|
||||||
err error
|
err error
|
||||||
scanFunc FormScanFunc
|
ScanFunc FormScanFunc
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewFormScanner(form url.Values) *FormScanner {
|
func NewFormScanner(form url.Values) *FormScanner {
|
||||||
@ -25,10 +30,9 @@ func (s *FormScanner) Scan(name string, val any) *FormScanner {
|
|||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.scanFunc != nil {
|
if s.ScanFunc != nil {
|
||||||
ok, err := s.scanFunc(name, val)
|
if ok, err := s.ScanFunc(name, val); ok {
|
||||||
s.err = err
|
s.err = err
|
||||||
if ok || err != nil {
|
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user