gin/binding/json.go

26 lines
498 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.
package binding
import (
"encoding/json"
"net/http"
)
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 {
2015-03-31 18:51:10 +03:00
decoder := json.NewDecoder(req.Body)
if err := decoder.Decode(obj); err != nil {
2015-03-31 18:51:10 +03:00
return err
}
2015-05-31 17:30:00 +03:00
return validate(obj)
2015-03-31 18:51:10 +03:00
}