gin/render/xml/xml.go

40 lines
956 B
Go
Raw Normal View History

2015-05-22 20:21:23 +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
import (
"encoding/xml"
"net/http"
2019-04-17 17:10:21 +03:00
"github.com/gin-gonic/gin/render/common"
)
2019-04-17 17:10:21 +03:00
func init() {
common.List["XML"] = NewXML
}
// XML contains the given interface object.
2015-05-18 16:45:24 +03:00
type XML struct {
Data interface{}
}
var xmlContentType = []string{"application/xml; charset=utf-8"}
2015-05-22 05:44:29 +03:00
// Render (XML) encodes the given interface object and writes data with custom ContentType.
2015-06-04 06:25:21 +03:00
func (r XML) Render(w http.ResponseWriter) error {
r.WriteContentType(w)
2015-05-18 16:45:24 +03:00
return xml.NewEncoder(w).Encode(r.Data)
}
// WriteContentType (XML) writes XML ContentType for response.
func (r XML) WriteContentType(w http.ResponseWriter) {
2019-04-17 17:10:21 +03:00
common.WriteContentType(w, xmlContentType)
}
//NewXML build a new xml render
func NewXML(obj interface{}, _ map[string]string) common.Render {
return XML{Data: obj}
}