-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump.go
78 lines (65 loc) · 1.38 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
package req
import (
"github.com/imroc/req/v3/internal/dump"
"io"
"os"
)
// DumpOptions controls the dump behavior.
type DumpOptions struct {
Output 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 {
return o.DumpOptions.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})
}