gin/binding/json/json.go

48 lines
994 B
Go
Raw Normal View History

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 (
"bytes"
"fmt"
"io"
2015-03-31 18:51:10 +03:00
"net/http"
2019-04-17 17:10:21 +03:00
"github.com/gin-gonic/gin/binding/common"
"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{}
}
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 {
if req == nil || req.Body == nil {
return fmt.Errorf("invalid request")
}
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 {
decoder.UseNumber()
}
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
}