97a32b1de3
* setFormMap error of result * adjust code for TrySet * error export for type multipart.FileHeader * code style adjust * reflect code maping optimize * Update form_mapping.go Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-authored-by: thinkerou <thinkerou@gmail.com>
35 lines
726 B
Go
35 lines
726 B
Go
package binding
|
|
|
|
import (
|
|
"net/http"
|
|
"net/textproto"
|
|
"reflect"
|
|
)
|
|
|
|
type headerBinding struct{}
|
|
|
|
func (headerBinding) Name() string {
|
|
return "header"
|
|
}
|
|
|
|
func (headerBinding) Bind(req *http.Request, obj interface{}) error {
|
|
|
|
if err := mapHeader(obj, req.Header); err != nil {
|
|
return err
|
|
}
|
|
|
|
return validate(obj)
|
|
}
|
|
|
|
func mapHeader(ptr interface{}, h map[string][]string) error {
|
|
return mappingByPtr(ptr, headerSource(h), "header")
|
|
}
|
|
|
|
type headerSource map[string][]string
|
|
|
|
var _ setter = headerSource(nil)
|
|
|
|
func (hs headerSource) TrySet(value reflect.Value, field reflect.StructField, tagValue string, opt setOptions) (bool, error) {
|
|
return setByForm(value, field, hs, textproto.CanonicalMIMEHeaderKey(tagValue), opt)
|
|
}
|