-
Notifications
You must be signed in to change notification settings - Fork 3
/
alphavantage.go
75 lines (63 loc) · 1.61 KB
/
alphavantage.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
package alphavantage
import (
"fmt"
"io/ioutil"
"net/http"
"sync"
"time"
)
const baseURL = "https://www.alphavantage.co"
const httpDelayPerRequest = time.Second * 15
// Client represents a new alphavantage client
type Client struct {
apiKey string
httpClient *http.Client
httpNextRequest time.Time
sync.Mutex
}
// New creates new Client instance
func New(apiKey string) *Client {
const httpTimeout = time.Second * 30
httpClient := &http.Client{
Timeout: httpTimeout,
Transport: &http.Transport{
MaxIdleConnsPerHost: 5,
},
}
return &Client{
apiKey: apiKey,
httpClient: httpClient,
}
}
func (c *Client) makeHTTPRequest(url string) ([]byte, error) {
c.Lock()
defer c.Unlock()
// Run request only every x seconds (determined by httpNextRequest)
now := time.Now()
if now.Before(c.httpNextRequest) {
ticker := time.NewTicker(c.httpNextRequest.Sub(now))
<-ticker.C
}
defer func(c *Client) {
c.httpNextRequest = time.Now().Add(httpDelayPerRequest)
}(c)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, fmt.Errorf("building http request failed: %w", err)
}
req.Header.Set("User-Agent", "Go client: github.com/sklinkert/alphavantage")
resp, err := c.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("http request failed: %w", err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("reading response failed: %w", err)
}
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("unexpected status code: expected %d, got %d",
http.StatusOK, resp.StatusCode)
}
return body, nil
}