-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathparse.go
More file actions
182 lines (141 loc) · 3.6 KB
/
parse.go
File metadata and controls
182 lines (141 loc) · 3.6 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package parse_curl
import (
"bytes"
"encoding/base64"
"encoding/json"
"github.com/mattn/go-shellwords"
"strings"
)
type Header map[string]string
type Request struct {
Method string `json:"method"`
Url string `json:"url"`
Header Header `json:"header"`
Body string `json:"body"`
}
func (r *Request) ToJson(format bool) string {
buffer := &bytes.Buffer{}
encoder := json.NewEncoder(buffer)
encoder.SetEscapeHTML(false)
if format {
encoder.SetIndent("", " ")
}
_ = encoder.Encode(r)
return string(buffer.Bytes())
}
func Parse(curl string) (*Request, bool) {
if strings.Index(curl, "curl ") != 0 {
return nil, false
}
// https://github.com/mattn/go-shellwords
// https://github.com/tj/parse-curl.js
args, err := shellwords.Parse(curl)
if err != nil {
return nil, false
}
args = rewrite(args)
request := &Request{Method: "GET", Header: Header{}}
state := ""
for _, arg := range args {
switch true {
case isUrl(arg):
request.Url = arg
case arg == "-A" || arg == "--user-agent":
state = "user-agent"
case arg == "-H" || arg == "--header":
state = "header"
case arg == "-d" || arg == "--data" || arg == "--data-ascii" || arg == "--data-raw":
state = "data"
case arg == "-u" || arg == "--user":
state = "user"
case arg == "-I" || arg == "--head":
request.Method = "HEAD"
case arg == "-X" || arg == "--request":
state = "method"
case arg == "-b" || arg == "--cookie":
state = "cookie"
case len(arg) > 0:
switch state {
case "header":
fields := parseField(arg)
request.Header[fields[0]] = strings.TrimSpace(fields[1])
state = ""
case "user-agent":
request.Header["User-Agent"] = arg
state = ""
case "data":
if request.Method == "GET" || request.Method == "HEAD" {
request.Method = "POST"
}
if !hasContentType(*request) {
request.Header["Content-Type"] = "application/x-www-form-urlencoded"
}
if len(request.Body) == 0 {
request.Body = arg
} else {
request.Body = request.Body + "&" + arg
}
state = ""
case "user":
request.Header["Authorization"] = "Basic " + base64.StdEncoding.EncodeToString([]byte(arg))
state = ""
case "method":
request.Method = arg
state = ""
case "cookie":
request.Header["Cookie"] = arg
state = ""
default:
break
}
}
}
// format json body
if value, ok := request.Header["Content-Type"]; ok && value == "application/json" {
decoder := json.NewDecoder(strings.NewReader(request.Body))
jsonData := make(map[string]interface{})
if err := decoder.Decode(&jsonData); err == nil {
buffer := &bytes.Buffer{}
encoder := json.NewEncoder(buffer)
encoder.SetEscapeHTML(false)
if err = encoder.Encode(jsonData); err == nil {
request.Body = strings.ReplaceAll(buffer.String(), "\n", "")
}
}
}
return request, true
}
func rewrite(args []string) []string {
res := make([]string, 0)
for _, arg := range args {
arg = strings.TrimSpace(arg)
if arg == "\n" {
continue
}
if strings.Contains(arg, "\n") {
arg = strings.ReplaceAll(arg, "\n", "")
}
// split request method
if strings.Index(arg, "-X") == 0 {
res = append(res, arg[0:2])
res = append(res, arg[2:])
} else {
res = append(res, arg)
}
}
return res
}
func isUrl(url string) bool {
return strings.HasPrefix(url, "http://") ||
strings.HasPrefix(url, "https://")
}
func parseField(arg string) []string {
index := strings.Index(arg, ":")
return []string{arg[0:index], arg[index+2:]}
}
func hasContentType(request Request) bool {
if _, ok := request.Header["Content-Type"]; ok {
return true
}
return false
}