-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamr.go
155 lines (134 loc) · 3.35 KB
/
streamr.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
// Package streamr implements Go client for Streamr API.
package streamr
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"time"
)
// Client is the Streamr API client.
type Client struct {
// HTTP Client used to communicate with the API.
client *http.Client
// APIKey is Streamr API key.
APIKey string
// Base URL for API requests.
BaseURL *url.URL
common service // Reuse a single struct instead of allocating one for each service on the heap.
// Services used for talking to different parts of the Streamr API.
Data *DataService
}
type service struct {
client *Client
}
// Response is a Streamr API response. This wraps standard http.Response.
type Response struct {
*http.Response
}
// newResponse creates a new Response for the provided http.Response.
// r must not be nil.
func newResponse(r *http.Response) *Response {
response := &Response{Response: r}
return response
}
// NewClient creates a new Streamr client.
func NewClient(apiKey string) (*Client, error) {
var url = "https://www.streamr.com/api/v1/"
return NewClientWithBaseURL(apiKey, url)
}
// NewClientWithBaseURL creates a new Streamr client with given baseURL for mostly testing purposes.
func NewClientWithBaseURL(apiKey, baseURL string) (*Client, error) {
url, err := url.Parse(baseURL)
if err != nil {
return nil, err
}
c := &Client{
client: &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
Timeout: 10 * time.Second,
},
APIKey: apiKey,
BaseURL: url,
}
c.common.client = c
c.Data = (*DataService)(&c.common)
return c, nil
}
// NewRequest creates an API request.
func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Request, error) {
u, err := c.BaseURL.Parse(urlStr)
if err != nil {
return nil, err
}
var buf io.ReadWriter
if body != nil {
buf = new(bytes.Buffer)
enc := json.NewEncoder(buf)
enc.SetEscapeHTML(false)
err = enc.Encode(body)
if err != nil {
return nil, err
}
}
req, err := http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
req.Header.Set("Authorization", fmt.Sprintf("Token %v", c.APIKey))
return req, nil
}
// Do sends an API request and returns the API response.
func (c *Client) Do(req *http.Request, v interface{}) (*Response, error) {
res, err := c.client.Do(req)
if err != nil {
return nil, err
}
defer func() {
if e := res.Body.Close(); e != nil {
err = e
}
}()
response := newResponse(res)
err = CheckResponse(res)
if err != nil {
return response, err
}
if v != nil {
decErr := json.NewDecoder(res.Body).Decode(v)
if decErr == io.EOF {
decErr = nil // ignore EOF errors caused by empty response body
}
if decErr != nil {
err = decErr
}
}
return response, err
}
// An ErrorResponse reports error caused by an API request.
type ErrorResponse struct {
Response *http.Response // HTTP response that caused this error
}
func (r *ErrorResponse) Error() string {
return fmt.Sprintf("%v %v: %d",
r.Response.Request.Method,
r.Response.Request.URL,
r.Response.StatusCode,
)
}
// CheckResponse checks the API response for errors.
func CheckResponse(r *http.Response) error {
if 200 <= r.StatusCode && r.StatusCode <= 299 {
return nil
}
return &ErrorResponse{
Response: r,
}
}