You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
373 B
22 lines
373 B
package binding |
|
|
|
import ( |
|
"encoding/json" |
|
"net/http" |
|
|
|
"github.com/pkg/errors" |
|
) |
|
|
|
type jsonBinding struct{} |
|
|
|
func (jsonBinding) Name() string { |
|
return "json" |
|
} |
|
|
|
func (jsonBinding) Bind(req *http.Request, obj interface{}) error { |
|
decoder := json.NewDecoder(req.Body) |
|
if err := decoder.Decode(obj); err != nil { |
|
return errors.WithStack(err) |
|
} |
|
return validate(obj) |
|
}
|
|
|