1
0
mirror of https://github.com/ggicci/httpin.git synced 2024-11-24 08:32:45 +02:00
httpin/body.go
2022-05-31 12:33:07 +08:00

125 lines
2.9 KiB
Go

// directive: "body"
// https://ggicci.github.io/httpin/directives/body
package httpin
import (
"encoding/json"
"encoding/xml"
"fmt"
"io"
"reflect"
"strings"
)
const (
bodyTypeJSON = "json"
bodyTypeXML = "xml"
)
type (
// JSONBody is the annotation for JSON body.
JSONBody struct{}
// XMLBody is the annotation for XML body.
XMLBody struct{}
// BodyDecoder decodes the request body into the specified object. Common body types are:
// json, xml, yaml, and others.
BodyDecoder interface {
Decode(src io.Reader, dst interface{}) error
}
)
var (
bodyTypeAnnotationJSON = reflect.TypeOf(JSONBody{})
bodyTypeAnnotationXML = reflect.TypeOf(XMLBody{})
bodyDecoders = map[string]BodyDecoder{
bodyTypeJSON: &defaultJSONBodyDecoder{},
bodyTypeXML: &defaultXMLBodyDecoder{},
}
)
// RegisterBodyDecoder registers a new body decoder. Panic if the body type is already registered.
//
// func init() {
// RegisterBodyDecoder("yaml", &myYAMLBodyDecoder{})
// }
func RegisterBodyDecoder(bodyType string, decoder BodyDecoder) {
if _, ok := bodyDecoders[bodyType]; ok {
panic(fmt.Errorf("httpin: %w: %q", ErrDuplicateBodyDecoder, bodyType))
}
ReplaceBodyDecoder(bodyType, decoder)
}
// ReplaceBodyDecoder replaces or add the body decoder of the specified type.
// Which is useful when you want to override the default body decoder. For example,
// the default JSON decoder is borrowed from encoding/json. You can replace it with
// your own implementation, e.g. json-iterator/go.
//
// func init() {
// ReplaceBodyDecoder("json", &myJSONBodyDecoder{})
// }
func ReplaceBodyDecoder(bodyType string, decoder BodyDecoder) {
if bodyType == "" {
panic("httpin: body type cannot be empty")
}
bodyDecoders[bodyType] = decoder
}
func bodyDirectiveNormalizer(dir *Directive) error {
if len(dir.Argv) == 0 {
dir.Argv = []string{bodyTypeJSON}
}
dir.Argv[0] = strings.ToLower(dir.Argv[0])
var bodyType = dir.Argv[0]
if _, ok := bodyDecoders[bodyType]; !ok {
return fmt.Errorf("%w: %q", ErrUnknownBodyType, bodyType)
}
return nil
}
func bodyTypeString(bodyType reflect.Type) string {
switch bodyType {
case bodyTypeAnnotationJSON:
return bodyTypeJSON
case bodyTypeAnnotationXML:
return bodyTypeXML
default:
panic(fmt.Errorf("httpin: %w: %q", ErrUnknownBodyType, bodyType))
}
}
func bodyDecoder(ctx *DirectiveContext) error {
var (
bodyType = ctx.Argv[0]
decoder = bodyDecoders[bodyType]
)
if decoder == nil {
return ErrUnknownBodyType
}
obj := ctx.Value.Interface()
if err := decoder.Decode(ctx.Request.Body, &obj); err != nil {
return err
}
ctx.DeliverContextValue(StopRecursion, true)
return nil
}
type defaultJSONBodyDecoder struct{}
func (de *defaultJSONBodyDecoder) Decode(src io.Reader, dst interface{}) error {
return json.NewDecoder(src).Decode(dst)
}
type defaultXMLBodyDecoder struct{}
func (de *defaultXMLBodyDecoder) Decode(src io.Reader, dst interface{}) error {
return xml.NewDecoder(src).Decode(dst)
}