woodpecker/vendor/github.com/gin-gonic/gin/binding/xml.go

25 lines
491 B
Go
Raw Normal View History

2015-05-22 18:37:40 +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 (
"encoding/xml"
"net/http"
)
type xmlBinding struct{}
2015-09-30 01:21:17 +00:00
func (xmlBinding) Name() string {
2015-05-22 18:37:40 +00:00
return "xml"
}
2015-09-30 01:21:17 +00:00
func (xmlBinding) Bind(req *http.Request, obj interface{}) error {
2015-05-22 18:37:40 +00:00
decoder := xml.NewDecoder(req.Body)
if err := decoder.Decode(obj); err != nil {
return err
}
2015-09-30 01:21:17 +00:00
return validate(obj)
2015-05-22 18:37:40 +00:00
}