aboutsummaryrefslogtreecommitdiff
path: root/parsers/http_request_parser.go
blob: d204d4c1015d6d603860eaeeae0a711020c4898e (plain) (blame)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package parsers

import (
	"bufio"
	"bytes"
	"encoding/json"
	"io/ioutil"
	"moul.io/http2curl"
	"net/http"
	"strings"
)

type HttpRequestMetadata struct {
	BasicMetadata
	Method        string                         `json:"method"`
	URL           string                         `json:"url"`
	Protocol      string                         `json:"protocol"`
	Host          string                         `json:"host"`
	Headers       map[string]string              `json:"headers"`
	Cookies       map[string]string              `json:"cookies" binding:"omitempty"`
	ContentLength int64                          `json:"content_length"`
	FormData      map[string]string              `json:"form_data" binding:"omitempty"`
	Body          string                         `json:"body" binding:"omitempty"`
	Trailer       map[string]string              `json:"trailer" binding:"omitempty"`
	Reproducers   HttpRequestMetadataReproducers `json:"reproducers"`
}

type HttpRequestMetadataReproducers struct {
	CurlCommand  string `json:"curl_command"`
	RequestsCode string `json:"requests_code"`
	FetchRequest string `json:"fetch_request"`
}

type HttpRequestParser struct {
}

func (p HttpRequestParser) TryParse(content []byte) Metadata {
	reader := bufio.NewReader(bytes.NewReader(content))
	request, err := http.ReadRequest(reader)
	if err != nil {
		return nil
	}
	var body string
	if request.Body != nil {
		if buffer, err := ioutil.ReadAll(request.Body); err == nil {
			body = string(buffer)
		}
		_ = request.Body.Close()
	}
	_ = request.ParseForm()

	return HttpRequestMetadata{
		BasicMetadata: BasicMetadata{"http-request"},
		Method:        request.Method,
		URL:           request.URL.String(),
		Protocol:      request.Proto,
		Host:          request.Host,
		Headers:       JoinArrayMap(request.Header),
		Cookies:       CookiesMap(request.Cookies()),
		ContentLength: request.ContentLength,
		FormData:      JoinArrayMap(request.Form),
		Body:          body,
		Trailer:       JoinArrayMap(request.Trailer),
		Reproducers: HttpRequestMetadataReproducers{
			CurlCommand:  curlCommand(request),
			RequestsCode: requestsCode(request),
			FetchRequest: fetchRequest(request, body),
		},
	}
}

func curlCommand(request *http.Request) string {
	if command, err := http2curl.GetCurlCommand(request); err == nil {
		return command.String()
	} else {
		return "invalid-request"
	}
}

func requestsCode(request *http.Request) string {
	var b strings.Builder
	var params string
	if request.Form != nil {
		params = toJson(JoinArrayMap(request.PostForm))
	}
	headers := toJson(JoinArrayMap(request.Header))
	cookies := toJson(CookiesMap(request.Cookies()))

	b.WriteString("import requests\n\nresponse = requests." + strings.ToLower(request.Method) + "(")
	b.WriteString("\"" + request.URL.String() + "\"")
	if params != "" {
		b.WriteString(", data = " + params)
	}
	if headers != "" {
		b.WriteString(", headers = " + headers)
	}
	if cookies != "" {
		b.WriteString(", cookies = " + cookies)
	}
	b.WriteString(")\n")
	b.WriteString(`
# print(response.url)
# print(response.text)
# print(response.content)
# print(response.json())
# print(response.raw)
# print(response.status_code)
# print(response.cookies)
# print(response.history)
`)

	return b.String()
}

func fetchRequest(request *http.Request, body string) string {
	headers := JoinArrayMap(request.Header)
	data := make(map[string]interface{})
	data["headers"] = headers
	if referrer := request.Header.Get("referrer"); referrer != "" {
		data["Referrer"] = referrer
	}
	// TODO: referrerPolicy
	if body == "" {
		data["body"] = nil
	} else {
		data["body"] = body
	}
	data["method"] = request.Method
	// TODO: mode

	if jsonData := toJson(data); jsonData != "" {
		return "fetch(\"" + request.URL.String() + "\", " + jsonData + ");"
	} else {
		return "invalid-request"
	}
}

func toJson(obj interface{}) string {
	if buffer, err := json.Marshal(obj); err == nil {
		return string(buffer)
	} else {
		return ""
	}
}