gin/render/yaml/yaml.go

47 lines
1.0 KiB
Go
Raw Normal View History

2016-04-15 00:47:49 +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 yaml
2016-04-15 00:47:49 +03:00
import (
"net/http"
2019-04-17 17:10:21 +03:00
"github.com/gin-gonic/gin/render/common"
2016-04-15 00:47:49 +03:00
"gopkg.in/yaml.v2"
)
2019-04-17 17:10:21 +03:00
func init() {
common.List["YAML"] = NewYAML
}
// YAML contains the given interface object.
2016-04-15 00:47:49 +03:00
type YAML struct {
Data interface{}
}
var yamlContentType = []string{"application/x-yaml; charset=utf-8"}
// Render (YAML) marshals the given interface object and writes data with custom ContentType.
2016-04-15 00:47:49 +03:00
func (r YAML) Render(w http.ResponseWriter) error {
r.WriteContentType(w)
2016-04-15 00:47:49 +03:00
bytes, err := yaml.Marshal(r.Data)
if err != nil {
return err
}
2019-01-18 04:32:53 +03:00
_, err = w.Write(bytes)
return err
2016-04-15 00:47:49 +03:00
}
// WriteContentType (YAML) writes YAML ContentType for response.
func (r YAML) WriteContentType(w http.ResponseWriter) {
2019-04-17 17:10:21 +03:00
common.WriteContentType(w, yamlContentType)
}
//NewYAML build a new yaml render
func NewYAML(obj interface{}, _ map[string]string) common.Render {
return YAML{Data: obj}
}