-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlighthouse.go
459 lines (387 loc) · 10.9 KB
/
lighthouse.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
// Package lighthouse provides access to the Lighthouse API.
// http://help.lighthouseapp.com/kb/api
package lighthouse
import (
"bytes"
"context"
"encoding/json"
"encoding/xml"
"fmt"
"io"
"io/ioutil"
"net/http"
"path/filepath"
"strconv"
"strings"
"time"
"golang.org/x/time/rate"
)
const (
StatusUnprocessableEntity = 422
// DefaultRateLimitInterval controls the default rate limit
// interval
DefaultRateLimitInterval = 600 * time.Millisecond
// DefaultRateLimitBurstSize control the default rate Limit
// burst size
DefaultRateLimitBurstSize = 1
DefaultRateLimitRetryAttempts = 3
DefaultRateLimitMaxRetryAfter = 125 * time.Second
)
// Transport wraps another http.RoundTripper and ensures the outgoing
// request is properly authenticated
type Transport struct {
// API token to use for authentication. If set this is used
// instead of Email/Password.
Token string
// If Token is set and TokenAsBasicAuth is true, send API
// token in Authorization header using Basic Authentication
// with the API token as the username and 'x' as the password.
TokenAsBasicAuth bool
// If Token is set, TokenAsBasicAuth is false and
// TokenAsParameter is true, send API token in '_token' URL
// parameter.
TokenAsParameter bool
// Email and password to use for authentication.
Email, Password string
// Base specifies the mechanism by which individual HTTP
// requests are made. If Base is nil, http.DefaultTransport
// is used.
Base http.RoundTripper
// RateLimitInterval controls the rate limit interval using a
// token bucket. If not set no rate limiting will occur. See
// https://en.wikipedia.org/wiki/Token_bucket for more about
// token buckets.
RateLimitInterval time.Duration
// RateLimitBurstSize controls the rate limit burst size. If
// RateLimitInterval is not set, RateLimitBurstSize is
// ignored.
RateLimitBurstSize int
limiter *rate.Limiter
}
func (t *Transport) rateLimiter() *rate.Limiter {
if t.limiter == nil && t.RateLimitInterval != time.Duration(0) {
t.limiter = newLimiter(t.RateLimitInterval, t.RateLimitBurstSize)
}
return t.limiter
}
func (t *Transport) base() http.RoundTripper {
if t.Base != nil {
return t.Base
}
return http.DefaultTransport
}
func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) {
req2 := cloneRequest(req) // per http.RoundTripper contract
// don't add Lighthouse credentials to request if we're not
// talking to Lighthouse (for example, if we get redirected to
// an S3 URL when downloading a ticket attachment)
if strings.HasSuffix(req.URL.Hostname(), ".lighthouseapp.com") {
if len(t.Token) > 0 {
if t.TokenAsBasicAuth {
req2.SetBasicAuth(t.Token, "x")
} else if t.TokenAsParameter {
values := req2.URL.Query()
values.Set("_token", t.Token)
req2.URL.RawQuery = values.Encode()
} else {
req2.Header.Set("X-LighthouseToken", t.Token)
}
} else if len(t.Email) > 0 && len(t.Password) > 0 {
req2.SetBasicAuth(t.Email, t.Password)
}
}
rateLimiter := t.rateLimiter()
if rateLimiter != nil {
err := rateLimiter.Wait(context.Background())
if err != nil {
return nil, err
}
}
return t.base().RoundTrip(req2)
}
// 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
}
func newLimiter(interval time.Duration, b int) *rate.Limiter {
return rate.NewLimiter(rate.Every(interval), b)
}
func NewClient(token string) *http.Client {
return &http.Client{
Transport: &Transport{
Token: token,
},
}
}
func NewClientWithRateLimit(token string) *http.Client {
return &http.Client{
Transport: &Transport{
Token: token,
RateLimitInterval: DefaultRateLimitInterval,
RateLimitBurstSize: DefaultRateLimitBurstSize,
},
}
}
func NewClientBasicAuth(email, password string) *http.Client {
return &http.Client{
Transport: &Transport{
Email: email,
Password: password,
},
}
}
func NewClientBasicAuthWithRateLimit(email, password string) *http.Client {
return &http.Client{
Transport: &Transport{
Email: email,
Password: password,
RateLimitInterval: DefaultRateLimitInterval,
RateLimitBurstSize: DefaultRateLimitBurstSize,
},
}
}
type Service struct {
BasePath string
Client *http.Client
// RateLimitRetryRequests controls whether *Service.RoundTrip
// will automatically retry rate-limited requests that receive
// a 429 Too Many Requests response.
RateLimitRetryRequests bool
// RateLimitRetryAttempts controls how many attempts
// *Service.RoundTrip will make for a rate-limited request
// before giving up. If RateLimitRetryRequests is set and
// RateLimitRetryAttempts is zero, the value of
// DefaultRateLimitRetryAttempts is used.
// RateLimitRetryAttempts is ignored if RateLimitRetryRequests
// is not set.
RateLimitRetryAttempts int
// RateLimitMaxRetryAfter controls the maximum time
// *Service.RoundTrip will wait between each retry attempt.
// *Service.RoundTrip uses the number of seconds returned in
// the X-Rate-Limit-Retry-After header of the 429 Too Many
// Requests response as the amount of time to wait between
// each attempt, using RateLimitMaxRetryAfter as an upper
// bound on this value. If RateLimitRetryRequests is set and
// RateLimitMaxRetryAfter is zero, the value of
// DefaultRateLimitMaxRetryAfter is used.
// RateLimitMaxRetryAfter is ignored if RateLimitRetryRequests
// is not set.
RateLimitMaxRetryAfter time.Duration
}
func BasePath(account string) string {
return fmt.Sprintf("https://%s.lighthouseapp.com", account)
}
func NewService(account string, client *http.Client) *Service {
return &Service{
BasePath: BasePath(account),
Client: client,
}
}
type Plan struct {
Plan string `xml:"plan" json:"plan"`
Free bool `xml:"free" json:"free"`
Users int `xml:"users" json:"users"`
Projects int `xml:"projects" json:"projects"`
Storage int `xml:"storage" json:"storage"`
}
type planResponse struct {
XMLName xml.Name `xml:"hash"`
*Plan
}
func (pr *planResponse) decode(r io.Reader) error {
dec := xml.NewDecoder(r)
return dec.Decode(pr)
}
// Get account plan details. Undocumented, see
// http://help.lighthouseapp.com/discussions/api-developers/1100-check-if-using-free-plan.
func (s *Service) Plan() (*Plan, error) {
// using XML because JSON endpoint returns 406 Not Acceptable
resp, err := s.RoundTrip("GET", s.BasePath+"/plan.xml", nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
err = CheckResponse(resp, http.StatusOK)
if err != nil {
return nil, err
}
presp := &planResponse{}
err = presp.decode(resp.Body)
if err != nil {
return nil, err
}
return presp.Plan, nil
}
func (s *Service) RoundTrip(method, path string, body io.Reader) (*http.Response, error) {
var (
buf []byte
err error
resp *http.Response
)
if body != nil {
buf, err = ioutil.ReadAll(body)
if err != nil {
return nil, err
}
}
attempts := 1
maxRetryAfter := time.Duration(0)
if s.RateLimitRetryRequests {
attempts = s.RateLimitRetryAttempts
if attempts == 0 {
attempts = DefaultRateLimitRetryAttempts
}
maxRetryAfter = s.RateLimitMaxRetryAfter
if maxRetryAfter == time.Duration(0) {
maxRetryAfter = DefaultRateLimitMaxRetryAfter
}
}
for attempt := 1; attempt <= attempts; attempt++ {
if len(buf) > 0 {
body = bytes.NewReader(buf)
}
req, err := http.NewRequest(method, path, body)
if err != nil {
return nil, err
}
if len(req.Header.Get("Content-Type")) == 0 {
switch filepath.Ext(req.URL.Path) {
case ".json":
req.Header.Set("Content-Type", "application/json")
case ".xml":
req.Header.Set("Content-Type", "application/xml")
}
}
resp, err = s.Client.Do(req)
if err != nil {
return nil, err
}
if !s.RateLimitRetryRequests ||
resp.StatusCode != http.StatusTooManyRequests {
break
}
retryAfter := maxRetryAfter
if str := resp.Header.Get("X-Rate-Limit-Retry-After"); len(str) > 0 {
n, err := strconv.Atoi(str)
if err == nil && n > 0 {
retryAfter = time.Duration(n) * time.Second
if retryAfter > maxRetryAfter {
retryAfter = maxRetryAfter
}
}
}
if retryAfter != time.Duration(0) {
<-time.After(retryAfter + (5 * time.Second))
}
}
return resp, nil
}
type ErrUnprocessable struct {
Field string
Message string
}
func (eu *ErrUnprocessable) MarshalJSON() ([]byte, error) {
field, message := "", ""
if eu != nil {
field, message = eu.Field, eu.Message
}
arr := []string{field, message}
return json.Marshal(&arr)
}
func (eu *ErrUnprocessable) UnmarshalJSON(data []byte) error {
if data == nil {
return nil
}
if eu == nil {
eu = &ErrUnprocessable{}
}
eu.Field = ""
eu.Message = ""
arr := []string{}
err := json.Unmarshal(data, &arr)
if err != nil {
return err
}
if len(arr) != 2 {
return fmt.Errorf("ErrUnprocessable.UnmarshalJSON: length is %d, expected 2", len(arr))
}
eu.Field, eu.Message = arr[0], arr[1]
return nil
}
func (eu *ErrUnprocessable) Error() string {
return fmt.Sprintf("%s: %s", eu.Field, eu.Message)
}
type ErrUnprocessables []*ErrUnprocessable
func (eus ErrUnprocessables) Error() string {
msg := ""
for i, ve := range eus {
if i > 0 {
msg += ", "
}
msg += ve.Error()
}
return msg
}
type ErrUnexpectedResponse struct {
// The expected StatusCode
ExpectedCode int
// Resp.Body will always be closed.
Resp *http.Response
// BodyContents will contain the contents of Resp.Body if
// Unprocessables is nil.
BodyContents []byte
// Unprocessables will not be nil if Resp.StatusCode was 422
// StatusUnprocessableEntity.
Unprocessables ErrUnprocessables
}
func newErrUnexpectedResponse(resp *http.Response, expected int) error {
var err error
defer resp.Body.Close()
eur := &ErrUnexpectedResponse{
ExpectedCode: expected,
Resp: resp,
}
if resp.StatusCode != StatusUnprocessableEntity {
eur.BodyContents, err = ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
} else {
dec := json.NewDecoder(resp.Body)
eur.Unprocessables = ErrUnprocessables{}
err = dec.Decode(&eur.Unprocessables)
if err != nil {
return err
}
}
return eur
}
func (eir *ErrUnexpectedResponse) Error() string {
if eir.Unprocessables != nil {
return eir.Unprocessables.Error()
}
return fmt.Sprintf("expected %d %s response, received %s",
eir.ExpectedCode, http.StatusText(eir.ExpectedCode), eir.Resp.Status)
}
func CheckResponse(resp *http.Response, expected int) error {
if resp.StatusCode != expected {
return newErrUnexpectedResponse(resp, expected)
}
return nil
}
func ID(idStr string) (int, error) {
id, err := strconv.ParseInt(idStr, 10, 64)
if err != nil {
return 0, fmt.Errorf("invalid id %q", idStr)
}
return int(id), nil
}