-
Notifications
You must be signed in to change notification settings - Fork 349
/
dump.go
127 lines (110 loc) · 2.64 KB
/
dump.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package req
import (
"github.com/imroc/req/v3/internal/dump"
"io"
"os"
)
// DumpOptions controls the dump behavior.
type DumpOptions struct {
Output io.Writer
RequestOutput io.Writer
ResponseOutput io.Writer
RequestHeaderOutput io.Writer
RequestBodyOutput io.Writer
ResponseHeaderOutput io.Writer
ResponseBodyOutput io.Writer
RequestHeader bool
RequestBody bool
ResponseHeader bool
ResponseBody bool
Async bool
}
// Clone return a copy of DumpOptions
func (do *DumpOptions) Clone() *DumpOptions {
if do == nil {
return nil
}
d := *do
return &d
}
type dumpOptions struct {
*DumpOptions
}
func (o dumpOptions) Output() io.Writer {
if o.DumpOptions.Output == nil {
return os.Stdout
}
return o.DumpOptions.Output
}
func (o dumpOptions) RequestHeaderOutput() io.Writer {
if o.DumpOptions.RequestHeaderOutput != nil {
return o.DumpOptions.RequestHeaderOutput
}
if o.DumpOptions.RequestOutput != nil {
return o.DumpOptions.RequestOutput
}
return o.Output()
}
func (o dumpOptions) RequestBodyOutput() io.Writer {
if o.DumpOptions.RequestBodyOutput != nil {
return o.DumpOptions.RequestBodyOutput
}
if o.DumpOptions.RequestOutput != nil {
return o.DumpOptions.RequestOutput
}
return o.Output()
}
func (o dumpOptions) ResponseHeaderOutput() io.Writer {
if o.DumpOptions.ResponseHeaderOutput != nil {
return o.DumpOptions.ResponseHeaderOutput
}
if o.DumpOptions.ResponseOutput != nil {
return o.DumpOptions.ResponseOutput
}
return o.Output()
}
func (o dumpOptions) ResponseBodyOutput() io.Writer {
if o.DumpOptions.ResponseBodyOutput != nil {
return o.DumpOptions.ResponseBodyOutput
}
if o.DumpOptions.ResponseOutput != nil {
return o.DumpOptions.ResponseOutput
}
return o.Output()
}
func (o dumpOptions) RequestHeader() bool {
return o.DumpOptions.RequestHeader
}
func (o dumpOptions) RequestBody() bool {
return o.DumpOptions.RequestBody
}
func (o dumpOptions) ResponseHeader() bool {
return o.DumpOptions.ResponseHeader
}
func (o dumpOptions) ResponseBody() bool {
return o.DumpOptions.ResponseBody
}
func (o dumpOptions) Async() bool {
return o.DumpOptions.Async
}
func (o dumpOptions) Clone() dump.Options {
return dumpOptions{o.DumpOptions.Clone()}
}
func newDefaultDumpOptions() *DumpOptions {
return &DumpOptions{
Output: os.Stdout,
RequestBody: true,
ResponseBody: true,
ResponseHeader: true,
RequestHeader: true,
}
}
func newDumper(opt *DumpOptions) *dump.Dumper {
if opt == nil {
opt = newDefaultDumpOptions()
}
if opt.Output == nil {
opt.Output = os.Stderr
}
return dump.NewDumper(dumpOptions{opt})
}