gin/binding/xml/xml.go

42 lines
857 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.
2019-04-17 17:10:21 +03:00
package xml
2015-03-31 18:51:10 +03:00
import (
"bytes"
2015-03-31 18:51:10 +03:00
"encoding/xml"
"io"
2015-03-31 18:51:10 +03:00
"net/http"
2019-04-17 17:10:21 +03:00
"github.com/gin-gonic/gin/binding/common"
2015-03-31 18:51:10 +03:00
)
2019-04-17 17:10:21 +03:00
func init() {
xml := xmlBinding{}
common.List[common.MIMEXML] = xml
common.List[common.MIMEXML2] = xml
}
2015-03-31 18:51:10 +03:00
type xmlBinding struct{}
2015-07-10 14:06:01 +03:00
func (xmlBinding) Name() string {
2015-03-31 18:51:10 +03:00
return "xml"
}
2015-07-10 14:06:01 +03:00
func (xmlBinding) Bind(req *http.Request, obj interface{}) error {
return decodeXML(req.Body, obj)
}
func (xmlBinding) BindBody(body []byte, obj interface{}) error {
return decodeXML(bytes.NewReader(body), obj)
}
func decodeXML(r io.Reader, obj interface{}) error {
decoder := xml.NewDecoder(r)
if err := decoder.Decode(obj); err != nil {
2015-03-31 18:51:10 +03:00
return err
}
2019-04-17 17:10:21 +03:00
return common.Validate(obj)
2015-03-31 18:51:10 +03:00
}