rename struct

This commit is contained in:
Fabricio 2019-11-23 11:00:26 -03:00
parent ca04024bb1
commit c47cccf7e9
2 changed files with 9 additions and 9 deletions

View file

@ -26,13 +26,6 @@ type Capture struct {
Elapsed time.Duration Elapsed time.Duration
} }
// CaptureDump is all the dumps shown in the dashboard
type CaptureDump struct {
Request string `json:"request"`
Response string `json:"response"`
Curl string `json:"curl"`
}
type Req struct { type Req struct {
Proto string Proto string
Method string Method string
@ -50,6 +43,13 @@ type Res struct {
Body []byte Body []byte
} }
// CaptureInfo is the capture info shown in the dashboard
type CaptureInfo struct {
Request string `json:"request"`
Response string `json:"response"`
Curl string `json:"curl"`
}
// DashboardItem is an item in the dashboard's list // DashboardItem is an item in the dashboard's list
type DashboardItem struct { type DashboardItem struct {
ID int `json:"id"` ID int `json:"id"`

View file

@ -230,10 +230,10 @@ func NewProxyHandler(URL string) http.HandlerFunc {
} }
} }
func dump(c *Capture) CaptureDump { func dump(c *Capture) CaptureInfo {
req := c.Req req := c.Req
res := c.Res res := c.Res
return CaptureDump{ return CaptureInfo{
Request: dumpContent(req.Header, req.Body, "%s %s %s\n\n", req.Method, req.Path, req.Proto), Request: dumpContent(req.Header, req.Body, "%s %s %s\n\n", req.Method, req.Path, req.Proto),
Response: dumpContent(res.Header, res.Body, "%s %s\n\n", res.Proto, res.Status), Response: dumpContent(res.Header, res.Body, "%s %s\n\n", res.Proto, res.Status),
Curl: dumpCurl(req), Curl: dumpCurl(req),