|
|
@ -20,6 +20,7 @@ import (
|
|
|
|
"encoding/json"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"io/ioutil"
|
|
|
|
"mime"
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
"net/http"
|
|
|
|
"reflect"
|
|
|
|
"reflect"
|
|
|
@ -29,7 +30,10 @@ import (
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// DefaultEncoder is an *AcceptEncoder with the default application/json encoding.
|
|
|
|
// DefaultEncoder is an *AcceptEncoder with the default application/json encoding.
|
|
|
|
var DefaultEncoder = &AcceptEncoder{DefaultEncoding: "application/json"}
|
|
|
|
var DefaultEncoder = &AcceptEncoder{DefaultEncoding: "application/json", MaxReadLen: DefaultMaxReadLen}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// DefaultMaxReadLen is the default maximum length to accept in an HTTP request body.
|
|
|
|
|
|
|
|
var DefaultMaxReadLen int64 = 1024 * 1024
|
|
|
|
|
|
|
|
|
|
|
|
// Encoder takes input and translate it to an expected encoded output.
|
|
|
|
// Encoder takes input and translate it to an expected encoded output.
|
|
|
|
//
|
|
|
|
//
|
|
|
@ -46,6 +50,19 @@ type Encoder interface {
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// The integer must be a valid http.Status* status code.
|
|
|
|
// The integer must be a valid http.Status* status code.
|
|
|
|
Encode(http.ResponseWriter, *http.Request, interface{}, int)
|
|
|
|
Encode(http.ResponseWriter, *http.Request, interface{}, int)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Decode reads and decodes a request body.
|
|
|
|
|
|
|
|
Decode(http.ResponseWriter, *http.Request, interface{}) error
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Decode decodes a request body using the DefaultEncoder.
|
|
|
|
|
|
|
|
func Decode(w http.ResponseWriter, r *http.Request, v interface{}) error {
|
|
|
|
|
|
|
|
return DefaultEncoder.Decode(w, r, v)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Encode encodes a request body using the DefaultEncoder.
|
|
|
|
|
|
|
|
func Encode(w http.ResponseWriter, r *http.Request, v interface{}, statusCode int) {
|
|
|
|
|
|
|
|
DefaultEncoder.Encode(w, r, v, statusCode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// AcceptEncoder uses the accept headers on a request to determine the response type.
|
|
|
|
// AcceptEncoder uses the accept headers on a request to determine the response type.
|
|
|
@ -58,6 +75,7 @@ type Encoder interface {
|
|
|
|
// It treats `application/x-yaml` as `text/yaml`.
|
|
|
|
// It treats `application/x-yaml` as `text/yaml`.
|
|
|
|
type AcceptEncoder struct {
|
|
|
|
type AcceptEncoder struct {
|
|
|
|
DefaultEncoding string
|
|
|
|
DefaultEncoding string
|
|
|
|
|
|
|
|
MaxReadLen int64
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Encode encodeds the given interface to the first available type in the Accept header.
|
|
|
|
// Encode encodeds the given interface to the first available type in the Accept header.
|
|
|
@ -79,6 +97,35 @@ func (e *AcceptEncoder) Encode(w http.ResponseWriter, r *http.Request, out inter
|
|
|
|
w.Write(data)
|
|
|
|
w.Write(data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Decode decodes the given request into the given interface.
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// It selects the marshal based on the value of the Content-Type header. If no
|
|
|
|
|
|
|
|
// viable decoder is found, it attempts to use the DefaultEncoder.
|
|
|
|
|
|
|
|
func (e *AcceptEncoder) Decode(w http.ResponseWriter, r *http.Request, v interface{}) error {
|
|
|
|
|
|
|
|
if e.MaxReadLen > 0 && r.ContentLength > int64(e.MaxReadLen) {
|
|
|
|
|
|
|
|
RequestEntityTooLarge(w, r, fmt.Sprintf("Max len is %d, submitted len is %d.", e.MaxReadLen, r.ContentLength))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(r.Body)
|
|
|
|
|
|
|
|
r.Body.Close()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ct := r.Header.Get("content-type")
|
|
|
|
|
|
|
|
mt, _, err := mime.ParseMediaType(ct)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
mt = "application/x-octet-stream"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for n, fn := range decoders {
|
|
|
|
|
|
|
|
if n == mt {
|
|
|
|
|
|
|
|
return fn(data, v)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return decoders[e.DefaultEncoding](data, v)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// parseAccept parses the value of an Accept: header and returns the best match.
|
|
|
|
// parseAccept parses the value of an Accept: header and returns the best match.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// This returns the matched MIME type and the Marshal function.
|
|
|
|
// This returns the matched MIME type and the Marshal function.
|
|
|
@ -100,6 +147,9 @@ func (e *AcceptEncoder) parseAccept(h string) (string, Marshaler) {
|
|
|
|
// Marshaler marshals an interface{} into a []byte.
|
|
|
|
// Marshaler marshals an interface{} into a []byte.
|
|
|
|
type Marshaler func(interface{}) ([]byte, error)
|
|
|
|
type Marshaler func(interface{}) ([]byte, error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Unmarshaler unmarshals []byte to an interface{}.
|
|
|
|
|
|
|
|
type Unmarshaler func([]byte, interface{}) error
|
|
|
|
|
|
|
|
|
|
|
|
var encoders = map[string]Marshaler{
|
|
|
|
var encoders = map[string]Marshaler{
|
|
|
|
"application/json": json.Marshal,
|
|
|
|
"application/json": json.Marshal,
|
|
|
|
"text/yaml": yaml.Marshal,
|
|
|
|
"text/yaml": yaml.Marshal,
|
|
|
@ -107,6 +157,12 @@ var encoders = map[string]Marshaler{
|
|
|
|
"text/plain": textMarshal,
|
|
|
|
"text/plain": textMarshal,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var decoders = map[string]Unmarshaler{
|
|
|
|
|
|
|
|
"application/json": json.Unmarshal,
|
|
|
|
|
|
|
|
"text/yaml": yaml.Unmarshal,
|
|
|
|
|
|
|
|
"application/x-yaml": yaml.Unmarshal,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ErrUnsupportedKind indicates that the marshal cannot marshal a particular Go Kind (e.g. struct or chan).
|
|
|
|
// ErrUnsupportedKind indicates that the marshal cannot marshal a particular Go Kind (e.g. struct or chan).
|
|
|
|
var ErrUnsupportedKind = errors.New("unsupported kind")
|
|
|
|
var ErrUnsupportedKind = errors.New("unsupported kind")
|
|
|
|
|
|
|
|
|
|
|
|