gin/render/json.go

42 lines
851 B
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 (
"encoding/json"
"net/http"
)
type (
2015-05-18 13:45:24 +00:00
JSON struct {
Data interface{}
}
2015-05-18 13:45:24 +00:00
IndentedJSON struct {
Data interface{}
}
)
var jsonContentType = []string{"application/json; charset=utf-8"}
2015-05-22 02:44:29 +00:00
2015-06-04 03:25:21 +00:00
func (r JSON) Render(w http.ResponseWriter) error {
return WriteJSON(w, r.Data)
2015-05-10 23:02:17 +00:00
}
2015-06-04 03:25:21 +00:00
func (r IndentedJSON) Render(w http.ResponseWriter) error {
w.Header()["Content-Type"] = jsonContentType
2015-05-18 13:45:24 +00:00
jsonBytes, err := json.MarshalIndent(r.Data, "", " ")
if err != nil {
return err
}
2015-05-18 13:45:24 +00:00
w.Write(jsonBytes)
return nil
}
func WriteJSON(w http.ResponseWriter, obj interface{}) error {
w.Header()["Content-Type"] = jsonContentType
return json.NewEncoder(w).Encode(obj)
}