-
Notifications
You must be signed in to change notification settings - Fork 6
/
rate.go
70 lines (60 loc) · 1.96 KB
/
rate.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
// Copyright (c) 2019, NewReleases Go client AUTHORS.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package newreleases
import (
"fmt"
"net/http"
"strconv"
"time"
)
const (
headerRateLimit = "X-RateLimit-Limit"
headerRateRemaining = "X-RateLimit-Remaining"
headerRateReset = "X-RateLimit-Reset"
headerRateRetry = "Retry-After"
)
// Rate contains the request rate limit information.
type Rate struct {
Limit int // The maximum number of requests that the user is permitted to make per hour.
Remaining int // The number of requests remaining in the current rate limit window.
Reset time.Time // Seconds until current rate limit window will reset to the maximal value.
Retry time.Time // Seconds until new requests are permitted when limit is reached.
}
func (r Rate) String() (s string) {
return fmt.Sprintf("limit: %v, remaining %v, reset at %s", r.Limit, r.Remaining, r.Reset)
}
func (c *Client) setRate(r *http.Response) {
rate := parseRate(r)
c.rateMu.Lock()
c.rate = rate
c.rateMu.Unlock()
}
// Rate returns the current request rate limit information.
func (c *Client) Rate() (r Rate) {
c.rateMu.RLock()
r = c.rate
c.rateMu.RUnlock()
return r
}
// parseRate creates a new Rate with information from the response.
func parseRate(r *http.Response) (rate Rate) {
if limit := r.Header.Get(headerRateLimit); limit != "" {
rate.Limit, _ = strconv.Atoi(limit)
}
if remaining := r.Header.Get(headerRateRemaining); remaining != "" {
rate.Remaining, _ = strconv.Atoi(remaining)
}
if reset := r.Header.Get(headerRateReset); reset != "" {
if v, _ := strconv.ParseInt(reset, 10, 64); v != 0 {
rate.Reset = time.Now().Add(time.Duration(v) * time.Second)
}
}
if retry := r.Header.Get(headerRateRetry); retry != "" {
if v, _ := strconv.ParseInt(retry, 10, 64); v != 0 {
rate.Retry = time.Now().Add(time.Duration(v) * time.Second)
}
}
return rate
}