-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathclient.go
250 lines (205 loc) · 5.99 KB
/
client.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
// Portions of code in this file are adapted from the go-github
// project located at https://github.com/google/go-github
package adafruitio
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"reflect"
"runtime"
"github.com/google/go-querystring/query"
)
const (
BaseURL = "https://io.adafruit.com"
APIPath = "/api/v2"
xAIOKeyHeader = "X-AIO-Key"
)
type Client struct {
// Base HTTP client used to talk to io.adafruit.com
client *http.Client
// Base URL for API requests. Defaults to public adafruit io URL.
baseURL *url.URL
apiKey string
username string
userAgent string
// Services that make up adafruit io.
Data *DataService
Feed *FeedService
Group *GroupService
}
// Response wraps http.Response and adds fields unique to Adafruit's API.
type Response struct {
*http.Response
}
func (r *Response) Debug() {
all, _ := ioutil.ReadAll(r.Body)
fmt.Println("---")
fmt.Println(string(all))
fmt.Println("---")
}
type AIOError struct {
Message string `json:"error"`
}
// ErrorResponse reports one or more errors caused by an API request.
type ErrorResponse struct {
Response *http.Response // HTTP response that carried the error message
Message string
AIOError *AIOError
}
func (r *ErrorResponse) Error() string {
return fmt.Sprintf(
"%v %v %v: %v",
r.Response.Request.Method,
r.Response.Request.URL,
r.Response.StatusCode,
r.Message,
)
}
func NewClient(username, key string) *Client {
c := &Client{username: username, apiKey: key}
c.SetBaseURL(BaseURL)
c.userAgent = fmt.Sprintf("AdafruitIO-Go/%v (%v %v)", Version, runtime.GOOS, runtime.Version())
c.client = http.DefaultClient
c.Data = &DataService{client: c}
c.Feed = &FeedService{client: c}
c.Group = &GroupService{client: c}
return c
}
// SetBaseURL updates the base URL to use. Mainly here for use in unit testing
func (c *Client) SetBaseURL(baseURL string) {
c.baseURL, _ = url.Parse(fmt.Sprintf("%s%s/%s/", baseURL, APIPath, c.username))
}
func (c *Client) GetUserKey() (username string, apikey string) {
return c.username, c.apiKey
}
// SetFeed takes a Feed record as a parameter and uses that feed for all
// subsequent Data related API calls.
//
// A Feed must be set before making calls to the Data service.
func (c *Client) SetFeed(feed *Feed) {
c.Feed.CurrentFeed = feed
}
func (c *Client) checkFeed() error {
if c.Feed.CurrentFeed == nil {
return fmt.Errorf("CurrentFeed must be set")
}
return nil
}
// 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.
//
// adapted from https://github.com/google/go-github
func CheckResponse(r *http.Response) error {
if c := r.StatusCode; 200 <= c && c <= 299 {
return nil
}
errorResponse := &ErrorResponse{Response: r}
// read response body into Error.Message
body, _ := ioutil.ReadAll(r.Body)
// try to unmarshal error response Body into AIOError record
jerr := json.Unmarshal(body, &errorResponse.AIOError)
if jerr != nil {
fmt.Println("> failed to parse response body as JSON")
// failed to unmarhsal API Error, use body as Message
errorResponse.Message = string(body)
} else {
fmt.Println("> parsed response body as JSON", errorResponse.AIOError)
errorResponse.Message = errorResponse.AIOError.Message
}
return errorResponse
}
// NewRequest 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.
// Relative URLs should always be specified without a preceding slash. If
// specified, the value pointed to by body is JSON encoded and included as the
// request body.
//
// adapted from https://github.com/google/go-github
func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Request, error) {
rel, err := url.Parse(urlStr)
if err != nil {
return nil, err
}
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 := http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
req.Header.Add("Accept", "application/json")
req.Header.Add("Content-Type", "application/json")
// Authentication v1
req.Header.Add(xAIOKeyHeader, c.apiKey)
if c.userAgent != "" {
req.Header.Add("User-Agent", c.userAgent)
}
return req, nil
}
// 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. If v implements the io.Writer
// interface, the raw response body will be written to v, without attempting to
// first decode it.
//
// adapted from https://github.com/google/go-github
func (c *Client) Do(req *http.Request, v interface{}) (*Response, error) {
resp, err := c.client.Do(req)
if err != nil {
return nil, err
}
defer func() {
// Drain up to 512 bytes and close the body to let the Transport reuse the connection
io.CopyN(ioutil.Discard, resp.Body, 512)
resp.Body.Close()
}()
response := &Response{
Response: resp,
}
err = CheckResponse(resp)
if err != nil {
// even though there was an error, we still return the response
// in case the caller wants to inspect it further
return response, err
}
if v != nil {
if w, ok := v.(io.Writer); ok {
io.Copy(w, resp.Body)
} else {
err = json.NewDecoder(resp.Body).Decode(v)
if err == io.EOF {
err = nil // ignore EOF errors caused by empty response body
}
}
}
return response, err
}
// addOptions adds the parameters in opt as URL query parameters to s. opt
// must be a struct whose fields may contain "url" tags.
func addOptions(s string, opt interface{}) (string, error) {
v := reflect.ValueOf(opt)
if v.Kind() == reflect.Ptr && v.IsNil() {
return s, nil
}
u, err := url.Parse(s)
if err != nil {
return s, err
}
qs, err := query.Values(opt)
if err != nil {
return s, err
}
u.RawQuery = qs.Encode()
return u.String(), nil
}