995fa8e9ce
* Add interface to read body bytes in binding * Add BindingBody implementation for some binding * Fix to use `BindBodyBytesKey` for key * Revert "Fix to use `BindBodyBytesKey` for key" This reverts commit 2c82901ceab6ae53730a3cfcd9839bee11a08f13. * Use private-like key for body bytes * Add tests for BindingBody & ShouldBindBodyWith * Add note for README * Remove redundant space between sentences
36 lines
770 B
Go
36 lines
770 B
Go
// Copyright 2017 Manu Martinez-Almeida. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package binding
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/ugorji/go/codec"
|
|
)
|
|
|
|
type msgpackBinding struct{}
|
|
|
|
func (msgpackBinding) Name() string {
|
|
return "msgpack"
|
|
}
|
|
|
|
func (msgpackBinding) Bind(req *http.Request, obj interface{}) error {
|
|
return decodeMsgPack(req.Body, obj)
|
|
}
|
|
|
|
func (msgpackBinding) BindBody(body []byte, obj interface{}) error {
|
|
return decodeMsgPack(bytes.NewReader(body), obj)
|
|
}
|
|
|
|
func decodeMsgPack(r io.Reader, obj interface{}) error {
|
|
cdc := new(codec.MsgpackHandle)
|
|
if err := codec.NewDecoder(r, cdc).Decode(&obj); err != nil {
|
|
return err
|
|
}
|
|
return validate(obj)
|
|
}
|