gin/render/yaml.go

37 lines
813 B
Go
Raw Permalink Normal View History

// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
2016-04-14 21:47:49 +00:00
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package render
import (
"net/http"
"gopkg.in/yaml.v3"
2016-04-14 21:47:49 +00:00
)
// YAML contains the given interface object.
2016-04-14 21:47:49 +00:00
type YAML struct {
2022-03-21 01:43:17 +00:00
Data any
2016-04-14 21:47:49 +00:00
}
var yamlContentType = []string{"application/yaml; charset=utf-8"}
2016-04-14 21:47:49 +00:00
// Render (YAML) marshals the given interface object and writes data with custom ContentType.
2016-04-14 21:47:49 +00:00
func (r YAML) Render(w http.ResponseWriter) error {
r.WriteContentType(w)
2016-04-14 21:47:49 +00:00
bytes, err := yaml.Marshal(r.Data)
if err != nil {
return err
}
2019-01-18 01:32:53 +00:00
_, err = w.Write(bytes)
return err
2016-04-14 21:47:49 +00:00
}
// WriteContentType (YAML) writes YAML ContentType for response.
func (r YAML) WriteContentType(w http.ResponseWriter) {
writeContentType(w, yamlContentType)
}