-
Notifications
You must be signed in to change notification settings - Fork 57
/
request.go
343 lines (273 loc) · 6.92 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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
package goconfluence
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"net/http/httputil"
"net/url"
"strings"
)
// Request implements the basic Request function
func (a *API) Request(req *http.Request) ([]byte, error) {
req.Header.Add("Accept", "application/json, */*")
// only auth if we can auth
if (a.username != "") || (a.token != "") {
a.Auth(req)
}
Debug("====== Request ======")
Debug(req)
Debug("====== Request Body ======")
if DebugFlag {
requestDump, err := httputil.DumpRequest(req, true)
if err != nil {
fmt.Println(err)
}
fmt.Println(string(requestDump))
}
Debug("====== /Request Body ======")
Debug("====== /Request ======")
resp, err := a.Client.Do(req)
if err != nil {
return nil, err
}
Debug(fmt.Sprintf("====== Response Status Code: %d ======", resp.StatusCode))
res, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
err = resp.Body.Close()
if err != nil {
return nil, err
}
Debug("====== Response Body ======")
Debug(string(res))
Debug("====== /Response Body ======")
switch resp.StatusCode {
case http.StatusOK, http.StatusCreated, http.StatusPartialContent:
return res, nil
case http.StatusNoContent, http.StatusResetContent:
return nil, nil
case http.StatusUnauthorized:
return nil, fmt.Errorf("authentication failed")
case http.StatusServiceUnavailable:
return nil, fmt.Errorf("service is not available: %s", resp.Status)
case http.StatusInternalServerError:
return nil, fmt.Errorf("internal server error: %s", resp.Status)
case http.StatusConflict:
return nil, fmt.Errorf("conflict: %s", resp.Status)
}
return nil, fmt.Errorf("unknown response status: %s", resp.Status)
}
// SendContentRequest sends content related requests
// this function is used for getting, updating and deleting content
func (a *API) SendContentRequest(ep *url.URL, method string, c *Content) (*Content, error) {
var body io.Reader
if c != nil {
js, err := json.Marshal(c)
if err != nil {
return nil, err
}
body = strings.NewReader(string(js))
}
req, err := http.NewRequest(method, ep.String(), body)
if err != nil {
return nil, err
}
if body != nil {
req.Header.Add("Content-Type", "application/json")
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var content Content
if len(res) != 0 {
err = json.Unmarshal(res, &content)
if err != nil {
return nil, err
}
}
return &content, nil
}
// SendContentAttachmentRequest sends a multipart/form-data attachment create/update request to a content
func (a *API) SendContentAttachmentRequest(ep *url.URL, attachmentName string, attachment io.Reader, params map[string]string) (*Search, error) {
// setup body for mulitpart file, adding minorEdit option
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
err := writer.WriteField("minorEdit", "true")
if err != nil {
return nil, err
}
part, err := writer.CreateFormFile("file", attachmentName)
if err != nil {
return nil, err
}
// add attachment to body
_, err = io.Copy(part, attachment)
if err != nil {
return nil, err
}
// add any other params
for key, val := range params {
_ = writer.WriteField(key, val)
}
//clean up multipart form writer
err = writer.Close()
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", ep.String(), body) // will always be put
if err != nil {
return nil, err
}
req.Header.Set("X-Atlassian-Token", "nocheck") // required by api
req.Header.Set("Content-Type", writer.FormDataContentType())
// https://developer.atlassian.com/cloud/confluence/rest/#api-api-content-id-child-attachment-put
res, err := a.Request(req)
if err != nil {
return nil, err
}
var search Search
err = json.Unmarshal(res, &search)
if err != nil {
return nil, err
}
return &search, nil
}
// SendUserRequest sends user related requests
func (a *API) SendUserRequest(ep *url.URL, method string) (*User, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var user User
err = json.Unmarshal(res, &user)
if err != nil {
return nil, err
}
return &user, nil
}
// SendSearchRequest sends search related requests
func (a *API) SendSearchRequest(ep *url.URL, method string) (*Search, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var search Search
err = json.Unmarshal(res, &search)
if err != nil {
return nil, err
}
return &search, nil
}
// SendHistoryRequest requests history
func (a *API) SendHistoryRequest(ep *url.URL, method string) (*History, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var history History
err = json.Unmarshal(res, &history)
if err != nil {
return nil, err
}
return &history, nil
}
// SendLabelRequest requests history
func (a *API) SendLabelRequest(ep *url.URL, method string, labels *[]Label) (*Labels, error) {
var body io.Reader
if labels != nil {
js, err := json.Marshal(labels)
if err != nil {
return nil, err
}
body = strings.NewReader(string(js))
}
req, err := http.NewRequest(method, ep.String(), body)
if err != nil {
return nil, err
}
if body != nil {
req.Header.Add("Content-Type", "application/json")
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
if res != nil {
var l Labels
err = json.Unmarshal(res, &l)
if err != nil {
return nil, err
}
return &l, nil
}
return &Labels{}, nil
}
// SendWatcherRequest requests watchers
func (a *API) SendWatcherRequest(ep *url.URL, method string) (*Watchers, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var watchers Watchers
err = json.Unmarshal(res, &watchers)
if err != nil {
return nil, err
}
return &watchers, nil
}
// SendAllSpacesRequest sends a request for all spaces
func (a *API) SendAllSpacesRequest(ep *url.URL, method string) (*AllSpaces, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var allSpaces AllSpaces
err = json.Unmarshal(res, &allSpaces)
if err != nil {
return nil, err
}
return &allSpaces, nil
}
// SendContentVersionRequest requests a version of a specific content
func (a *API) SendContentVersionRequest(ep *url.URL, method string) (*ContentVersionResult, error) {
req, err := http.NewRequest(method, ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var versionResult ContentVersionResult
err = json.Unmarshal(res, &versionResult)
if err != nil {
return nil, err
}
return &versionResult, nil
}