gin/render/text.go

40 lines
1.0 KiB
Go
Raw Normal View History

2015-05-22 17:21:23 +00: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 (
"fmt"
"net/http"
)
// String contains the given interface object slice and its format.
2015-05-18 13:45:24 +00:00
type String struct {
Format string
Data []interface{}
}
var plainContentType = []string{"text/plain; charset=utf-8"}
2015-05-22 02:44:29 +00:00
// Render (String) writes data with custom ContentType.
2015-06-04 03:25:21 +00:00
func (r String) Render(w http.ResponseWriter) error {
2019-01-18 01:32:53 +00:00
return WriteString(w, r.Format, r.Data)
}
// WriteContentType (String) writes Plain ContentType.
func (r String) WriteContentType(w http.ResponseWriter) {
writeContentType(w, plainContentType)
}
// WriteString writes data according to its format and write custom ContentType.
2019-01-18 01:32:53 +00:00
func WriteString(w http.ResponseWriter, format string, data []interface{}) (err error) {
writeContentType(w, plainContentType)
if len(data) > 0 {
2019-01-18 01:32:53 +00:00
_, err = fmt.Fprintf(w, format, data...)
return
}
_, err = w.Write([]byte(format))
2019-01-18 01:32:53 +00:00
return
}