-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
141 lines (125 loc) · 4.26 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
package fetch
import (
"context"
"fmt"
"io"
"net/http"
"net/url"
"github.com/goark/errs"
)
// client is client class for fetching (internal).
type client struct {
client *http.Client
}
type ClientOpts func(*client)
// New function returns Client instance.
func New(opts ...ClientOpts) Client {
cli := &client{client: &http.Client{}}
for _, opt := range opts {
opt(cli)
}
return cli
}
// WithProtocol returns function for setting http.Client.
func WithHTTPClient(cli *http.Client) ClientOpts {
return func(c *client) {
c.client = cli
}
}
// Get method returns respons data from URL by GET method.
// Deprecated: Should use GetWithContext() method instead of Get() method.
func (c *client) Get(u *url.URL, opts ...RequestOpts) (Response, error) {
return c.GetWithContext(context.Background(), u, opts...)
}
// GetWithContext method returns respons data from URL by GET method with context.Context.
func (c *client) GetWithContext(ctx context.Context, u *url.URL, opts ...RequestOpts) (Response, error) {
req, err := request(ctx, http.MethodGet, u, nil, opts...)
if err != nil {
return nil, errs.Wrap(ErrInvalidRequest, errs.WithCause(err), errs.WithContext("url", u.String()))
}
resp, err := c.fetch(req)
if err != nil {
return nil, errs.Wrap(ErrInvalidRequest, errs.WithCause(err), errs.WithContext("url", u.String()))
}
return resp, nil
}
// Post method returns respons data from URL by POST method.
// Deprecated: Should use PostWithContext() method instead of Post() method.
func (c *client) Post(u *url.URL, payload io.Reader, opts ...RequestOpts) (Response, error) {
return c.PostWithContext(context.Background(), u, payload, opts...)
}
// PostWithContext method returns respons data from URL by POST method with context.Context.
func (c *client) PostWithContext(ctx context.Context, u *url.URL, payload io.Reader, opts ...RequestOpts) (Response, error) {
req, err := request(ctx, http.MethodPost, u, payload, opts...)
if err != nil {
return nil, errs.Wrap(ErrInvalidRequest, errs.WithCause(err), errs.WithContext("url", u.String()))
}
resp, err := c.fetch(req)
if err != nil {
return nil, errs.Wrap(ErrInvalidRequest, errs.WithCause(err), errs.WithContext("url", u.String()))
}
return resp, nil
}
// WithProtocol returns function for setting context.Context.
// Deprecated: should not be used
func WithContext(ctx context.Context) RequestOpts {
return func(req *http.Request) *http.Request {
if ctx != nil {
req = req.WithContext(ctx)
}
return req
}
}
// WithRequestHeaderAdd returns function for adding request header in http.Request.
func WithRequestHeaderAdd(name, value string) RequestOpts {
return func(req *http.Request) *http.Request {
req.Header.Add(name, value)
return req
}
}
// WithRequestHeaderSet returns function for setting request header in http.Request.
func WithRequestHeaderSet(name, value string) RequestOpts {
return func(req *http.Request) *http.Request {
req.Header.Set(name, value)
return req
}
}
func request(ctx context.Context, method string, u *url.URL, payload io.Reader, opts ...RequestOpts) (*http.Request, error) {
req, err := http.NewRequestWithContext(ctx, method, u.String(), payload)
if err != nil {
return nil, errs.Wrap(err)
}
for _, opt := range opts {
req = opt(req)
}
return req, nil
}
func (c *client) fetch(request *http.Request) (Response, error) {
if c == nil {
c = New().(*client)
}
r, err := c.client.Do(request)
if err != nil {
return nil, errs.Wrap(err)
}
resp := &response{r}
if !(resp.StatusCode != 0 && resp.StatusCode < http.StatusBadRequest) {
resp.Close()
return nil, errs.Wrap(fmt.Errorf("%w: status %d", ErrHTTPStatus, resp.StatusCode), errs.WithContext("status", resp.StatusCode))
}
return resp, nil
}
/* Copyright 2021-2023 Spiegel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/