-
Notifications
You must be signed in to change notification settings - Fork 23
/
resource.go
275 lines (239 loc) · 7.53 KB
/
resource.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
package couchdb
import (
"bytes"
"crypto/tls"
"encoding/json"
"errors"
"io"
"io/ioutil"
"net/http"
"net/url"
"path"
"strings"
)
var (
httpClient *http.Client
// ErrNotModified for HTTP status code 304
ErrNotModified = errors.New("status 304 - not modified")
// ErrBadRequest for HTTP status code 400
ErrBadRequest = errors.New("status 400 - bad request")
// ErrUnauthorized for HTTP status code 401
ErrUnauthorized = errors.New("status 401 - unauthorized")
// ErrForbidden for HTTP status code 403
ErrForbidden = errors.New("status 403 - forbidden")
// ErrNotFound for HTTP status code 404
ErrNotFound = errors.New("status 404 - not found")
// ErrResourceNotAllowed for HTTP status code 405
ErrResourceNotAllowed = errors.New("status 405 - resource not allowed")
// ErrNotAcceptable for HTTP status code 406
ErrNotAcceptable = errors.New("status 406 - not acceptable")
// ErrConflict for HTTP status code 409
ErrConflict = errors.New("status 409 - conflict")
// ErrPreconditionFailed for HTTP status code 412
ErrPreconditionFailed = errors.New("status 412 - precondition failed")
// ErrBadContentType for HTTP status code 415
ErrBadContentType = errors.New("status 415 - bad content type")
// ErrRequestRangeNotSatisfiable for HTTP status code 416
ErrRequestRangeNotSatisfiable = errors.New("status 416 - requested range not satisfiable")
// ErrExpectationFailed for HTTP status code 417
ErrExpectationFailed = errors.New("status 417 - expectation failed")
// ErrInternalServerError for HTTP status code 500
ErrInternalServerError = errors.New("status 500 - internal server error")
statusErrMap = map[int]error{
304: ErrNotModified,
400: ErrBadRequest,
401: ErrUnauthorized,
403: ErrForbidden,
404: ErrNotFound,
405: ErrResourceNotAllowed,
406: ErrNotAcceptable,
409: ErrConflict,
412: ErrPreconditionFailed,
415: ErrBadContentType,
416: ErrRequestRangeNotSatisfiable,
417: ErrExpectationFailed,
500: ErrInternalServerError,
}
)
func init() {
httpClient = http.DefaultClient
}
// Resource handles all requests to CouchDB
type Resource struct {
header http.Header
base *url.URL
}
// NewResource returns a newly-created Resource instance
func NewResource(urlStr string, header http.Header) (*Resource, error) {
u, err := url.Parse(urlStr)
if err != nil {
return nil, err
}
if strings.HasPrefix(urlStr, "https") {
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
httpClient = &http.Client{
Transport: tr,
}
}
h := http.Header{}
if header != nil {
h = header
}
return &Resource{
header: h,
base: u,
}, nil
}
func combine(base *url.URL, resPath string) (*url.URL, error) {
if resPath == "" {
return base, nil
}
u, err := base.Parse(path.Join(base.Path, resPath))
return u, err
}
// NewResourceWithURL returns newly created *Resource combined with resource string.
func (r *Resource) NewResourceWithURL(resStr string) (*Resource, error) {
u, err := combine(r.base, resStr)
if err != nil {
return nil, err
}
return &Resource{
header: r.header,
base: u,
}, nil
}
// Head is a wrapper around http.Head
func (r *Resource) Head(path string, header http.Header, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodHead, u, header, nil, params)
}
// Get is a wrapper around http.Get
func (r *Resource) Get(path string, header http.Header, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodGet, u, header, nil, params)
}
// Post is a wrapper around http.Post
func (r *Resource) Post(path string, header http.Header, body []byte, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodPost, u, header, bytes.NewReader(body), params)
}
// Delete is a wrapper around http.Delete
func (r *Resource) Delete(path string, header http.Header, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodDelete, u, header, nil, params)
}
// Put is a wrapper around http.Put
func (r *Resource) Put(path string, header http.Header, body []byte, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodPut, u, header, bytes.NewReader(body), params)
}
// GetJSON issues a GET to the specified URL, with data returned as json
func (r *Resource) GetJSON(path string, header http.Header, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodGet, u, header, nil, params)
}
// PostJSON issues a POST to the specified URL, with data returned as json
func (r *Resource) PostJSON(path string, header http.Header, body map[string]interface{}, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
jsonBody, err := json.Marshal(body)
if err != nil {
return nil, nil, err
}
return request(http.MethodPost, u, header, bytes.NewReader(jsonBody), params)
}
// DeleteJSON issues a DELETE to the specified URL, with data returned as json
func (r *Resource) DeleteJSON(path string, header http.Header, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
return request(http.MethodDelete, u, header, nil, params)
}
// PutJSON issues a PUT to the specified URL, with data returned as json
func (r *Resource) PutJSON(path string, header http.Header, body map[string]interface{}, params url.Values) (http.Header, []byte, error) {
u, err := combine(r.base, path)
if err != nil {
return nil, nil, err
}
jsonBody, err := json.Marshal(body)
if err != nil {
return nil, nil, err
}
return request(http.MethodPut, u, header, bytes.NewReader(jsonBody), params)
}
func checkHTTPStatusError(status int) error {
err, ok := statusErrMap[status]
if !ok {
return nil
}
return err
}
// helper function to make real request
func request(method string, u *url.URL, header http.Header, body io.Reader, params url.Values) (http.Header, []byte, error) {
method = strings.ToUpper(method)
u.RawQuery = params.Encode()
var username, password string
if u.User != nil {
username = u.User.Username()
password, _ = u.User.Password()
}
req, err := http.NewRequest(method, u.String(), body)
if err != nil {
return nil, nil, err
}
if len(username) > 0 && len(password) > 0 {
req.SetBasicAuth(username, password)
}
// Accept and Content-type are highly recommended for CouchDB
setDefault(&req.Header, "Accept", "application/json")
setDefault(&req.Header, "Content-Type", "application/json")
updateHeader(&req.Header, &header)
updateHeader(&req.Header, cookieAuthHeader)
rsp, err := httpClient.Do(req)
if err != nil {
return nil, nil, err
}
defer rsp.Body.Close()
data, err := ioutil.ReadAll(rsp.Body)
if err != nil {
return nil, nil, err
}
return rsp.Header, data, checkHTTPStatusError(rsp.StatusCode)
}
// setDefault sets the default value if key not existe in header
func setDefault(header *http.Header, key, value string) {
if header.Get(key) == "" {
header.Set(key, value)
}
}
// updateHeader updates existing header with new values
func updateHeader(header *http.Header, extra *http.Header) {
if header != nil && extra != nil {
for k := range *extra {
header.Set(k, extra.Get(k))
}
}
}