gin/render/text.go

31 lines
619 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.
package render
import (
"fmt"
"net/http"
)
2015-05-18 16:45:24 +03:00
type String struct {
Format string
Data []interface{}
}
2015-05-22 05:44:29 +03:00
const plainContentType = "text/plain; charset=utf-8"
2015-05-18 16:45:24 +03:00
func (r String) Write(w http.ResponseWriter) error {
header := w.Header()
if _, exist := header["Content-Type"]; !exist {
2015-05-22 05:44:29 +03:00
header.Set("Content-Type", plainContentType)
2015-05-18 16:45:24 +03:00
}
if len(r.Data) > 0 {
fmt.Fprintf(w, r.Format, r.Data...)
} else {
2015-05-18 16:45:24 +03:00
w.Write([]byte(r.Format))
}
2015-05-18 16:45:24 +03:00
return nil
}