forked from ritafixeads/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
184 lines (159 loc) · 4.49 KB
/
client.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
package fetch
import (
"io"
"net"
"net/http"
"time"
)
// DefaultTimeout defined timeout default for any request
const DefaultTimeout = time.Duration(30 * time.Second)
// Options default for any request in client
type Options struct {
Header http.Header
Timeout time.Duration
Cookies []http.Cookie
Transport http.RoundTripper
}
type FuncOptions func(op *Options)
func WithHeader(Header http.Header) FuncOptions {
return func(op *Options) {
op.Header = Header
}
}
func WithTimeout(timeout time.Duration) FuncOptions {
return func(op *Options) {
op.Timeout = timeout
}
}
func WithCookies(cookies ...http.Cookie) FuncOptions {
return func(op *Options) {
op.Cookies = append(op.Cookies, cookies...)
}
}
// DefaultOptions returns options with timeout defined
func DefaultOptions() *Options {
opt := &Options{
Timeout: DefaultTimeout,
Header: http.Header{},
}
opt.Transport = &http.Transport{
DialContext: (&net.Dialer{
Timeout: opt.Timeout,
}).DialContext,
TLSHandshakeTimeout: opt.Timeout,
}
return opt
}
// New get new fetcher and you need to specify the netTransport.
func New(fn ...FuncOptions) *Fetch {
opt := DefaultOptions()
for _, cb := range fn {
cb(opt)
}
return &Fetch{
Client: &http.Client{
Timeout: opt.Timeout,
Transport: opt.Transport,
},
Option: opt,
}
}
// Fetch use http default but defined with a timeout.
type Fetch struct {
*http.Client
Option *Options
}
// IsJSON add Content-Type as JSON in header.
func (f *Fetch) IsJSON() *Fetch {
if f.Option.Header == nil {
f.Option.Header = http.Header{}
}
f.Option.Header.Set("Content-Type", "application/json")
return f
}
// makeResponse format response from generic request
func (f Fetch) makeResponse(resp *http.Response, err error) (*Response, error) {
if resp == nil {
resp = &http.Response{
StatusCode: http.StatusGatewayTimeout,
Status: http.StatusText(http.StatusGatewayTimeout),
}
}
return &Response{Response: resp}, err
}
// Do execute any kind of request
func (f *Fetch) Do(req *http.Request) (*Response, error) {
if f.Option.Header != nil {
req.Header = f.Option.Header
}
// Añadir cookies a la solicitud
for _, c := range f.Option.Cookies {
req.AddCookie(&c)
}
return f.makeResponse(f.Client.Do(req))
}
// Get do request with HTTP using HTTP Verb GET
func (f *Fetch) Get(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodGet, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request GET: %s", err)
}
return f.Do(req)
}
// Post do request with HTTP using HTTP Verb POST
func (f *Fetch) Post(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodPost, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request POST: %s", err)
}
return f.Do(req)
}
// Put do request with HTTP using HTTP Verb PUT
func (f *Fetch) Put(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodPut, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request PUT: %s", err)
}
return f.Do(req)
}
// Delete do request with HTTP using HTTP Verb DELETE
func (f *Fetch) Delete(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodDelete, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request DELETE: %s", err)
}
return f.Do(req)
}
// Patch do request with HTTP using HTTP Verb PATCH
func (f *Fetch) Patch(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodPatch, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request PATCH: %s", err)
}
return f.Do(req)
}
// Options do request with HTTP using HTTP Verb OPTIONS
func (f *Fetch) Options(url string, reader io.Reader) (*Response, error) {
req, err := http.NewRequest(http.MethodOptions, url, reader)
if err != nil {
return newErrorResponse(http.StatusNoContent, "couldn't request OPTIONS: %s", err)
}
return f.Do(req)
}
// Global Instance
var self = New()
func Get(url string, reader io.Reader) (*Response, error) {
return self.Get(url, reader)
}
func Post(url string, reader io.Reader) (*Response, error) {
return self.Post(url, reader)
}
func Put(url string, reader io.Reader) (*Response, error) {
return self.Put(url, reader)
}
func Delete(url string, reader io.Reader) (*Response, error) {
return self.Delete(url, reader)
}
func IsJSON() *Fetch {
return New().IsJSON()
}