lume/client.go

98 lines
2.3 KiB
Go
Raw Normal View History

2020-02-24 03:01:12 +00:00
package lifx
import (
2020-02-29 03:56:33 +00:00
//"crypto/tls"
2020-02-24 03:01:12 +00:00
"encoding/json"
2020-02-29 06:09:06 +00:00
"errors"
2020-02-24 03:01:12 +00:00
"fmt"
"io"
"io/ioutil"
2020-02-24 03:01:12 +00:00
"net/http"
)
2020-02-29 21:57:32 +00:00
type (
Client struct {
accessToken string
Client *http.Client
}
Results struct {
Results []Result `json:results`
}
Result struct {
ID string `json:"id"`
Label string `json:"label"`
Status Status `json:"status"`
}
)
2020-02-29 06:38:53 +00:00
var errorMap = map[int]error{
http.StatusNotFound: errors.New("Selector did not match any lights"),
http.StatusUnauthorized: errors.New("Bad access token"),
http.StatusForbidden: errors.New("Bad OAuth scope"),
http.StatusUnprocessableEntity: errors.New("Missing or malformed parameters"),
http.StatusUpgradeRequired: errors.New("HTTP was used to make the request instead of HTTPS. Repeat the request using HTTPS instead"),
http.StatusTooManyRequests: errors.New("The request exceeded a rate limit"),
http.StatusInternalServerError: errors.New("Something went wrong on LIFX's end"),
http.StatusBadGateway: errors.New("Something went wrong on LIFX's end"),
http.StatusServiceUnavailable: errors.New("Something went wrong on LIFX's end"),
523: errors.New("Something went wrong on LIFX's end"),
}
2020-02-29 06:43:32 +00:00
func NewClient(accessToken string) *Client {
2020-02-29 03:56:33 +00:00
tr := &http.Transport{
//TLSNextProto: make(map[string]func(authority string, c *tls.Conn) http.RoundTripper),
}
return &Client{
2020-02-29 06:43:32 +00:00
accessToken: accessToken,
Client: &http.Client{Transport: tr},
2020-02-24 03:01:12 +00:00
}
}
2020-02-29 19:05:07 +00:00
func (c *Client) NewRequest(method, url string, body io.Reader) (req *http.Request, err error) {
req, err = http.NewRequest(method, url, body)
if err != nil {
return
}
2020-02-29 19:05:07 +00:00
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", c.accessToken))
return
2020-02-24 03:01:12 +00:00
}
2020-02-29 19:05:07 +00:00
func (c *Client) Request(method, url string, body io.Reader) ([]Result, error) {
req, err := c.NewRequest(method, url, body)
if err != nil {
2020-02-29 01:34:59 +00:00
return nil, err
}
2020-02-29 19:05:07 +00:00
resp, err := c.Client.Do(req)
2020-02-24 03:01:12 +00:00
if err != nil {
2020-02-29 01:34:59 +00:00
return nil, err
2020-02-24 03:01:12 +00:00
}
switch resp.StatusCode {
case http.StatusAccepted:
2020-02-29 01:34:59 +00:00
return nil, nil
case http.StatusMultiStatus:
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
2020-02-29 01:34:59 +00:00
return nil, err
}
r := Results{}
err = json.Unmarshal(body, &r)
if err != nil {
2020-02-29 01:34:59 +00:00
return nil, err
}
return r.Results, nil
}
2020-02-29 06:38:53 +00:00
err, ok := errorMap[resp.StatusCode]
if ok {
return nil, err
}
2020-02-29 01:34:59 +00:00
return nil, nil
}