2015-03-31 15:51:10 +00:00
|
|
|
// Copyright 2014 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 (
|
|
|
|
"net/http"
|
2017-07-08 08:49:09 +00:00
|
|
|
|
2017-07-08 10:19:09 +00:00
|
|
|
"github.com/json-iterator/go"
|
2015-03-31 15:51:10 +00:00
|
|
|
)
|
|
|
|
|
2017-07-08 10:19:09 +00:00
|
|
|
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
|
2015-03-31 15:51:10 +00:00
|
|
|
type jsonBinding struct{}
|
|
|
|
|
2015-07-10 11:06:01 +00:00
|
|
|
func (jsonBinding) Name() string {
|
2015-03-31 15:51:10 +00:00
|
|
|
return "json"
|
|
|
|
}
|
|
|
|
|
2015-07-10 11:06:01 +00:00
|
|
|
func (jsonBinding) Bind(req *http.Request, obj interface{}) error {
|
2015-03-31 15:51:10 +00:00
|
|
|
decoder := json.NewDecoder(req.Body)
|
2015-04-07 10:30:16 +00:00
|
|
|
if err := decoder.Decode(obj); err != nil {
|
2015-03-31 15:51:10 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-05-31 14:30:00 +00:00
|
|
|
return validate(obj)
|
2015-03-31 15:51:10 +00:00
|
|
|
}
|