-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalexaapi.go
264 lines (235 loc) · 7.21 KB
/
alexaapi.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
package alexa
import (
"fmt"
"strings"
"errors"
"net/http"
"io/ioutil"
"encoding/json"
"github.com/webability-go/alexa/request"
)
const (
APITIMEZONE = "/v2/devices/{deviceId}/settings/System.timeZone"
APIDISTANCEUNIT = "/v2/devices/{deviceId}/settings/System.distanceUnits"
APITEMPERATUREUNIT = "/v2/devices/{deviceId}/settings/System.temperatureUnit"
APINAME = "/v2/accounts/~current/settings/Profile.name"
APIGIVENNAME = "/v2/accounts/~current/settings/Profile.givenName"
APIEMAIL = "/v2/accounts/~current/settings/Profile.email"
APIMOBILENUMBER = "/v2/accounts/~current/settings/Profile.mobileNumber"
APICOUNTRY = "/v1/devices/{deviceId}/settings/address/countryAndPostalCode"
APIADDRESS = "/v1/devices/{deviceId}/settings/address"
)
func getAPIAccessToken(request *request.AlexaRequest) string {
return request.Context.System.APIAccessToken
}
func getAPIEndPoint(request *request.AlexaRequest) string {
return request.Context.System.APIEndPoint
}
func getAPIDevideId(request *request.AlexaRequest) string {
return request.Context.System.Device.DeviceID
}
func accessAPI(endPoint string, service string, token string) ([]byte, error) {
hc := http.Client{}
req, err := http.NewRequest("GET", endPoint + service, nil )
if err != nil {
return nil, err
}
req.Header.Set("content-type", "application/json")
if token != "" {
req.Header.Set("Authorization", "Bearer " + token)
}
resp, err := hc.Do(req)
if err != nil {
return nil, err
}
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
resp.Body.Close()
if DEVEL {
fmt.Println("RAW DATA", string(data))
}
return data, nil
}
func accessAccountAPI(request *request.AlexaRequest, service string) (interface{}, error) {
accessToken := getAPIAccessToken(request)
endPoint := getAPIEndPoint(request)
if accessToken == "" || endPoint == "" {
return nil, errors.New("Error: There is no api endPoint or accessToken in the request.")
}
jsonstring, err := accessAPI(endPoint, service, accessToken)
var data interface{}
err = json.Unmarshal(jsonstring, &data)
if err != nil {
return nil, err
}
return data, nil
}
func accessDeviceAddressAPI(request *request.AlexaRequest, service string) (interface{}, error) {
accessToken := getAPIAccessToken(request)
endPoint := getAPIEndPoint(request)
if accessToken == "" || endPoint == "" {
return nil, errors.New("Error: There is no api endPoint or accessToken in the request.")
}
id := getAPIDevideId(request)
service = strings.Replace(service, "{deviceId}", id, -1)
jsonstring, err := accessAPI(endPoint, service, accessToken)
var data interface{}
err = json.Unmarshal(jsonstring, &data)
if err != nil {
return nil, err
}
if DEVEL {
fmt.Println("ARRAY DATA", data)
}
return data, nil
}
func accessDeviceAPI(request *request.AlexaRequest, service string) (interface{}, error) {
accessToken := getAPIAccessToken(request);
endPoint := getAPIEndPoint(request);
if accessToken == "" || endPoint == "" {
return nil, nil
}
id := getAPIDevideId(request)
service = strings.Replace(service, "{deviceId}", id, -1)
jsonstring, err := accessAPI(endPoint, service, accessToken)
if err != nil {
return nil, err
}
var data interface{}
err = json.Unmarshal(jsonstring, &data)
if err != nil {
return nil, err
}
if DEVEL {
fmt.Println("ARRAY DATA", data)
}
return data, nil
}
/* ACCOUNT API */
func GetAccountFullName(request *request.AlexaRequest) (string, error) {
data, err := accessAccountAPI(request, APINAME)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetAccountGivenName(request *request.AlexaRequest) (string, error) {
data, err := accessAccountAPI(request, APIGIVENNAME)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetAccountEmail(request *request.AlexaRequest) (string, error) {
data, err := accessAccountAPI(request, APIEMAIL)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetAccountMobileNumber(request *request.AlexaRequest) (map[string]interface{}, error) {
data, err := accessAccountAPI(request, APIMOBILENUMBER)
if err != nil {
return nil, err
}
switch data.(type) {
case map[string]interface{}:
ndata := data.(map[string]interface{})
_, ok := ndata["countryCode"]
if (!ok) {
return nil, errors.New(fmt.Sprint(data))
}
return ndata, nil
}
return nil, errors.New("Data type not known: " + fmt.Sprint(data))
}
/* DEVICE ADDRESS AND COUNTRY */
func GetDeviceCountry(request *request.AlexaRequest) (string, error) {
data, err := accessDeviceAddressAPI(request, APICOUNTRY)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetDeviceAddress(request *request.AlexaRequest) (string, error) {
data, err := accessDeviceAddressAPI(request, APIADDRESS)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
// DEVICE PARAMS (temp, zone, locale, etc)
func GetDeviceTimeZone(request *request.AlexaRequest) (string, error) {
data, err := accessDeviceAPI(request, APITIMEZONE)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetDeviceDistanceUnit(request *request.AlexaRequest) (string, error) {
data, err := accessDeviceAPI(request, APIDISTANCEUNIT)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
func GetDeviceTemperatureUnit(request *request.AlexaRequest) (string, error) {
data, err := accessDeviceAPI(request, APITEMPERATUREUNIT)
if err != nil {
return "", err
}
switch data.(type) {
case string:
return data.(string), nil
case map[string]interface{}:
return "", errors.New(fmt.Sprint(data))
}
return "", errors.New("Data type not known: " + fmt.Sprint(data))
}
// Still to implement:
// TO DO LISTS
// SHOPPING LISTS