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{}
|
|
|
|
|
|
|
|
func (_ jsonBinding) Name() string {
|
|
|
|
return "json"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (_ jsonBinding) Bind(req *http.Request, obj interface{}) error {
|
|
|
|
decoder := json.NewDecoder(req.Body)
|
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
|
|
|
|
}
|
2015-04-09 13:15:02 +03:00
|
|
|
return Validate(obj)
|
2015-03-31 18:51:10 +03:00
|
|
|
}
|