mirror of
https://github.com/kemko/reproxy.git
synced 2026-01-06 10:15:47 +03:00
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
// Package rest provides common middlewares and helpers for rest services
|
|
package rest
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// JSON is a map alias, just for convenience
|
|
type JSON map[string]interface{}
|
|
|
|
// RenderJSON sends data as json
|
|
func RenderJSON(w http.ResponseWriter, data interface{}) {
|
|
buf := &bytes.Buffer{}
|
|
enc := json.NewEncoder(buf)
|
|
enc.SetEscapeHTML(true)
|
|
if err := enc.Encode(data); err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
_, _ = w.Write(buf.Bytes())
|
|
}
|
|
|
|
// RenderJSONFromBytes sends binary data as json
|
|
func RenderJSONFromBytes(w http.ResponseWriter, r *http.Request, data []byte) error {
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
if _, err := w.Write(data); err != nil {
|
|
return errors.Wrapf(err, "failed to send response to %s", r.RemoteAddr)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RenderJSONWithHTML allows html tags and forces charset=utf-8
|
|
func RenderJSONWithHTML(w http.ResponseWriter, r *http.Request, v interface{}) error {
|
|
|
|
encodeJSONWithHTML := func(v interface{}) ([]byte, error) {
|
|
buf := &bytes.Buffer{}
|
|
enc := json.NewEncoder(buf)
|
|
enc.SetEscapeHTML(false)
|
|
if err := enc.Encode(v); err != nil {
|
|
return nil, errors.Wrap(err, "json encoding failed")
|
|
}
|
|
return buf.Bytes(), nil
|
|
}
|
|
|
|
data, err := encodeJSONWithHTML(v)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return RenderJSONFromBytes(w, r, data)
|
|
}
|