-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice.go
430 lines (374 loc) · 12.2 KB
/
service.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// December 14, 2016
// Craig Hesling <craig@hesling.com>
package rest
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
// ServiceNode is a container for Service Node object received
// from the REST interface
type ServiceNode struct {
NodeDescriptor // Node descriptor of Service Node
Pubsub ServicePubSub `json:"pubsub"` // Override NodeDescriptor.Pubsub
Description string `json:"description"`
Properties map[string]string `json:"properties"`
ConfigParameters []ServiceConfigParameter `json:"config_required"`
}
// ServiceCreateRequest encapsulates the data for a request to create a service
type ServiceCreateRequest struct {
Name string `json:"name"`
Description string `json:"description"`
Properties map[string]string `json:"properties,omitempty"`
ConfigParameters []ServiceConfigParameter `json:"config_required,omitempty"`
}
// ServiceUpdateRequest encapsulates the data for a request to update a service
type ServiceUpdateRequest struct {
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Properties map[string]string `json:"properties,omitempty"`
ConfigParameters []ServiceConfigParameter `json:"config_required,omitempty"`
}
/*
Services Device Config Responses Look Like The Following:
[
{
"id": "592c8a627d6ec25f901d9687",
"type": "device",
"pubsub": {
"protocol": "MQTT",
"endpoint": openchirp/device/592880c57d6ec25f901d9668"
},
"config": [
{
"key": "DevEUI",
"value": "test1"
},
{
"key": "AppEUI",
"value": "test2"
},
{
"key": "AppKey",
"value": "test3"
}
]
}
]
*/
// ServicePubSub override the normal PubSub struct to add the two additional
// topic related to a service
type ServicePubSub struct {
PubSub
TopicEvents string `json:"events_endpoint"`
TopicStatus string `json:"status_endpoint"`
}
// ServiceConfigParameter represents one required config parameter from the
// service's information or create service request.
type ServiceConfigParameter struct {
Name string `json:"key_name"` // The key_ is redundant
Description string `json:"key_description"`
Example string `json:"key_example"`
Required bool `json:"key_required"`
}
// KeyValuePair represents the REST interface's internal structure for
// maps. This is typically just used to parse JSON from the REST interface.
type KeyValuePair struct {
Key string `json:"key"`
Value string `json:"value"`
}
// ServiceDeviceListItem represents the device and service configuration pair
// found in a Service Node's device list
type ServiceDeviceListItem struct {
Id string `json:"id"`
PubSub PubSub `json:"pubsub"`
Config []KeyValuePair `json:"config"`
}
func (i ServiceDeviceListItem) GetID() string {
return i.Id
}
func (i ServiceDeviceListItem) GetConfigMap() map[string]string {
m := make(map[string]string)
for _, v := range i.Config {
m[v.Key] = v.Value
}
return m
}
func (n ServiceDeviceListItem) String() string {
buf, _ := json.MarshalIndent(&n, "", jsonPrettyIndent)
return string(buf)
}
func (n ServiceNode) String() string {
buf, _ := json.MarshalIndent(&n, "", jsonPrettyIndent)
return string(buf)
}
func (n ServiceCreateRequest) String() string {
buf, _ := json.MarshalIndent(&n, "", jsonPrettyIndent)
return string(buf)
}
func (n ServiceConfigParameter) String() string {
buf, _ := json.MarshalIndent(&n, "", jsonPrettyIndent)
return string(buf)
}
func (n KeyValuePair) String() string {
buf, _ := json.MarshalIndent(&n, "", jsonPrettyIndent)
return string(buf)
}
// RequestServiceInfo makes an HTTP GET to the framework server requesting
// the Service Node information for service with ID serviceID.
func (host Host) RequestServiceInfo(serviceID string) (ServiceNode, error) {
var serviceNode ServiceNode
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID
req, err := http.NewRequest("GET", uri, nil)
if err != nil {
return serviceNode, err
}
req.SetBasicAuth(host.user, host.pass)
// resp, err := http.Get(host.uri + servicesSubPath + "/" + serviceID)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceNode, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceNode, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceNode)
return serviceNode, err
}
// RequestServiceDeviceList
func (host Host) RequestServiceDeviceList(serviceID string) ([]ServiceDeviceListItem, error) {
var serviceDeviceListItems = make([]ServiceDeviceListItem, 0)
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID + serviceDevicesSubPath
req, err := http.NewRequest("GET", uri, nil)
if err != nil {
return serviceDeviceListItems, err
}
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceDeviceListItems, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceDeviceListItems, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceDeviceListItems)
return serviceDeviceListItems, err
}
// ServiceList makes an HTTP GET request to the framework server
// in order to get a list of all services.
func (host Host) ServiceList() ([]ServiceNode, error) {
var serviceNodes []ServiceNode
uri := host.uri + rootAPISubPath + servicesSubPath
req, err := http.NewRequest("GET", uri, nil)
if err != nil {
return serviceNodes, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceNodes, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceNodes, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceNodes)
return serviceNodes, err
}
// ServiceGet makes an HTTP GET request to the framework server
// in order to get the specified service information
func (host Host) ServiceGet(serviceID string) (ServiceNode, error) {
var serviceNode ServiceNode
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID
req, err := http.NewRequest("GET", uri, nil)
if err != nil {
return serviceNode, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceNode, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceNode, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceNode)
return serviceNode, err
}
// ServiceCreate makes an HTTP POST request to the framework server
// in order to create a new service with
func (host Host) ServiceCreate(
name, description string,
properties map[string]string, // can be nil
configParams []ServiceConfigParameter, // can be nil
) (ServiceNode, error) {
var serviceNode ServiceNode
uri := host.uri + rootAPISubPath + servicesSubPath
serviceReq := ServiceCreateRequest{
Name: name,
Description: description,
}
if properties != nil {
serviceReq.Properties = properties
}
if configParams != nil {
serviceReq.ConfigParameters = configParams
}
body, err := json.Marshal(&serviceReq)
if err != nil {
return serviceNode, err
}
req, err := http.NewRequest("POST", uri, bytes.NewReader(body))
if err != nil {
return serviceNode, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceNode, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceNode, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceNode)
return serviceNode, err
}
// ServiceDelete makes an HTTP DELETE request to the framework server
// on the specified serviceID
func (host Host) ServiceDelete(serviceID string) error {
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID
req, err := http.NewRequest("DELETE", uri, nil)
if err != nil {
return err
}
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return fmt.Errorf("%v", resp.Status)
}
return nil
}
// ServiceUpdateConfig makes an HTTP PUT request to the framework server
// in order to update the service's config.
// This function returns the new and updated ServiceNode.
func (host Host) ServiceUpdateConfig(
serviceID string,
configParams []ServiceConfigParameter, // can be nil
) (ServiceNode, error) {
var serviceNode ServiceNode
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID
serviceReq := ServiceUpdateRequest{
// This blank slice will ensure that we can clear the config if configParams
// is nil
ConfigParameters: []ServiceConfigParameter{},
}
if configParams != nil {
serviceReq.ConfigParameters = configParams
}
body, err := json.Marshal(&serviceReq)
if err != nil {
return serviceNode, err
}
req, err := http.NewRequest("PUT", uri, bytes.NewReader(body))
if err != nil {
return serviceNode, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return serviceNode, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return serviceNode, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&serviceNode)
return serviceNode, err
}
// ServiceTokenGenerate makes an HTTP POST request to the framework server
// in order to generate a security token for the service
func (host Host) ServiceTokenGenerate(serviceID string) (string, error) {
var token string
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID + serviceTokenSubPath
req, err := http.NewRequest("POST", uri, nil)
if err != nil {
return token, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return token, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return token, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&token)
return token, err
}
// ServiceTokenRegenerate makes an HTTP PUT request to the framework server
// in order to regenerate a security token for the service
func (host Host) ServiceTokenRegenerate(serviceID string) (string, error) {
var token string
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID + serviceTokenSubPath
req, err := http.NewRequest("PUT", uri, nil)
if err != nil {
return token, err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return token, err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return token, fmt.Errorf("%v", resp.Status)
}
err = json.NewDecoder(resp.Body).Decode(&token)
return token, err
}
// ServiceTokenDelete makes an HTTP DELETE request to the framework server
// in order to delete the security token for the service
func (host Host) ServiceTokenDelete(serviceID string) error {
uri := host.uri + rootAPISubPath + servicesSubPath + "/" + serviceID + serviceTokenSubPath
req, err := http.NewRequest("DELETE", uri, nil)
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/json")
req.SetBasicAuth(host.user, host.pass)
resp, err := host.client.Do(req)
if err != nil {
// should report auth problems here in future
return err
}
defer resp.Body.Close()
if resp.StatusCode != httpStatusCodeOK {
return fmt.Errorf("%v", resp.Status)
}
return nil
}