capture/main.go
2018-09-16 11:21:36 -03:00

166 lines
3.9 KiB
Go

package main
import (
"bytes"
"compress/gzip"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/http/httputil"
"net/url"
"strconv"
"strings"
"github.com/googollee/go-socket.io"
)
type transport struct {
http.RoundTripper
maxItems int
currItemID int
}
var captures Captures
var dashboardSocket socketio.Socket
func main() {
config := ReadConfig()
transp := &transport{
RoundTripper: http.DefaultTransport,
maxItems: config.MaxCaptures,
currItemID: 0,
}
http.Handle("/", getProxyHandler(config.TargetURL, transp))
http.Handle("/socket.io/", getDashboardSocketHandler(config))
http.Handle(config.DashboardPath, getDashboardHandler())
http.Handle(config.DashboardClearPath, getDashboardClearHandler())
http.Handle(config.DashboardItemInfoPath, getDashboardItemInfoHandler())
proxyHost := fmt.Sprintf("http://localhost:%s", config.ProxyPort)
fmt.Printf("\nListening on %s", proxyHost)
fmt.Printf("\n %s/%s\n\n", proxyHost, config.Dashboard)
fmt.Println(http.ListenAndServe(":"+config.ProxyPort, nil))
}
func getDashboardSocketHandler(config Config) http.Handler {
server, err := socketio.NewServer(nil)
if err != nil {
fmt.Println("socket server error", err)
}
server.On("connection", func(so socketio.Socket) {
dashboardSocket = so
dashboardSocket.Emit("config", config)
emitToDashboard(captures)
})
server.On("error", func(so socketio.Socket, err error) {
fmt.Println("socket error", err)
})
return server
}
func getDashboardClearHandler() http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
captures = nil
emitToDashboard(captures)
res.Write([]byte(""))
})
}
func getDashboardHandler() http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
res.Header().Add("Content-Type", "text/html")
res.Write([]byte(dashboardHTML))
})
}
func getDashboardItemInfoHandler() http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
idStr := req.URL.Path[strings.LastIndex(req.URL.Path, "/")+1:]
idInt, _ := strconv.Atoi(idStr)
for _, c := range captures {
if c.ID == idInt {
json, _ := json.Marshal(c)
res.Header().Add("Content-Type", "application/json")
res.Write([]byte(json))
return
}
}
})
}
func getProxyHandler(targetURL string, transp *transport) http.Handler {
url, _ := url.Parse(targetURL)
proxy := httputil.NewSingleHostReverseProxy(url)
proxy.Transport = transp
return http.HandlerFunc(func(response http.ResponseWriter, request *http.Request) {
request.Host = request.URL.Host
proxy.ServeHTTP(response, request)
})
}
func (t *transport) RoundTrip(req *http.Request) (*http.Response, error) {
reqDump, err := dumpRequest(req)
if err != nil {
return nil, err
}
res, err := t.RoundTripper.RoundTrip(req)
if err != nil {
return nil, fmt.Errorf("uh oh | %v | %s", err, req.URL)
}
resDump, err := dumpResponse(res)
if err != nil {
return nil, err
}
capture := Capture{
ID: t.NewItemID(),
Path: req.URL.Path,
Method: req.Method,
Status: res.StatusCode,
Request: string(reqDump),
Response: string(resDump),
}
captures.Add(capture)
captures.RemoveLastAfterReaching(t.maxItems)
emitToDashboard(captures)
return res, nil
}
func (t *transport) NewItemID() int {
t.currItemID++
return t.currItemID
}
func dumpRequest(req *http.Request) ([]byte, error) {
return httputil.DumpRequest(req, true)
}
func dumpResponse(res *http.Response) ([]byte, error) {
var originalBody bytes.Buffer
reader := io.TeeReader(res.Body, &originalBody)
if res.Header.Get("Content-Encoding") == "gzip" {
reader, _ = gzip.NewReader(reader)
}
res.Body = ioutil.NopCloser(reader)
resDump, err := httputil.DumpResponse(res, true)
res.Body = ioutil.NopCloser(&originalBody)
return resDump, err
}
func emitToDashboard(captures Captures) {
if dashboardSocket != nil {
dashboardSocket.Emit("captures", captures.MetadataOnly())
}
}