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-18 21:01:29 +00:00
|
|
|
"github.com/gin-gonic/gin/json"
|
2015-03-31 15:51:10 +00:00
|
|
|
)
|
|
|
|
|
2018-03-29 06:33:07 +00:00
|
|
|
// EnableDecoderUseNumber is used to call the UseNumber method on the JSON
|
|
|
|
// Decoder instance. UseNumber causes the Decoder to unmarshal a number into an
|
|
|
|
// interface{} as a Number instead of as a float64.
|
2017-10-29 12:12:22 +00:00
|
|
|
var EnableDecoderUseNumber = false
|
2017-07-08 10:19:09 +00:00
|
|
|
|
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)
|
2017-07-10 08:33:35 +00:00
|
|
|
if EnableDecoderUseNumber {
|
|
|
|
decoder.UseNumber()
|
|
|
|
}
|
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
|
|
|
}
|