2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2015-03-31 18:51:10 +03:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package binding
|
|
|
|
|
|
|
|
import (
|
2018-05-11 05:33:33 +03:00
|
|
|
"bytes"
|
2015-03-31 18:51:10 +03:00
|
|
|
"encoding/xml"
|
2018-05-11 05:33:33 +03:00
|
|
|
"io"
|
2015-03-31 18:51:10 +03:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2022-03-21 04:43:17 +03:00
|
|
|
func (xmlBinding) Bind(req *http.Request, obj any) error {
|
2018-05-11 05:33:33 +03:00
|
|
|
return decodeXML(req.Body, obj)
|
|
|
|
}
|
|
|
|
|
2022-03-21 04:43:17 +03:00
|
|
|
func (xmlBinding) BindBody(body []byte, obj any) error {
|
2018-05-11 05:33:33 +03:00
|
|
|
return decodeXML(bytes.NewReader(body), obj)
|
|
|
|
}
|
2022-03-21 04:43:17 +03:00
|
|
|
func decodeXML(r io.Reader, obj any) error {
|
2018-05-11 05:33:33 +03:00
|
|
|
decoder := xml.NewDecoder(r)
|
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-05-31 17:30:00 +03:00
|
|
|
return validate(obj)
|
2015-03-31 18:51:10 +03:00
|
|
|
}
|