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")
|
||||
|
||||
// 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
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user