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.
|
|
|
|
|
|
|
|
package render
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// YAML contains the given interface object.
|
2016-04-15 00:47:49 +03:00
|
|
|
type YAML struct {
|
2022-03-21 04:43:17 +03:00
|
|
|
Data any
|
2016-04-15 00:47:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var yamlContentType = []string{"application/x-yaml; charset=utf-8"}
|
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// 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 {
|
2017-01-09 18:24:48 +03:00
|
|
|
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
|
|
|
}
|
2017-01-09 18:24:48 +03:00
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// WriteContentType (YAML) writes YAML ContentType for response.
|
2017-01-09 18:24:48 +03:00
|
|
|
func (r YAML) WriteContentType(w http.ResponseWriter) {
|
|
|
|
writeContentType(w, yamlContentType)
|
|
|
|
}
|