mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 08:33:54 +08:00
This change was made with the following commands
go mod init
go mod tidy
go mod vendor -v
Revision of github.com/op/go-logging changed because
github.com/anacrolix/torrent requires the current version in its go.mod
# github.com/op/go-logging
yunion.io/x/onecloud/cmd/torrent
github.com/anacrolix/torrent
github.com/elgatito/upnp
github.com/op/go-logging
Content of google.golang.org/grpc changed and it's indeed the case after
checking with the upstream repo. It's very likely that the old content
is wrong.
Some packages like golang.org/x/sys/unix are added because they are
indeeded needed
Some packages are removed as a whole because they are needed anymore
147 lines
2.8 KiB
Go
147 lines
2.8 KiB
Go
// 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 (
|
|
"bytes"
|
|
"fmt"
|
|
"html/template"
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin/json"
|
|
)
|
|
|
|
type JSON struct {
|
|
Data interface{}
|
|
}
|
|
|
|
type IndentedJSON struct {
|
|
Data interface{}
|
|
}
|
|
|
|
type SecureJSON struct {
|
|
Prefix string
|
|
Data interface{}
|
|
}
|
|
|
|
type JsonpJSON struct {
|
|
Callback string
|
|
Data interface{}
|
|
}
|
|
|
|
type AsciiJSON struct {
|
|
Data interface{}
|
|
}
|
|
|
|
type SecureJSONPrefix string
|
|
|
|
var jsonContentType = []string{"application/json; charset=utf-8"}
|
|
var jsonpContentType = []string{"application/javascript; charset=utf-8"}
|
|
var jsonAsciiContentType = []string{"application/json"}
|
|
|
|
func (r JSON) Render(w http.ResponseWriter) (err error) {
|
|
if err = WriteJSON(w, r.Data); err != nil {
|
|
panic(err)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (r JSON) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, jsonContentType)
|
|
}
|
|
|
|
func WriteJSON(w http.ResponseWriter, obj interface{}) error {
|
|
writeContentType(w, jsonContentType)
|
|
jsonBytes, err := json.Marshal(obj)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
w.Write(jsonBytes)
|
|
return nil
|
|
}
|
|
|
|
func (r IndentedJSON) Render(w http.ResponseWriter) error {
|
|
r.WriteContentType(w)
|
|
jsonBytes, err := json.MarshalIndent(r.Data, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
w.Write(jsonBytes)
|
|
return nil
|
|
}
|
|
|
|
func (r IndentedJSON) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, jsonContentType)
|
|
}
|
|
|
|
func (r SecureJSON) Render(w http.ResponseWriter) error {
|
|
r.WriteContentType(w)
|
|
jsonBytes, err := json.Marshal(r.Data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// if the jsonBytes is array values
|
|
if bytes.HasPrefix(jsonBytes, []byte("[")) && bytes.HasSuffix(jsonBytes, []byte("]")) {
|
|
w.Write([]byte(r.Prefix))
|
|
}
|
|
w.Write(jsonBytes)
|
|
return nil
|
|
}
|
|
|
|
func (r SecureJSON) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, jsonContentType)
|
|
}
|
|
|
|
func (r JsonpJSON) Render(w http.ResponseWriter) (err error) {
|
|
r.WriteContentType(w)
|
|
ret, err := json.Marshal(r.Data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if r.Callback == "" {
|
|
w.Write(ret)
|
|
return nil
|
|
}
|
|
|
|
callback := template.JSEscapeString(r.Callback)
|
|
w.Write([]byte(callback))
|
|
w.Write([]byte("("))
|
|
w.Write(ret)
|
|
w.Write([]byte(")"))
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r JsonpJSON) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, jsonpContentType)
|
|
}
|
|
|
|
func (r AsciiJSON) Render(w http.ResponseWriter) (err error) {
|
|
r.WriteContentType(w)
|
|
ret, err := json.Marshal(r.Data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var buffer bytes.Buffer
|
|
for _, r := range string(ret) {
|
|
cvt := ""
|
|
if r < 128 {
|
|
cvt = string(r)
|
|
} else {
|
|
cvt = fmt.Sprintf("\\u%04x", int64(r))
|
|
}
|
|
buffer.WriteString(cvt)
|
|
}
|
|
|
|
w.Write(buffer.Bytes())
|
|
return nil
|
|
}
|
|
|
|
func (r AsciiJSON) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, jsonAsciiContentType)
|
|
}
|