forked from exzz/netatmo-api-go
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathweather.go
375 lines (328 loc) · 10.7 KB
/
weather.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package netatmo
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
"time"
"golang.org/x/oauth2"
)
const (
// DefaultBaseURL is netatmo api url
baseURL = "https://api.netatmo.com/"
// DefaultAuthURL is netatmo auth url
authURL = baseURL + "oauth2/token"
// DefaultDeviceURL is netatmo device url
deviceURL = baseURL + "/api/getstationsdata"
)
// Config is used to specify credential to Netatmo API
// ClientID : Client ID from netatmo app registration at http://dev.netatmo.com/dev/listapps
// ClientSecret : Client app secret
// Username : Your netatmo account username
// Password : Your netatmo account password
type Config struct {
ClientID string
ClientSecret string
RefreshToken string
AccessToken string
TokenValidUntil time.Time
}
// Client use to make request to Netatmo API
type Client struct {
oauth *oauth2.Config
httpClient *http.Client
httpResponse *http.Response
Dc *DeviceCollection
RefreshToken string
AccessToken string
TokenValidUntil time.Time
}
// DeviceCollection hold all devices from netatmo account
type DeviceCollection struct {
Body struct {
Devices []*Device `json:"devices"`
}
}
// Device is a station or a module
// ID : Mac address
// StationName : Station name (only for station)
// ModuleName : Module name
// BatteryPercent : Percentage of battery remaining
// WifiStatus : Wifi status per Base station
// RFStatus : Current radio status per module
// Type : Module type :
//
// "NAMain" : for the base station
// "NAModule1" : for the outdoor module
// "NAModule4" : for the additionnal indoor module
// "NAModule3" : for the rain gauge module
// "NAModule2" : for the wind gauge module
//
// DashboardData : Data collection from device sensors
// DataType : List of available datas
// LinkedModules : Associated modules (only for station)
type Device struct {
ID string `json:"_id"`
StationName string `json:"station_name"`
ModuleName string `json:"module_name"`
BatteryPercent *int32 `json:"battery_percent,omitempty"`
WifiStatus *int32 `json:"wifi_status,omitempty"`
RFStatus *int32 `json:"rf_status,omitempty"`
Type string
DashboardData DashboardData `json:"dashboard_data"`
Place Place `json:"place"`
//DataType []string `json:"data_type"`
LinkedModules []*Device `json:"modules"`
}
// DashboardData is used to store sensor values
// Temperature : Last temperature measure @ LastMeasure (in °C)
// Humidity : Last humidity measured @ LastMeasure (in %)
// CO2 : Last Co2 measured @ time_utc (in ppm)
// Noise : Last noise measured @ LastMeasure (in db)
// Pressure : Last Sea level pressure measured @ LastMeasure (in mb)
// AbsolutePressure : Real measured pressure @ LastMeasure (in mb)
// Rain : Last rain measured (in mm)
// Rain1Hour : Amount of rain in last hour
// Rain1Day : Amount of rain today
// WindAngle : Current 5 min average wind direction @ LastMeasure (in °)
// WindStrength : Current 5 min average wind speed @ LastMeasure (in km/h)
// GustAngle : Direction of the last 5 min highest gust wind @ LastMeasure (in °)
// GustStrength : Speed of the last 5 min highest gust wind @ LastMeasure (in km/h)
// LastMeasure : Contains timestamp of last data received
type DashboardData struct {
Temperature *float32 `json:"Temperature,omitempty"` // use pointer to detect ommitted field by json mapping
MaxTemp *float32 `json:"max_temp,omitempty"`
MinTemp *float32 `json:"min_temp,omitempty"`
TempTrend string `json:"temp_trend,omitempty"`
Humidity *int32 `json:"Humidity,omitempty"`
CO2 *int32 `json:"CO2,omitempty"`
Noise *int32 `json:"Noise,omitempty"`
Pressure *float32 `json:"Pressure,omitempty"`
AbsolutePressure *float32 `json:"AbsolutePressure,omitempty"`
PressureTrend string `json:"pressure_trend,omitempty"`
Rain *float32 `json:"Rain,omitempty"`
Rain1Hour *float32 `json:"sum_rain_1,omitempty"`
Rain1Day *float32 `json:"sum_rain_24,omitempty"`
WindAngle *int32 `json:"WindAngle,omitempty"`
WindStrength *int32 `json:"WindStrength,omitempty"`
GustAngle *int32 `json:"GustAngle,omitempty"`
GustStrength *int32 `json:"GustStrength,omitempty"`
LastMeasure *int64 `json:"time_utc"`
}
type Place struct {
Altitude *int32 `json:"altitude,omitempty"`
City string `json:"city,omitempty"`
Country string `json:"country,omitempty"`
Timezone string `json:"timezone,omitempty"`
Location Location `json:"location,omitempty"`
}
type Location struct {
Longitude *float32
Latitude *float32
}
func (tp *Location) UnmarshalJSON(data []byte) error {
a := []interface{}{&tp.Longitude, &tp.Latitude}
return json.Unmarshal(data, &a)
}
// NewClient create a handle authentication to Netamo API
func NewClient(config Config) (*Client, error) {
oauth := &oauth2.Config{
ClientID: config.ClientID,
ClientSecret: config.ClientSecret,
Endpoint: oauth2.Endpoint{
TokenURL: authURL,
},
}
now := time.Now()
if config.AccessToken != "" && config.TokenValidUntil.After(now) {
token := &oauth2.Token{
AccessToken: config.AccessToken,
RefreshToken: config.RefreshToken,
Expiry: config.TokenValidUntil,
}
return &Client{
oauth: oauth,
httpClient: oauth.Client(context.Background(), token),
Dc: &DeviceCollection{},
AccessToken: config.AccessToken,
RefreshToken: config.RefreshToken,
TokenValidUntil: config.TokenValidUntil,
}, nil
}
// Zugriffstoken ist abgelaufen, hole ein neues mit dem Aktualisierungstoken
token := &oauth2.Token{
RefreshToken: config.RefreshToken,
}
token, err := oauth.TokenSource(context.Background(), token).Token()
if err != nil {
return nil, err
}
// Aktualisiere die Config mit dem neuen Zugriffstoken und dem Ablaufdatum
config.AccessToken = token.AccessToken
config.TokenValidUntil = token.Expiry
return &Client{
oauth: oauth,
httpClient: oauth.Client(context.Background(), token),
Dc: &DeviceCollection{},
AccessToken: token.AccessToken,
TokenValidUntil: token.Expiry,
RefreshToken: token.RefreshToken,
}, nil
}
// do a url encoded HTTP POST request
func (c *Client) doHTTPPostForm(url string, data url.Values) (*http.Response, error) {
req, err := http.NewRequest("POST", url, strings.NewReader(data.Encode()))
if err != nil {
return nil, err
}
//req.ContentLength = int64(reader.Len())
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
return c.doHTTP(req)
}
// send http GET request
func (c *Client) doHTTPGet(url string, data url.Values) (*http.Response, error) {
if data != nil {
url = url + "?" + data.Encode()
}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
return c.doHTTP(req)
}
// do a generic HTTP request
func (c *Client) doHTTP(req *http.Request) (*http.Response, error) {
// debug
//debug, _ := httputil.DumpRequestOut(req, true)
//fmt.Printf("%s\n\n", debug)
var err error
c.httpResponse, err = c.httpClient.Do(req)
if err != nil {
return nil, err
}
return c.httpResponse, nil
}
// process HTTP response
// Unmarshall received data into holder struct
func processHTTPResponse(resp *http.Response, err error, holder interface{}) error {
if resp != nil {
defer resp.Body.Close()
}
if err != nil {
return err
}
// debug
//debug, _ := httputil.DumpResponse(resp, true)
//fmt.Printf("%s\n\n", debug)
// check http return code
if resp.StatusCode != 200 {
//bytes, _ := ioutil.ReadAll(resp.Body)
return fmt.Errorf("Bad HTTP return code %d", resp.StatusCode)
}
// Unmarshall response into given struct
if err = json.NewDecoder(resp.Body).Decode(holder); err != nil {
return err
}
return nil
}
// GetStations returns the list of stations owned by the user, and their modules
func (c *Client) Read() (*DeviceCollection, error) {
resp, err := c.doHTTPGet(deviceURL, url.Values{"app_type": {"app_station"}})
//dc := &DeviceCollection{}
if err = processHTTPResponse(resp, err, c.Dc); err != nil {
return nil, err
}
return c.Dc, nil
}
// Devices returns the list of devices
func (dc *DeviceCollection) Devices() []*Device {
return dc.Body.Devices
}
// Stations is an alias of Devices
func (dc *DeviceCollection) Stations() []*Device {
return dc.Devices()
}
// Modules returns associated device module
func (d *Device) Modules() []*Device {
modules := d.LinkedModules
modules = append(modules, d)
return modules
}
// Data returns timestamp and the list of sensor value for this module
func (d *Device) Data() (int64, map[string]interface{}) {
// return only populate field of DashboardData
m := make(map[string]interface{})
if d.DashboardData.Temperature != nil {
m["Temperature"] = *d.DashboardData.Temperature
}
if d.DashboardData.MinTemp != nil {
m["MinTemp"] = *d.DashboardData.MinTemp
}
if d.DashboardData.MaxTemp != nil {
m["MaxTemp"] = *d.DashboardData.MaxTemp
}
if d.DashboardData.TempTrend != "" {
m["TempTrend"] = d.DashboardData.TempTrend
}
if d.DashboardData.Humidity != nil {
m["Humidity"] = *d.DashboardData.Humidity
}
if d.DashboardData.CO2 != nil {
m["CO2"] = *d.DashboardData.CO2
}
if d.DashboardData.Noise != nil {
m["Noise"] = *d.DashboardData.Noise
}
if d.DashboardData.Pressure != nil {
m["Pressure"] = *d.DashboardData.Pressure
}
if d.DashboardData.AbsolutePressure != nil {
m["AbsolutePressure"] = *d.DashboardData.AbsolutePressure
}
if d.DashboardData.PressureTrend != "" {
m["PressureTrend"] = d.DashboardData.PressureTrend
}
if d.DashboardData.Rain != nil {
m["Rain"] = *d.DashboardData.Rain
}
if d.DashboardData.Rain1Hour != nil {
m["Rain1Hour"] = *d.DashboardData.Rain1Hour
}
if d.DashboardData.Rain1Day != nil {
m["Rain1Day"] = *d.DashboardData.Rain1Day
}
if d.DashboardData.WindAngle != nil {
m["WindAngle"] = *d.DashboardData.WindAngle
}
if d.DashboardData.WindStrength != nil {
m["WindStrength"] = *d.DashboardData.WindStrength
}
if d.DashboardData.GustAngle != nil {
m["GustAngle"] = *d.DashboardData.GustAngle
}
if d.DashboardData.GustAngle != nil {
m["GustAngle"] = *d.DashboardData.GustAngle
}
if d.DashboardData.GustStrength != nil {
m["GustStrength"] = *d.DashboardData.GustStrength
}
return *d.DashboardData.LastMeasure, m
}
// Info returns timestamp and the list of info value for this module
func (d *Device) Info() (int64, map[string]interface{}) {
// return only populate field of DashboardData
m := make(map[string]interface{})
// Return data from module level
if d.BatteryPercent != nil {
m["BatteryPercent"] = *d.BatteryPercent
}
if d.WifiStatus != nil {
m["WifiStatus"] = *d.WifiStatus
}
if d.RFStatus != nil {
m["RFStatus"] = *d.RFStatus
}
return *d.DashboardData.LastMeasure, m
}