-
Notifications
You must be signed in to change notification settings - Fork 7
/
openproject.go
536 lines (465 loc) · 16 KB
/
openproject.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
package openproject
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
)
// SearchOperator represents Search operators by custom type const
// Doc. https://docs.openproject.org/api/filters/#header-available-filters-1
type SearchOperator string
const (
// Equal operator
Equal SearchOperator = "="
// Different operator
Different SearchOperator = "<>"
// GreaterThan operator
GreaterThan SearchOperator = ">"
// LowerThan operator
LowerThan SearchOperator = "<"
// SearchString operator
SearchString SearchOperator = "**"
// Like operator
Like SearchOperator = "~"
// GreaterOrEqual operator
GreaterOrEqual SearchOperator = ">="
// LowerOrEqual operator
LowerOrEqual SearchOperator = "<="
)
type IPaginationResponse interface {
TotalPage() int
ConcatEmbed(interface{})
}
// Pagination parameters
const kOffset = "offset"
const kPageSize = "pageSize"
// Time represents the Time definition of OpenProject as a time.Time of go
type Time time.Time
// Equal compares time
func (t Time) Equal(u Time) bool {
return time.Time(t).Equal(time.Time(u))
}
// Date represents the Date definition of OpenProject as a time.Time of go
type Date time.Time
// httpClient defines an interface for an http.Client implementation
type httpClient interface {
Do(request *http.Request) (response *http.Response, err error)
}
// Client manages communication with the OpenProject API.
type Client struct {
// HTTP client used to communicate with the API.
client httpClient
// Base URL for API requests.
baseURL *url.URL
// Session storage if the user authenticates with Session cookies
session *Session
// Services used for talking to different parts of OpenProject API.
Authentication *AuthenticationService
WorkPackage *WorkPackageService
Project *ProjectService
User *UserService
Status *StatusService
WikiPage *WikiPageService
Attachment *AttachmentService
Category *CategoryService
Query *QueryService
Activities *ActivitiesService
}
// NewClient returns a new OpenProject API client.
// If a nil httpClient is provided, http.DefaultClient will be used.
func NewClient(httpClient httpClient, baseURL string) (*Client, error) {
if httpClient == nil {
httpClient = http.DefaultClient
}
// ensure the baseURL contains a trailing slash so that all paths are preserved in later calls
if !strings.HasSuffix(baseURL, "/") {
baseURL += "/"
}
parsedBaseURL, err := url.Parse(baseURL)
if err != nil {
return nil, err
}
c := &Client{
client: httpClient,
baseURL: parsedBaseURL,
}
c.Authentication = &AuthenticationService{client: c}
c.WorkPackage = &WorkPackageService{client: c}
c.Project = &ProjectService{client: c}
c.User = &UserService{client: c}
c.Status = &StatusService{client: c}
c.WikiPage = &WikiPageService{client: c}
c.Attachment = &AttachmentService{client: c}
c.Category = &CategoryService{client: c}
c.Query = &QueryService{client: c}
c.Activities = &ActivitiesService{client: c}
return c, nil
}
// NewRequestWithContext creates an API request.
// A relative URL can be provided in urlStr, in which case it is resolved relative to the baseURL of the Client.
// If specified, the value pointed to by body is JSON encoded and included as the request body.
func (c *Client) NewRequestWithContext(ctx context.Context, method, urlStr string, body interface{}) (*http.Request, error) {
rel, err := url.Parse(urlStr)
if err != nil {
return nil, err
}
// Relative URLs should be specified without a preceding slash since baseURL will have the trailing slash
rel.Path = strings.TrimLeft(rel.Path, "/")
u := c.baseURL.ResolveReference(rel)
var buf io.ReadWriter
if body != nil {
buf = new(bytes.Buffer)
err = json.NewEncoder(buf).Encode(body)
if err != nil {
return nil, err
}
}
req, err := newRequestWithContext(ctx, method, u.String(), buf)
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
// Set authentication information
if c.Authentication.authType == authTypeSession {
// Set session cookie if there is one
if c.session != nil {
for _, cookie := range c.session.Cookies {
req.AddCookie(cookie)
}
}
} else if c.Authentication.authType == authTypeBasic {
// Set basic auth information
if c.Authentication.username != "" {
req.SetBasicAuth(c.Authentication.username, c.Authentication.password)
}
}
return req, nil
}
// NewRequest wraps NewRequestWithContext using the background context.
func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Request, error) {
return c.NewRequestWithContext(context.Background(), method, urlStr, body)
}
// NewMultiPartRequestWithContext creates an API request including a multi-part file.
// A relative URL can be provided in urlStr, in which case it is resolved relative to the baseURL of the Client.
// If specified, the value pointed to by buf is a multipart form.
func (c *Client) NewMultiPartRequestWithContext(ctx context.Context, method, urlStr string, buf *bytes.Buffer) (*http.Request, error) {
rel, err := url.Parse(urlStr)
if err != nil {
return nil, err
}
// Relative URLs should be specified without a preceding slash since baseURL will have the trailing slash
rel.Path = strings.TrimLeft(rel.Path, "/")
u := c.baseURL.ResolveReference(rel)
req, err := newRequestWithContext(ctx, method, u.String(), buf)
if err != nil {
return nil, err
}
// Set authentication information
if c.Authentication.authType == authTypeSession {
// Set session cookie if there is one
if c.session != nil {
for _, cookie := range c.session.Cookies {
req.AddCookie(cookie)
}
}
} else if c.Authentication.authType == authTypeBasic {
// Set basic auth information
if c.Authentication.username != "" {
req.SetBasicAuth(c.Authentication.username, c.Authentication.password)
}
}
return req, nil
}
// NewMultiPartRequest wraps NewMultiPartRequestWithContext using the background context.
func (c *Client) NewMultiPartRequest(method, urlStr string, buf *bytes.Buffer) (*http.Request, error) {
return c.NewMultiPartRequestWithContext(context.Background(), method, urlStr, buf)
}
// Do sends an API request and returns the API response.
// The API response is JSON decoded and stored in the value pointed to by v, or returned as an error if an API error has occurred.
func (c *Client) Do(req *http.Request, v interface{}) (*Response, error) {
httpResp, err := c.client.Do(req)
if err != nil {
return nil, err
}
// requestDump, err := httputil.DumpResponse(httpResp, true)
// if err != nil {
// fmt.Println(err.Error())
// } else {
// fmt.Println(requestDump)
// }
err = CheckResponse(httpResp)
if err != nil {
// In case of error we still return the response
return newResponse(httpResp, nil), err
}
if v != nil {
// Open a NewDecoder and defer closing the reader only if there is a provided interface to decode to
defer httpResp.Body.Close()
err = json.NewDecoder(httpResp.Body).Decode(v)
}
resp := newResponse(httpResp, v)
return resp, err
}
// Download request a file download
func (c *Client) Download(req *http.Request) (*http.Response, error) {
httpResp, err := c.client.Do(req)
if err != nil {
return nil, err
}
// requestDump, err := httputil.DumpResponse(httpResp, true)
// if err != nil {
// fmt.Println(err.Error())
// } else {
// fmt.Println(requestDump)
// }
err = CheckResponse(httpResp)
return httpResp, err
}
// CheckResponse checks the API response for errors, and returns them if present.
// A response is considered an error if it has a status code outside the 200 range.
// The caller is responsible to analyze the response body.
func CheckResponse(r *http.Response) error {
if c := r.StatusCode; 200 <= c && c <= 299 {
return nil
}
err := fmt.Errorf("request failed. Please analyze the request body for more details. Status code: %d", r.StatusCode)
return err
}
// GetBaseURL will return you the Base URL.
// This is the same URL as in the NewClient constructor
func (c *Client) GetBaseURL() url.URL {
return *c.baseURL
}
// Response represents OpenProject API response. It wraps http.Response returned from
// API and provides information about paging.
type Response struct {
*http.Response
Total int
Count int
PageSize int
Offset int
}
// New response
func newResponse(r *http.Response, v interface{}) *Response {
resp := &Response{Response: r}
resp.populatePageValues(v)
return resp
}
// Sets paging values if response json was parsed to searchResult type
// (can be extended with other types if they also need paging info)
// TODO: Improve implementation to avoid redundancy without losing efficiency (reflect alternative is not efficient)
func (r *Response) populatePageValues(v interface{}) {
switch value := v.(type) {
case *SearchResultWP:
r.Total = value.Total
r.Count = value.Count
r.PageSize = value.PageSize
r.Offset = value.Offset
case *SearchResultUser:
r.Total = value.Total
r.Count = value.Count
r.PageSize = value.PageSize
r.Offset = value.Offset
case *SearchResultQuery:
r.Total = value.Total
r.Count = value.Count
r.PageSize = value.PageSize
r.Offset = value.Offset
}
}
// BasicAuthTransport is an http.RoundTripper that authenticates all requests
// using HTTP Basic Authentication with the provided username and password.
type BasicAuthTransport struct {
Username string
Password string
// Transport is the underlying HTTP transport to use when making requests.
// It will default to http.DefaultTransport if nil.
Transport http.RoundTripper
}
// RoundTrip implements the RoundTripper interface. We just add the
// basic auth and return the RoundTripper for this transport type.
func (t *BasicAuthTransport) RoundTrip(req *http.Request) (*http.Response, error) {
req2 := cloneRequest(req) // per RoundTripper contract
req2.SetBasicAuth(t.Username, t.Password)
return t.transport().RoundTrip(req2)
}
// Client returns an *http.Client that makes requests that are authenticated
// using HTTP Basic Authentication. This is a nice little bit of sugar
// so we can just get the client instead of creating the client in the calling code.
// If it's necessary to send more information on client init, the calling code can
// always skip this and set the transport itself.
func (t *BasicAuthTransport) Client() *http.Client {
return &http.Client{Transport: t}
}
// Transport
func (t *BasicAuthTransport) transport() http.RoundTripper {
if t.Transport != nil {
return t.Transport
}
return http.DefaultTransport
}
// cloneRequest returns a clone of the provided *http.Request.
// The clone is a shallow copy of the struct and its Header map.
func cloneRequest(r *http.Request) *http.Request {
// shallow copy of the struct
r2 := new(http.Request)
*r2 = *r
// deep copy of the Header
r2.Header = make(http.Header, len(r.Header))
for k, s := range r.Header {
r2.Header[k] = append([]string(nil), s...)
}
return r2
}
// getObjectAndClient gets an inputObject (inputObject is an OpenProject object like WorkPackage, WikiPage, Status, etc.)
// and return a pointer to its Client from its service and an instance of the object itself
func getObjectAndClient(inputObj interface{}) (client *Client, resultObj interface{}) {
switch c := inputObj.(type) {
case *AttachmentService:
client = c.client
resultObj = new(Attachment)
case *CategoryService:
client = c.client
resultObj = new(Category)
case *ProjectService:
client = c.client
resultObj = new(Project)
case *QueryService:
client = c.client
resultObj = new(QueryResult)
case *StatusService:
client = c.client
resultObj = new(Status)
case *UserService:
client = c.client
resultObj = new(User)
case *WikiPageService:
client = c.client
resultObj = new(WikiPage)
case *WorkPackageService:
client = c.client
resultObj = new(WorkPackage)
case *ActivitiesService:
client = c.client
resultObj = new(Activity)
}
return client, resultObj
}
// getObjectAndClient gets an inputObject (inputObject is an OpenProject object like WorkPackage, WikiPage, Status, etc.)
// and return a pointer to its Client from its service and an instance of the ObjectList
func getObjectListAndClient(inputObj interface{}) (client *Client, resultObjList interface{}) {
switch c := inputObj.(type) {
case *AttachmentService:
client = c.client
// TODO implement
case *CategoryService:
client = c.client
resultObjList = new(CategoryList)
case *ProjectService:
client = c.client
resultObjList = new(SearchResultProject)
case *QueryService:
client = c.client
resultObjList = new(SearchResultQuery)
case *StatusService:
client = c.client
resultObjList = new(SearchResultStatus)
case *UserService:
client = c.client
resultObjList = new(SearchResultUser)
// WikiPage endpoint does not support POST action
// case *WikiPageService:
case *WorkPackageService:
client = c.client
resultObjList = new(SearchResultWP)
case *ActivitiesService:
client = c.client
resultObjList = new(Activities)
}
return client, resultObjList
}
// GetWithContext (generic) retrieves object (HTTP GET verb)
// obj can be any main object (attachment, user, project, work-package, etc...) as well as response interface{}
func GetWithContext(ctx context.Context, objService interface{}, apiEndPoint string) (interface{}, *Response, error) {
client, resultObj := getObjectAndClient(objService)
apiEndPoint = strings.TrimRight(apiEndPoint, "/")
if client == nil {
return nil, nil, errors.New("Null client, object not identified")
}
req, err := client.NewRequestWithContext(ctx, "GET", apiEndPoint, nil)
if err != nil {
return nil, nil, err
}
resp, err := client.Do(req, resultObj)
if err != nil {
return nil, resp, NewOpenProjectError(resp, err)
}
return resultObj, resp, nil
}
// GetListWithContext (generic) retrieves list of objects (HTTP GET verb)
// obj list is a collection of any main object (attachment, user, project, work-package, etc...) as well as response interface{}
func GetListWithContext(ctx context.Context, objService interface{}, apiEndPoint string,
options *FilterOptions, offset int, pageSize int) (interface{}, *Response, error) {
client, resultObjList := getObjectListAndClient(objService)
apiEndPoint = strings.TrimRight(apiEndPoint, "/")
req, err := client.NewRequestWithContext(ctx, "GET", apiEndPoint, nil)
if err != nil {
return nil, nil, err
}
values := make(url.Values)
values.Add(kOffset, strconv.Itoa(offset))
values.Add(kPageSize, strconv.Itoa(pageSize))
if options != nil {
values = options.prepareFilters(values)
}
req.URL.RawQuery = values.Encode()
resp, err := client.Do(req, resultObjList)
if err != nil {
oerr := NewOpenProjectError(resp, err)
return nil, resp, oerr
}
return resultObjList, resp, nil
}
// CreateWithContext (generic) creates an instance af an object (HTTP POST verb)
// Return the instance of the object rendered into proper struct as interface{} to be cast in the caller
func CreateWithContext(ctx context.Context, object interface{}, objService interface{}, apiEndPoint string) (interface{}, *Response, error) {
client, resultObj := getObjectAndClient(objService)
req, err := client.NewRequestWithContext(ctx, "POST", apiEndPoint, object)
if err != nil {
return nil, nil, err
}
resp, err := client.Do(req, nil)
if err != nil {
// incase of error return the resp for further inspection
return nil, resp, err
}
defer resp.Body.Close()
data, err := io.ReadAll(resp.Body)
if err != nil {
return nil, resp, fmt.Errorf("could not read the returned data")
}
err = json.Unmarshal(data, resultObj)
if err != nil {
return nil, resp, fmt.Errorf("could not unmarshall the data into struct")
}
return resultObj, resp, nil
}
// DeleteWithContext (generic) retrieves object (HTTP DELETE verb)
// obj can be any main object (attachment, user, project, work-package, etc...)
func DeleteWithContext(ctx context.Context, objService interface{}, apiEndPoint string) (*Response, error) {
client, _ := getObjectAndClient(objService)
apiEndPoint = strings.TrimRight(apiEndPoint, "/")
req, err := client.NewRequestWithContext(ctx, "DELETE", apiEndPoint, nil)
if err != nil {
return nil, err
}
resp, err := client.Do(req, nil)
return resp, err
}