-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdevice.go
389 lines (369 loc) · 10.1 KB
/
device.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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package resingo
import (
"crypto/rand"
"encoding/hex"
"encoding/json"
"errors"
"fmt"
"net/url"
"time"
"github.com/guregu/null"
)
//ErrDeviceNotFound is returned when there is no device returned from an API call
//for devices.
//
// We assume that, a valid API call will alwayss return with valid results, so
// lack of any matching devices means we didn't find anything.
//
// NOTE: This should have been handled by resin api. Probably with status codes
// and the response body indicating nothing was dound.
var ErrDeviceNotFound = errors.New("resingo: device not found")
//Device represent the information about a resin device
type Device struct {
ID int64 `json:"id"`
Name string `json:"name"`
WebAccessible bool `json:"is_web_accessible"`
Type string `json:"device_type"`
Application struct {
ID int64 `json:"__id"`
Metadata struct {
URI string `json:"uri"`
} `json:"__deferred"`
} `json:"application"`
UUID string `json:"uuid"`
User User `json:"user"`
Actor int64 `json:"actor"`
IsOnline bool `json:"is_online"`
Commit string `json:"commit"`
Status string `json:"status"`
LastConnectivityEvent null.Time `json:"last_connectivity_event"`
IP string `json:"ip_address"`
VPNAddr string `json:"vpn_address"`
PublicAddr string `json:"public_address"`
SuprevisorVersion string `json:"supervisor_version"`
Note string `json:"note"`
OsVersion string `json:"os_version"`
Location string `json:"location"`
Longitude string `json:"longitude"`
Latitude string `json:"latitude"`
LogsChannel string `json:"logs_channel"`
}
//DevGetAll returns all devices that belong to the user who authorized the
//context ctx.
func DevGetAll(ctx *Context) ([]*Device, error) {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint("device")
b, err := doJSON(ctx, "GET", uri, h, nil, nil)
if err != nil {
return nil, err
}
var devRes = struct {
D []*Device `json:"d"`
}{}
err = json.Unmarshal(b, &devRes)
if err != nil {
return nil, err
}
return devRes.D, nil
}
//GenerateUUID generates uuid suitable for resin devices
func GenerateUUID() (string, error) {
src := make([]byte, 31)
_, err := rand.Read(src)
if err != nil {
return "", err
}
return hex.EncodeToString(src), nil
}
//DevRegister registers the device with uuid to the the application with name
//appName.
func DevRegister(ctx *Context, appName, uuid string) (*Device, error) {
app, err := AppGetByName(ctx, appName)
if err != nil {
return nil, err
}
appKey, err := AppGetAPIKey(ctx, appName)
if err != nil {
return nil, err
}
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint("device")
data := make(map[string]interface{})
data["user"] = ctx.Config.UserID()
data["device_type"] = app.DeviceType
data["application"] = app.ID
data["registered_at"] = time.Now().Unix()
data["uuid"] = uuid
data["apikey"] = appKey
body, err := marhsalReader(data)
if err != nil {
return nil, err
}
b, err := doJSON(ctx, "POST", uri, h, nil, body)
//fmt.Println(string(b))
if err != nil {
return nil, err
}
rst := &Device{}
err = json.Unmarshal(b, rst)
if err != nil {
return nil, err
}
return rst, nil
}
//DevGetByUUID returns the device with the given uuid.
func DevGetByUUID(ctx *Context, uuid string) (*Device, error) {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint("device")
params := make(url.Values)
params.Set("filter", "uuid")
params.Set("eq", uuid)
b, err := doJSON(ctx, "GET", uri, h, params, nil)
if err != nil {
return nil, err
}
var devRes = struct {
D []*Device `json:"d"`
}{}
//fmt.Println(string(b))
err = json.Unmarshal(b, &devRes)
if err != nil {
return nil, err
}
if len(devRes.D) > 0 {
return devRes.D[0], nil
}
return nil, ErrDeviceNotFound
}
//DevGetByName returns the device with the given name
func DevGetByName(ctx *Context, name string) (*Device, error) {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint("device")
params := make(url.Values)
params.Set("filter", "name")
params.Set("eq", name)
b, err := doJSON(ctx, "GET", uri, h, params, nil)
if err != nil {
return nil, err
}
//fmt.Println(string(b))
var devRes = struct {
D []*Device `json:"d"`
}{}
err = json.Unmarshal(b, &devRes)
if err != nil {
return nil, err
}
if len(devRes.D) > 0 {
//fmt.Println(*devRes.D[0])
return devRes.D[0], nil
}
return nil, ErrDeviceNotFound
}
//DevIsOnline return true if the device with uuid is online and false otherwise.
//Any errors encountered is returned too.
func DevIsOnline(ctx *Context, uuid string) (bool, error) {
dev, err := DevGetByUUID(ctx, uuid)
if err != nil {
return false, err
}
return dev.IsOnline, nil
}
//DevGetAllByApp returns all devices that are registered to the application with
//the given appID
func DevGetAllByApp(ctx *Context, appID int64) ([]*Device, error) {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("application(%d)", appID))
params := make(url.Values)
params.Set("expand", "device")
b, err := doJSON(ctx, "GET", uri, h, params, nil)
if err != nil {
return nil, err
}
//var devRes = struct {
//D []*Device `json:"d"`
//}{}
var devRes = struct {
D []struct {
Device []*Device `json:"device"`
} `json:"d"`
}{}
//fmt.Println(string(b))
err = json.Unmarshal(b, &devRes)
if err != nil {
return nil, err
}
if len(devRes.D) > 0 {
return devRes.D[0].Device, nil
}
return nil, ErrDeviceNotFound
}
//DevRename renames the device with uuid to nwName
func DevRename(ctx *Context, uuid, newName string) error {
_, err := DevGetByUUID(ctx, uuid)
if err != nil {
return err
}
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint("device")
params := make(url.Values)
params.Set("Filter", "uuid")
params.Set("eq", uuid)
data := make(map[string]interface{})
data["name"] = newName
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "PATCH", uri, h, params, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
//DevGetApp returns the application in which the device belongs to. This
//function is convenient only when you are interested on other information about
//the application.
//
// If your intention is only to retrieve the applicayion id, then just use this
// instead.
//
// dev,err:=DevGetByUUID(ctx,<uuid goes here>)
// if err!=nil{
// //handle error error
// }
// // you can now access the application id like this
// fmt.Println(dev.Application.ID
func DevGetApp(ctx *Context, uuid string) (*Application, error) {
dev, err := DevGetByUUID(ctx, uuid)
if err != nil {
return nil, err
}
return AppGetByID(ctx, dev.Application.ID)
}
//DevEnableURL enables the device url. This allows the device to be accessed
//anywhere using the url which uses resin vpn.
//
// NOTE: It is awskward to retrurn OK rather than the url which was enabled.
func DevEnableURL(ctx *Context, uuid string) error {
dev, err := DevGetByUUID(ctx, uuid)
if err != nil {
return err
}
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("device(%d)", dev.ID))
params := make(url.Values)
params.Set("filter", "uuid")
params.Set("eq", uuid)
data := make(map[string]interface{})
data["is_web_accessible"] = true
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "PATCH", uri, h, params, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
//DevDisableURL diables the deice url, making it not accessible via the web.
func DevDisableURL(ctx *Context, uuid string) error {
dev, err := DevGetByUUID(ctx, uuid)
if err != nil {
return err
}
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("device(%d)", dev.ID))
data := make(map[string]interface{})
data["is_web_accessible"] = false
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "PATCH", uri, h, nil, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
//DevDelete deletes the device with the given id
func DevDelete(ctx *Context, id int64) error {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("device(%d)", id))
b, err := doJSON(ctx, "DELETE", uri, h, nil, nil)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
//DevNote add note to the device
func DevNote(ctx *Context, id int64, note string) error {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("device(%d)", id))
data := make(map[string]interface{})
data["note"] = note
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "PATCH", uri, h, nil, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
//DevMove moves the device to a different application
func DevMove(ctx *Context, id int64, appID int64) error {
h := authHeader(ctx.Config.AuthToken)
uri := ctx.Config.APIEndpoint(fmt.Sprintf("device(%d)", id))
data := make(map[string]interface{})
data["application"] = appID
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "PATCH", uri, h, nil, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}
// DevBlink identifies the device by blinking.
func DevBlink(ctx *Context, uuid string) error {
h := authHeader(ctx.Config.AuthToken)
//uri := ctx.Config.APIEndpoint("blink")
uri := apiEndpoint + "/" + "blink"
data := make(map[string]interface{})
data["uuid"] = uuid
body, err := marhsalReader(data)
if err != nil {
return err
}
b, err := doJSON(ctx, "POST", uri, h, nil, body)
if err != nil {
return err
}
if string(b) != "OK" {
return errors.New("bad response")
}
return nil
}