mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-13 08:32:47 +00:00
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
package surf
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/enetx/g"
|
|
"github.com/enetx/http/httputil"
|
|
)
|
|
|
|
// Debug is a struct that holds debugging information for an HTTP response.
|
|
type Debug struct {
|
|
print g.Builder // Debug information text.
|
|
resp Response // Associated Response.
|
|
}
|
|
|
|
// Debug returns a debug instance associated with a Response.
|
|
func (resp Response) Debug() *Debug { return &Debug{resp: resp} }
|
|
|
|
// Print prints the debug information.
|
|
func (d *Debug) Print() { g.Println(d.print.String()) }
|
|
|
|
// Request appends the request details to the debug information.
|
|
func (d *Debug) Request(verbos ...bool) *Debug {
|
|
body, err := httputil.DumpRequestOut(d.resp.request.request, false)
|
|
if err != nil {
|
|
return d
|
|
}
|
|
|
|
if d.print.Len() != 0 {
|
|
_ = g.Write(&d.print, "\n")
|
|
}
|
|
|
|
_ = g.Writeln(&d.print, "{}", g.String(body).Trim())
|
|
|
|
if len(verbos) != 0 && verbos[0] && d.resp.request.body != nil {
|
|
if bytes, err := io.ReadAll(d.resp.request.body); err == nil {
|
|
reqBody := g.Bytes(bytes).Trim()
|
|
_ = g.Writeln(&d.print, "\n{}", reqBody.String())
|
|
}
|
|
}
|
|
|
|
return d
|
|
}
|
|
|
|
// Response appends the response details to the debug information.
|
|
func (d *Debug) Response(verbos ...bool) *Debug {
|
|
body, err := httputil.DumpResponse(d.resp.response, false)
|
|
if err != nil {
|
|
return d
|
|
}
|
|
|
|
if d.print.Len() != 0 {
|
|
_ = g.Write(&d.print, "\n")
|
|
}
|
|
|
|
_ = g.Write(&d.print, g.String(body).Trim())
|
|
|
|
if len(verbos) != 0 && verbos[0] && d.resp.Body != nil {
|
|
_ = g.Write(&d.print, d.resp.Body.String().Trim().Prepend("\n\n"))
|
|
}
|
|
|
|
return d
|
|
}
|