-
Notifications
You must be signed in to change notification settings - Fork 1
/
request.go
233 lines (206 loc) · 4.21 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
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
package httpclient
import (
"io"
"net/http"
"net/url"
"strings"
"github.com/x-mod/errors"
)
//RequestBuilder struct
type RequestBuilder struct {
config *requestConfig
}
//ReqOpt opt
type ReqOpt func(*requestConfig)
//Method opt
func Method(method string) ReqOpt {
return func(cf *requestConfig) {
cf.Method = strings.ToUpper(method)
}
}
//URL opt
func SetURL(Url string) ReqOpt {
return func(cf *requestConfig) {
u, err := url.Parse(Url)
if err != nil {
panic(err)
}
cf.URL = u
}
}
//URL opt
func URL(opts ...URLOpt) ReqOpt {
return func(cf *requestConfig) {
if cf.URL == nil {
cf.URL = &url.URL{}
}
for _, opt := range opts {
opt(cf.URL)
}
}
}
type URLOpt func(*url.URL)
//URI opt
func URI(uri string) URLOpt {
return func(u *url.URL) {
u.Path = uri
}
}
//Scheme opt
func Scheme(scheme string) URLOpt {
return func(u *url.URL) {
u.Scheme = scheme
}
}
//User opt
func User(user string) URLOpt {
return func(u *url.URL) {
u.User = url.User(user)
}
}
//UserPassword opt
func UserPassword(username string, password string) URLOpt {
return func(u *url.URL) {
u.User = url.UserPassword(username, password)
}
}
//Host opt [ip:port]
func Host(host string) URLOpt {
return func(u *url.URL) {
u.Host = host
}
}
//Fragment opt
func Fragment(name string) URLOpt {
return func(u *url.URL) {
u.Fragment = name
}
}
//Query opt
func Query(name string, value string) ReqOpt {
return func(cf *requestConfig) {
cf.Queries[name] = value
}
}
//Header opt
func Header(name string, value string) ReqOpt {
return func(cf *requestConfig) {
cf.Header.Add(name, value)
}
}
//Cookie opt
func Cookie(cookie *http.Cookie) ReqOpt {
return func(cf *requestConfig) {
if cookie != nil {
cf.Cookies = append(cf.Cookies, cookie)
}
}
}
//BasicAuth opt
func BasicAuth(username string, password string) ReqOpt {
return func(cf *requestConfig) {
cf.Auth = &authConfig{
username: username,
password: password,
}
}
}
//BearerAuth opt
func BearerAuth(token string) ReqOpt {
return func(cf *requestConfig) {
cf.Token = &tokenConfig{
token: token,
}
}
}
//BearerAuthFunc opt
func BearerAuthFunc(token TokenFunc) ReqOpt {
return func(cf *requestConfig) {
cf.Token = &tokenConfig{
tokenGet: token,
}
}
}
//Content opt
func Content(opts ...BodyOpt) ReqOpt {
return func(cf *requestConfig) {
body := &bodyConfig{}
for _, opt := range opts {
opt(body)
}
cf.Content = &Body{config: body}
}
}
//NewRequestBuilder new
func NewRequestBuilder(opts ...ReqOpt) *RequestBuilder {
config := &requestConfig{
Header: make(http.Header),
Queries: make(map[string]string),
Cookies: []*http.Cookie{},
}
for _, opt := range opts {
opt(config)
}
return &RequestBuilder{config: config}
}
//MakeRequest make a http.Request
func MakeRequest(opts ...ReqOpt) (*http.Request, error) {
builder := NewRequestBuilder(opts...)
return builder.makeRequest()
}
func (req *RequestBuilder) makeRequest() (*http.Request, error) {
if req.config.URL == nil {
return nil, errors.New("url required")
}
//url
if len(req.config.Queries) > 0 {
q := req.config.URL.Query()
for k, v := range req.config.Queries {
q.Add(k, v)
}
req.config.URL.RawQuery = q.Encode()
}
//body
var body io.Reader
if req.config.Content != nil {
rd, err := req.config.Content.Get()
if err != nil {
return nil, err
}
body = rd
}
//new request
rr, err := http.NewRequest(req.config.Method, req.config.URL.String(), body)
if err != nil {
return nil, err
}
rr.Header = req.config.Header.Clone()
// content-type
if req.config.Content != nil {
rr.Header.Set("Content-Type", req.config.Content.ContentType())
}
// cookies
for _, v := range req.config.Cookies {
rr.AddCookie(v)
}
// url userinfo
if req.config.URL.User != nil {
usr := req.config.URL.User
if password, ok := usr.Password(); ok {
rr.SetBasicAuth(usr.Username(), password)
}
}
// basic auth
if req.config.Auth != nil {
rr.SetBasicAuth(req.config.Auth.username, req.config.Auth.password)
}
// bearer auth
if req.config.Token != nil {
t := req.config.Token.token
if req.config.Token.tokenGet != nil {
t = req.config.Token.tokenGet()
}
rr.Header.Set("Authorization", strings.Join([]string{"Bearer", t}, " "))
}
return rr, nil
}