2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2015-05-22 20:21:23 +03:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-05-07 13:44:52 +03:00
|
|
|
package render
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2020-10-16 13:32:33 +03:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin/internal/bytesconv"
|
2015-05-07 13:44:52 +03:00
|
|
|
)
|
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// String contains the given interface object slice and its format.
|
2015-05-18 16:45:24 +03:00
|
|
|
type String struct {
|
|
|
|
Format string
|
2022-03-21 04:43:17 +03:00
|
|
|
Data []any
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|
|
|
|
|
2015-05-23 17:39:25 +03:00
|
|
|
var plainContentType = []string{"text/plain; charset=utf-8"}
|
2015-05-22 05:44:29 +03:00
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// Render (String) writes data with custom ContentType.
|
2015-06-04 06:25:21 +03:00
|
|
|
func (r String) Render(w http.ResponseWriter) error {
|
2019-01-18 04:32:53 +03:00
|
|
|
return WriteString(w, r.Format, r.Data)
|
2015-06-04 13:53:42 +03:00
|
|
|
}
|
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// WriteContentType (String) writes Plain ContentType.
|
2017-01-09 18:24:48 +03:00
|
|
|
func (r String) WriteContentType(w http.ResponseWriter) {
|
2015-06-13 05:29:10 +03:00
|
|
|
writeContentType(w, plainContentType)
|
2017-01-09 18:24:48 +03:00
|
|
|
}
|
2015-06-13 05:29:10 +03:00
|
|
|
|
2018-09-15 05:23:32 +03:00
|
|
|
// WriteString writes data according to its format and write custom ContentType.
|
2022-03-21 04:43:17 +03:00
|
|
|
func WriteString(w http.ResponseWriter, format string, data []any) (err error) {
|
2017-01-09 18:24:48 +03:00
|
|
|
writeContentType(w, plainContentType)
|
2015-06-04 13:53:42 +03:00
|
|
|
if len(data) > 0 {
|
2019-01-18 04:32:53 +03:00
|
|
|
_, err = fmt.Fprintf(w, format, data...)
|
2018-08-19 17:52:43 +03:00
|
|
|
return
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|
2020-10-16 13:32:33 +03:00
|
|
|
_, err = w.Write(bytesconv.StringToBytes(format))
|
2019-01-18 04:32:53 +03:00
|
|
|
return
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|