-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequest.go
81 lines (73 loc) · 2.08 KB
/
request.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
package requests
import (
"bytes"
"context"
"encoding/json"
"io"
"net/http"
"net/url"
"strings"
)
// makeBody converts various input types to an io.Reader suitable for HTTP request bodies.
// Supported types:
// - nil: returns nil (no body)
// - []byte: returns a bytes.Reader
// - string: returns a strings.Reader
// - *bytes.Buffer, bytes.Buffer: returns as io.Reader
// - io.Reader, io.ReadSeeker, *bytes.Reader, *strings.Reader: returns as is
// - url.Values: returns encoded form values as strings.Reader
// - func() (io.ReadCloser, error): calls the function and returns the result
// - any other type: marshals to JSON and returns as bytes.Reader
func makeBody(body any) (io.Reader, error) {
if body == nil {
return nil, nil
}
switch v := body.(type) {
case []byte:
return bytes.NewReader(v), nil
case string:
return strings.NewReader(v), nil
case *bytes.Buffer:
return body.(io.Reader), nil
case io.Reader, io.ReadSeeker, *bytes.Reader, *strings.Reader:
return body.(io.Reader), nil
case url.Values:
return strings.NewReader(v.Encode()), nil
case func() (io.ReadCloser, error):
return v()
default:
b, err := json.Marshal(body)
if err != nil {
return nil, err
}
return bytes.NewReader(b), nil
}
}
// NewRequestWithContext creates a new HTTP request with the given context and options.
// It handles:
// - Converting the request body to an appropriate io.Reader
// - Setting the request method and URL
// - Appending path segments
// - Setting query parameters
// - Setting headers and cookies
//
// Returns the constructed http.Request and any error encountered during creation.
func NewRequestWithContext(ctx context.Context, options Options) (*http.Request, error) {
body, err := makeBody(options.body)
if err != nil {
return nil, err
}
r, err := http.NewRequestWithContext(ctx, options.Method, options.URL, body)
if err != nil {
return nil, err
}
for _, p := range options.Path {
r.URL.Path += p
}
r.URL.RawQuery = options.RawQuery.Encode()
r.Header = options.Header
for _, cookie := range options.Cookies {
r.AddCookie(&cookie)
}
return r, nil
}