gin/binding/xml.go

34 lines
676 B
Go
Raw Normal View History

// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
2015-03-31 15:51:10 +00:00
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package binding
import (
"bytes"
2015-03-31 15:51:10 +00:00
"encoding/xml"
"io"
2015-03-31 15:51:10 +00:00
"net/http"
)
type xmlBinding struct{}
2015-07-10 11:06:01 +00:00
func (xmlBinding) Name() string {
2015-03-31 15:51:10 +00:00
return "xml"
}
2022-03-21 01:43:17 +00:00
func (xmlBinding) Bind(req *http.Request, obj any) error {
return decodeXML(req.Body, obj)
}
2022-03-21 01:43:17 +00:00
func (xmlBinding) BindBody(body []byte, obj any) error {
return decodeXML(bytes.NewReader(body), obj)
}
2022-03-21 01:43:17 +00:00
func decodeXML(r io.Reader, obj any) error {
decoder := xml.NewDecoder(r)
if err := decoder.Decode(obj); err != nil {
2015-03-31 15:51:10 +00:00
return err
}
2015-05-31 14:30:00 +00:00
return validate(obj)
2015-03-31 15:51:10 +00:00
}