forked from griffin-stewie/go-backlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPI.go
executable file
·317 lines (238 loc) · 5.93 KB
/
API.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
package gobacklog
import (
"encoding/json"
"errors"
"fmt"
"io"
"mime"
"net/url"
)
// PrintResponseJSON is bool
var PrintResponseJSON = false
// Space returns
func (c *Client) Space() (*Space, error) {
bytes, er := c.Get("/api/v2/space", url.Values{})
if er != nil {
return nil, er
}
var space *Space
json.Unmarshal(bytes, &space)
return space, nil
}
// SpaceActivities `/api/v2/space/activities`
func (c *Client) SpaceActivities(option *ActivitiesOption) (ActivitySlice, error) {
var params url.Values
if option == nil {
params = url.Values{}
}
params, er := option.Values()
if er != nil {
return nil, er
}
bytes, er := c.Get("/api/v2/space/activities", params)
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var model ActivitySlice
json.Unmarshal(bytes, &model)
return model, nil
}
// SpaceNotification /api/v2/space/notification
func (c *Client) SpaceNotification() (*SpaceNotification, error) {
bytes, er := c.Get("/api/v2/space/notification", url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var spaceNotification *SpaceNotification
json.Unmarshal(bytes, &spaceNotification)
return spaceNotification, nil
}
// DiskUsage /api/v2/space/diskUsage
func (c *Client) DiskUsage() (*DiskUsage, error) {
bytes, er := c.Get("/api/v2/space/diskUsage", url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var diskUsage *DiskUsage
json.Unmarshal(bytes, &diskUsage)
return diskUsage, nil
}
// Users /api/v2/users
func (c *Client) Users() (UserSlice, error) {
bytes, er := c.Get("/api/v2/users", url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var users UserSlice
json.Unmarshal(bytes, &users)
return users, nil
}
// User /api/v2/users/:userId
func (c *Client) User(userID int) (*User, error) {
endpoint := fmt.Sprintf("/api/v2/users/%d", userID)
bytes, er := c.Get(endpoint, url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var user *User
json.Unmarshal(bytes, &user)
return user, nil
}
// Myself returns
func (c *Client) Myself() (*User, error) {
bytes, er := c.Get("/api/v2/users/myself", url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var user *User
json.Unmarshal(bytes, &user)
return user, nil
}
// ProjectsWithOption returns project information.
// /api/v2/projects
func (c *Client) ProjectsWithOption(option *ProjectsOption) (ProjectSlice, error) {
params, er := option.Values()
if er != nil {
return nil, er
}
bytes, er := c.Get("/api/v2/projects", params)
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var projs ProjectSlice
json.Unmarshal(bytes, &projs)
return projs, nil
}
// ProjectWithID returns project information.
// /api/v2/projects/:projectIdOrKey
func (c *Client) ProjectWithID(projectID int) (*Project, error) {
endpoint := fmt.Sprintf("/api/v2/projects/%d", projectID)
bytes, er := c.Get(endpoint, url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var proj *Project
json.Unmarshal(bytes, &proj)
return proj, nil
}
// ProjectWithKey returns project information.
// /api/v2/projects/:projectIdOrKey
func (c *Client) ProjectWithKey(projectKey string) (*Project, error) {
if len(projectKey) == 0 {
return nil, errors.New("invalid arguments")
}
endpoint := fmt.Sprintf("/api/v2/projects/%s", projectKey)
bytes, er := c.Get(endpoint, url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var proj *Project
json.Unmarshal(bytes, &proj)
return proj, nil
}
// Issues is
func (c *Client) Issues() (IssueSlice, error) {
bytes, er := c.Get("/api/v2/issues", url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var issues IssueSlice
json.Unmarshal(bytes, &issues)
return issues, nil
}
// IssuesWithOption is
func (c *Client) IssuesWithOption(opt *IssuesOption) (IssueSlice, error) {
params, er := opt.Values()
if er != nil {
return nil, er
}
bytes, er := c.Get("/api/v2/issues", params)
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var issues IssueSlice
json.Unmarshal(bytes, &issues)
return issues, nil
}
// IssueWithKey is
func (c *Client) IssueWithKey(issueIDOrKey string) (*Issue, error) {
bytes, er := c.Get("/api/v2/issues/"+issueIDOrKey, url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var issue *Issue
json.Unmarshal(bytes, &issue)
return issue, nil
}
// DownloadAttachment returns
// /api/v2/issues/:issueIdOrKey/attachments/:attachmentId
func (c *Client) DownloadAttachment(issueIDOrKey string, attachmentID int) (io.ReadCloser, string, error) {
if len(issueIDOrKey) == 0 {
return nil, "", errors.New("issueIDOrKey is too short")
}
endpoint := fmt.Sprintf("/api/v2/issues/%s/attachments/%d", issueIDOrKey, attachmentID)
resp, er := c.executeReturnsResponse("GET", endpoint, url.Values{})
if er != nil {
return nil, "", er
}
a, _ := resp.Header["Content-Disposition"]
_, params, err := mime.ParseMediaType(a[0])
if err != nil {
return nil, "", er
}
return resp.Body, params["filename"], nil
}
// StatusesWithProject returns project statuses.
// /api/v2/projects/:projectIdOrKey/statuses
func (c *Client) StatusesWithProject(projectKey string) (*StatusSlice, error) {
if len(projectKey) == 0 {
return nil, errors.New("invalid arguments")
}
endpoint := fmt.Sprintf("/api/v2/projects/%s/statuses", projectKey)
bytes, er := c.Get(endpoint, url.Values{})
if er != nil {
return nil, er
}
if PrintResponseJSON {
fmt.Println(string(bytes))
}
var statuses *StatusSlice
json.Unmarshal(bytes, &statuses)
return statuses, nil
}