-
Notifications
You must be signed in to change notification settings - Fork 29
/
DailyStress.go
56 lines (46 loc) · 1.45 KB
/
DailyStress.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
package connect
import (
"fmt"
"time"
)
// StressPoint is a measured stress level at a point in time.
type StressPoint struct {
Timestamp time.Time
Value int
}
// DailyStress is a stress reading for a single day.
type DailyStress struct {
UserProfilePK int `json:"userProfilePK"`
CalendarDate string `json:"calendarDate"`
StartGMT Time `json:"startTimestampGMT"`
EndGMT Time `json:"endTimestampGMT"`
StartLocal Time `json:"startTimestampLocal"`
EndLocal Time `json:"endTimestampLocal"`
Max int `json:"maxStressLevel"`
Average int `json:"avgStressLevel"`
Values []StressPoint
}
// DailyStress will retrieve stress levels for date.
func (c *Client) DailyStress(date time.Time) (*DailyStress, error) {
URL := fmt.Sprintf("https://connect.garmin.com/modern/proxy/wellness-service/wellness/dailyStress/%s",
formatDate(date))
if !c.authenticated() {
return nil, ErrNotAuthenticated
}
// We use a proxy object to deserialize the values to proper Go types.
var proxy struct {
DailyStress
StressValuesArray [][2]int64 `json:"stressValuesArray"`
}
err := c.getJSON(URL, &proxy)
if err != nil {
return nil, err
}
ret := &proxy.DailyStress
ret.Values = make([]StressPoint, len(proxy.StressValuesArray))
for i, point := range proxy.StressValuesArray {
ret.Values[i].Timestamp = time.Unix(point[0]/1000, 0)
ret.Values[i].Value = int(point[1])
}
return &proxy.DailyStress, nil
}