forked from s-mang/test2doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbody.go
82 lines (63 loc) · 1.23 KB
/
body.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package doc
import (
"bytes"
"compress/gzip"
"io"
"text/template"
)
var (
bodyTmpl *template.Template
bodyFmt = ` + Body
{{.FormattedStr}}
`
)
func init() {
bodyTmpl = template.Must(template.New("body").Parse(bodyFmt))
}
type Body struct {
Content []byte
ContentType string
ContentEncoding string
}
func NewBody(content []byte, contentType string, contentEncoding string) (b *Body) {
if len(content) > 0 {
b = &Body{
Content: content,
ContentType: contentType,
ContentEncoding: contentEncoding,
}
b.gzip()
}
return b
}
func (b *Body) Render() string {
return render(bodyTmpl, b)
}
func (b *Body) gzip() {
if b.ContentEncoding == "gzip" {
var buf bytes.Buffer
reader, err := gzip.NewReader(bytes.NewReader(b.Content))
if err != nil {
panic(err.Error())
}
_, err = io.Copy(&buf, reader)
reader.Close()
b.Content = buf.Bytes()
if err != nil {
panic(err.Error())
}
}
}
func (b *Body) FormattedStr() string {
if b.ContentType == "application/json" {
return b.FormattedJSON()
}
return string(b.Content)
}
func (b *Body) FormattedJSON() string {
fbody, err := indentJSONBody(string(b.Content))
if err != nil {
panic(err.Error())
}
return fbody
}