2015-03-31 18:51:10 +03: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.
|
|
|
|
|
2019-04-17 17:10:21 +03:00
|
|
|
package json
|
2015-03-31 18:51:10 +03:00
|
|
|
|
|
|
|
import (
|
2018-05-11 05:33:33 +03:00
|
|
|
"bytes"
|
2018-11-22 04:55:51 +03:00
|
|
|
"fmt"
|
2018-05-11 05:33:33 +03:00
|
|
|
"io"
|
2015-03-31 18:51:10 +03:00
|
|
|
"net/http"
|
2017-07-08 11:49:09 +03:00
|
|
|
|
2019-04-17 17:10:21 +03:00
|
|
|
"github.com/gin-gonic/gin/binding/common"
|
2018-08-30 14:04:03 +03:00
|
|
|
"github.com/gin-gonic/gin/internal/json"
|
2015-03-31 18:51:10 +03:00
|
|
|
)
|
|
|
|
|
2019-04-17 17:10:21 +03:00
|
|
|
func init() {
|
|
|
|
common.List[common.MIMEJSON] = jsonBinding{}
|
|
|
|
}
|
2017-07-08 13:19:09 +03:00
|
|
|
|
2015-03-31 18:51:10 +03:00
|
|
|
type jsonBinding struct{}
|
|
|
|
|
2015-07-10 14:06:01 +03:00
|
|
|
func (jsonBinding) Name() string {
|
2015-03-31 18:51:10 +03:00
|
|
|
return "json"
|
|
|
|
}
|
|
|
|
|
2015-07-10 14:06:01 +03:00
|
|
|
func (jsonBinding) Bind(req *http.Request, obj interface{}) error {
|
2018-11-22 04:55:51 +03:00
|
|
|
if req == nil || req.Body == nil {
|
|
|
|
return fmt.Errorf("invalid request")
|
|
|
|
}
|
2018-05-11 05:33:33 +03:00
|
|
|
return decodeJSON(req.Body, obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (jsonBinding) BindBody(body []byte, obj interface{}) error {
|
|
|
|
return decodeJSON(bytes.NewReader(body), obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
func decodeJSON(r io.Reader, obj interface{}) error {
|
|
|
|
decoder := json.NewDecoder(r)
|
2019-04-17 17:10:21 +03:00
|
|
|
if common.EnableDecoderUseNumber {
|
2017-07-10 11:33:35 +03:00
|
|
|
decoder.UseNumber()
|
|
|
|
}
|
2015-04-07 13:30:16 +03:00
|
|
|
if err := decoder.Decode(obj); err != nil {
|
2015-03-31 18:51:10 +03:00
|
|
|
return err
|
|
|
|
}
|
2019-04-17 17:10:21 +03:00
|
|
|
return common.Validate(obj)
|
2015-03-31 18:51:10 +03:00
|
|
|
}
|