-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
446 lines (384 loc) · 10.3 KB
/
main.go
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
package vortex
import (
"bytes"
"crypto/tls"
"encoding/json"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"net/http/httptest"
"net/url"
"os"
"path/filepath"
"strings"
"time"
)
type Middleware func(req *http.Request, next http.HandlerFunc) http.HandlerFunc
type Hook func(req *http.Request, resp *http.Response)
type Opt struct {
BaseURL string
Timeout time.Duration
Retries int
}
type Client struct {
httpClient *http.Client
baseURL string
retries int
headers http.Header
queryParams url.Values
output interface{}
middleware []Middleware
hooks []Hook
streamHandler func(*http.Response) error
formFilePath map[string]string
formData map[string]string
insecure bool
formFile map[string]multipart.File
}
func (c *Client) UseMiddleware(middleware ...Middleware) *Client {
c.middleware = append(c.middleware, middleware...)
return c
}
func (c *Client) UseHook(hooks ...Hook) *Client {
c.hooks = append(c.hooks, hooks...)
return c
}
func New(opt Opt) *Client {
return &Client{
httpClient: &http.Client{
Timeout: opt.Timeout,
},
baseURL: opt.BaseURL,
retries: opt.Retries,
headers: http.Header{},
queryParams: url.Values{},
insecure: false,
}
}
func (c *Client) Insecure() *Client {
c.insecure = true
return c
}
func (c *Client) SetFormFilePath(key, filePath string) *Client {
if c.formFilePath == nil {
c.formFilePath = make(map[string]string)
}
c.formFilePath[key] = filePath
return c
}
func (c *Client) SetFormFile(fieldName string, file multipart.File) *Client {
if c.formFile == nil {
c.formFile = make(map[string]multipart.File)
}
c.formFile[fieldName] = file
return c
}
func (c *Client) SetFormData(params map[string]string) *Client {
if c.formData == nil {
c.formData = make(map[string]string)
}
for key, value := range params {
c.formData[key] = value
}
return c
}
func (c *Client) SetHeader(key, value string) *Client {
c.headers.Set(key, value)
return c
}
func (c *Client) SetHeaders(headers map[string]string) *Client {
for key, value := range headers {
c.headers.Set(key, value)
}
return c
}
func (c *Client) SetQueryParam(key, value string) *Client {
c.queryParams.Set(key, value)
return c
}
func (c *Client) SetQueryParams(params map[string]interface{}) *Client {
for key, value := range params {
c.queryParams.Set(key, fmt.Sprintf("%v", value))
}
return c
}
func (c *Client) SetQueryParamFromInterface(params interface{}) *Client {
jsonParams, _ := json.Marshal(params)
var queryParams map[string]interface{}
err := json.Unmarshal(jsonParams, &queryParams)
if err != nil {
log.Fatalf("Error unmarshalling query params: %v", err)
}
for key, value := range queryParams {
c.queryParams.Set(key, fmt.Sprintf("%v", value))
}
return c
}
func (c *Client) SetOutput(output interface{}) *Client {
c.output = output
return c
}
func (c *Client) doRequest(method, endpoint string, body interface{}) (response *Response, err error) {
reqBody, jsonBody, writer, err := c.prepareRequestBody(body)
if err != nil {
return nil, err
}
req, err := http.NewRequest(method, c.baseURL+endpoint, reqBody)
if err != nil {
return nil, err
}
c.setRequestHeaders(req, method, writer)
var request Request
handler := c.createHandler(method, req, jsonBody, &request)
for i := len(c.middleware) - 1; i >= 0; i-- {
handler = c.middleware[i](req, handler)
}
recorder := httptest.NewRecorder()
handler.ServeHTTP(recorder, req)
return &Response{
StatusCode: recorder.Result().StatusCode,
Body: recorder.Body.Bytes(),
Output: c.output,
Request: &request,
}, nil
}
func (c *Client) prepareRequestBody(body interface{}) (io.Reader, []byte, *multipart.Writer, error) {
var reqBody io.Reader
var jsonBody []byte
var bodyBuffer *bytes.Buffer
var writer *multipart.Writer
var err error
if len(c.formFilePath) > 0 || len(c.formData) > 0 || len(c.formFile) > 0 {
bodyBuffer = &bytes.Buffer{}
writer = multipart.NewWriter(bodyBuffer)
err = c.writeFormData(writer)
if err != nil {
return nil, nil, nil, err
}
reqBody = bodyBuffer
} else if body != nil {
jsonBody, err = json.Marshal(body)
if err != nil {
return nil, nil, nil, err
}
reqBody = bytes.NewBuffer(jsonBody)
}
return reqBody, jsonBody, writer, nil
}
func (c *Client) writeFormData(writer *multipart.Writer) error {
for key, filePath := range c.formFilePath {
file, err := os.Open(filePath)
if err != nil {
return err
}
defer file.Close()
part, err := writer.CreateFormFile(key, filepath.Base(file.Name()))
if err != nil {
return err
}
_, err = io.Copy(part, file)
if err != nil {
return err
}
}
for key, value := range c.formData {
_ = writer.WriteField(key, value)
}
for fieldname, file := range c.formFile {
fileHeader, ok := file.(*os.File)
if !ok {
return fmt.Errorf("file is not an *os.File")
}
defer fileHeader.Close()
part, err := writer.CreateFormFile(fieldname, fileHeader.Name())
if err != nil {
return err
}
_, err = io.Copy(part, file)
if err != nil {
return err
}
}
return writer.Close()
}
func (c *Client) setRequestHeaders(req *http.Request, method string, writer *multipart.Writer) {
switch method {
case "GET", "DELETE":
req.URL.RawQuery = c.queryParams.Encode()
case "POST", "PUT", "PATCH":
if c.headers.Get("Content-Type") == "" && len(c.formFilePath) == 0 {
req.Header.Set("Content-Type", "application/json")
}
}
if len(c.formFilePath) > 0 || len(c.formData) > 0 || len(c.formFile) > 0 {
req.Header.Set("Content-Type", writer.FormDataContentType())
}
c.addHeaders(req)
}
func (c *Client) createHandler(method string, req *http.Request, jsonBody []byte, request *Request) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
httpClient := c.httpClient
if c.insecure {
println("insecure")
httpClient.Transport = &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: c.insecure},
}
}
resp, err := httpClient.Do(r)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer resp.Body.Close()
for _, hook := range c.hooks {
hook(r, resp)
}
if c.streamHandler != nil {
err := c.streamHandler(resp)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
respBody, _ := io.ReadAll(resp.Body)
var output interface{}
if c.output != nil {
output = c.output
err = json.Unmarshal(respBody, output)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
*request = Request{
Method: method,
URL: req.URL.String(),
Headers: req.Header,
Body: jsonBody,
FormFilePath: c.formFilePath,
FormData: c.formData,
FormFile: c.formFile,
insecure: c.insecure,
}
w.Header().Set("StatusCode", fmt.Sprintf("%d", resp.StatusCode))
w.WriteHeader(resp.StatusCode)
_, err = w.Write(respBody)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
}
func (c *Client) Get(endpoint string) (*Response, error) {
return c.doRequest("GET", endpoint, nil)
}
func (c *Client) Delete(endpoint string) (*Response, error) {
return c.doRequest("DELETE", endpoint, nil)
}
func (c *Client) Post(endpoint string, body interface{}) (*Response, error) {
return c.doRequest("POST", endpoint, body)
}
func (c *Client) Put(endpoint string, body interface{}) (*Response, error) {
return c.doRequest("PUT", endpoint, body)
}
func (c *Client) Patch(endpoint string, body interface{}) (*Response, error) {
return c.doRequest("PATCH", endpoint, body)
}
func (c *Client) Stream(streamHandler func(*http.Response) error) *Client {
c.streamHandler = streamHandler
return c
}
func (c *Client) addHeaders(req *http.Request) {
for key, values := range c.headers {
for _, value := range values {
req.Header.Add(key, value)
}
}
}
type Response struct {
StatusCode int
Body []byte
Output interface{}
Request *Request
}
type Request struct {
Method string
URL string
Headers http.Header
Body []byte
QueryParams url.Values
FormFilePath map[string]string
FormData map[string]string
FormFile map[string]multipart.File
insecure bool
}
type NamedFile interface {
Name() string
multipart.File
}
func (r *Request) GenerateCurlCommand() string {
var curlCommand strings.Builder
curlCommand.WriteString("curl")
if r.insecure {
curlCommand.WriteString(" -k")
}
curlCommand.WriteString(" -X " + r.Method)
curlCommand.WriteString(" \"")
if len(r.QueryParams) > 0 {
curlCommand.WriteString(r.URL)
curlCommand.WriteString("?")
curlCommand.WriteString(r.QueryParams.Encode())
} else {
curlCommand.WriteString(r.URL)
}
curlCommand.WriteString("\"")
for key, values := range r.Headers {
for _, value := range values {
if key == "Content-Type" && strings.Contains(value, "boundary") {
value = strings.Split(value, ";")[0]
}
curlCommand.WriteString(" -H \"")
curlCommand.WriteString(key)
curlCommand.WriteString(": ")
curlCommand.WriteString(value)
curlCommand.WriteString("\"")
}
}
if (r.Method == "POST" || r.Method == "PUT" || r.Method == "PATCH") && len(r.Body) > 0 || len(r.FormFilePath) > 0 || len(r.FormData) > 0 || len(r.FormFile) > 0 {
contentType := r.Headers.Get("Content-Type")
if strings.Contains(contentType, "multipart/form-data") {
for key, filePath := range r.FormFilePath {
curlCommand.WriteString(" -F \"")
curlCommand.WriteString(key)
curlCommand.WriteString("=@")
curlCommand.WriteString(filePath)
curlCommand.WriteString("\"")
}
for key, value := range r.FormData {
curlCommand.WriteString(" -F \"")
curlCommand.WriteString(key)
curlCommand.WriteString("=")
curlCommand.WriteString(value)
curlCommand.WriteString("\"")
}
for fieldname, file := range r.FormFile {
namedFile, ok := file.(NamedFile)
if !ok {
return ""
}
curlCommand.WriteString(" -F \"")
curlCommand.WriteString(fieldname)
curlCommand.WriteString("=@")
curlCommand.WriteString(namedFile.Name())
curlCommand.WriteString("\"")
}
} else {
curlCommand.WriteString(" --data-raw '")
curlCommand.WriteString(string(r.Body))
curlCommand.WriteString("'")
}
}
return curlCommand.String()
}