-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.go
708 lines (614 loc) · 19.7 KB
/
app.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
package cloud
import (
"context"
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"reflect"
"strings"
"sync"
"time"
"github.com/cisco-pxgrid/cloud-sdk-go/internal/pubsub"
"github.com/cisco-pxgrid/cloud-sdk-go/log"
"github.com/go-resty/resty/v2"
)
const (
// newAppInstancePath creates and links the tenant at the same time
newAppInstancePath = "/idm/api/v1/appregistry/otp/new"
createAppInstancePath = "/idm/api/v1/appregistry/applications/%s/instances"
deleteAppInstancePath = "/idm/api/v1/appregistry/applications/%s"
redeemPath = "/idm/api/v1/appregistry/otp/redeem"
unlinkPath = "/idm/api/v1/appregistry/applications/%s/tenants/%s"
getDevicesPath = "/api/uno/v1/registry/devices"
directModePath = "/api/dxhub/v2/apiproxy/request/%s/direct%s"
)
var tlsConfig = tls.Config{
ClientAuth: tls.NoClientCert,
MinVersion: tls.VersionTLS12,
PreferServerCipherSuites: true,
CipherSuites: []uint16{
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
},
}
// Credentials are fields that is used for request authorization
// Credentials required to be stored securely
type Credentials struct {
// ApiKey is obtained during app onboarding with dragonfly
// ApiKey will be zeroed after use, therefore AppConfig.GetCredentials function should provide new structure every invocation
ApiKey []byte
}
// Config defines the configuration for an application
type Config struct {
// ID is the unique application identifier obtained during app onboarding
ID string
// Hostname of the regional cloud environment
RegionalFQDN string
// Hostnames of the regional cloud environments
RegionalFQDNs []string
// Hostname of the global cloud environment
GlobalFQDN string
// ReadStreamID is the stream with "R" access obtained during app onboarding
ReadStreamID string
// WriteStreamID is the stream with "W" access obtained during app onboarding
WriteStreamID string
// GroupID defines the group in which this instance of the App belongs to. Instances that belong
// in the same group gets messages distributed between them. Instances that belong in separate
// groups get a copy of each message. If left empty, unique ID will be used.
//
// e.g. There are 3 messages on the app's stream - msg1, msg2, msg3
//
// If there are 2 app instances of the same app with same group ID, the 3 messages are
// distributed between both the instances.
// If there are 2 app instances of the same app with different group IDs, then each instance
// receives all 3 messages.
GroupID string
// Transport (if set) will be used for any HTTP connection establishment by the SDK
Transport *http.Transport
// GetCredentials is used to retrieve the client credentials provided to the app during onboarding
// Either use this or ApiKey
GetCredentials func() (*Credentials, error)
// ApiKey is used when GetCredentials is not specified
ApiKey string
// DeviceActivationHandler notifies when a device is activated
DeviceActivationHandler func(device *Device)
// DeviceDeactivationHandler notifies when a device is deactivated
DeviceDeactivationHandler func(device *Device)
// TenantUnlinkedHandler notifies when a tenant is unlinked from the cloud instead of app calling UnlinkTenant
// Not providing a linked handler because it can only be triggered by calling LinkTenant
// The stored tenant ID, name and token should be discarded
TenantUnlinkedHandler func(tenant *Tenant)
// DeviceMessageHandler is invoked when a new data message is received
DeviceMessageHandler func(messageID string, device *Device, stream string, payload []byte)
}
// App represents an instance of a pxGrid Cloud Application
// App struct is the entry point for the pxGrid Cloud Go SDK
type App struct {
config Config
httpClient *resty.Client // global HTTP client
conn []*pubsub.Connection // pubsub WebSocket connection
tenantMap sync.Map
deviceMap sync.Map
// Error channel should be used to monitor any errors
Error chan error
wg sync.WaitGroup
ctx context.Context
ctxCancel context.CancelFunc
startPubsubConnectOnce sync.Once
}
var (
defaultHTTPScheme = "https"
)
func (app *App) String() string {
return fmt.Sprintf("App[ID: %s, RegionalFQDNs: %v]", app.config.ID, app.config.RegionalFQDNs)
}
// New creates and returns a new instance of App
// New accepts Config argument which is used to construct http clients, transport layer and setup PubSub configuration
func New(config Config) (*App, error) {
if err := validateConfig(&config); err != nil {
log.Logger.Errorf("Invalid configuration: %v", err)
return nil, fmt.Errorf("invalid configuration: %w", err)
}
hostURL := url.URL{
Scheme: defaultHTTPScheme,
Path: url.PathEscape(config.GlobalFQDN),
}
httpClient := resty.New().
SetBaseURL(hostURL.String()).
OnBeforeRequest(func(_ *resty.Client, request *resty.Request) error {
var key string
if config.GetCredentials != nil {
credentials, err := config.GetCredentials()
if err != nil {
return err
}
key = string(credentials.ApiKey)
zeroByteArray(credentials.ApiKey)
} else {
key = config.ApiKey
}
request.SetHeader("X-Api-Key", key)
return nil
})
if config.Transport == nil {
httpClient.SetTLSClientConfig(&tlsConfig)
} else {
httpClient.SetTransport(config.Transport)
}
app := &App{
config: config,
httpClient: httpClient,
tenantMap: sync.Map{},
deviceMap: sync.Map{},
Error: make(chan error, 1), // make sure the channel is buffered so that SDK doesn't block
wg: sync.WaitGroup{},
}
app.ctx, app.ctxCancel = context.WithCancel(context.Background())
return app, nil
}
func validateConfig(config *Config) error {
// sanitize all the input
config.ID = strings.TrimSpace(config.ID)
if len(config.RegionalFQDNs) == 0 {
config.RegionalFQDNs = make([]string, 1)
config.RegionalFQDNs[0] = strings.TrimSpace(config.RegionalFQDN)
} else {
for i, regionalFQDN := range config.RegionalFQDNs {
config.RegionalFQDNs[i] = strings.TrimSpace(regionalFQDN)
}
}
log.Logger.Infof("RegionalFQDNs: %v", config.RegionalFQDNs)
config.GlobalFQDN = strings.TrimSpace(config.GlobalFQDN)
config.ReadStreamID = strings.TrimSpace(config.ReadStreamID)
config.WriteStreamID = strings.TrimSpace(config.WriteStreamID)
config.GroupID = strings.TrimSpace(config.GroupID)
if config.ID == "" {
return errors.New("ID must not be empty")
}
for _, regionalFQDN := range config.RegionalFQDNs {
if regionalFQDN == "" {
return errors.New("RegionalFQDN must not be empty")
}
}
if config.GlobalFQDN == "" {
return errors.New("GlobalFQDN must not be empty")
}
if config.ReadStreamID == "" || config.WriteStreamID == "" {
return errors.New("ReadStreamID and WriteStreamID must not be empty")
}
if config.GroupID == "" {
config.GroupID = "commonGroup"
}
return nil
}
// Close shuts down the App instance and releases all the resources
func (app *App) Close() error {
if app.conn != nil {
for _, connection := range app.conn {
connection.Disconnect()
}
app.conn = nil
}
app.ctxCancel()
app.wg.Wait()
app.tenantMap.Range(func(key interface{}, _ interface{}) bool {
app.tenantMap.Delete(key)
return true
})
app.deviceMap.Range(func(key interface{}, _ interface{}) bool {
app.deviceMap.Delete(key)
return true
})
return nil
}
// Report error to app.Error as non-blocking channel
func (app *App) reportError(err error) {
select {
case app.Error <- err:
default:
log.Logger.Warnf("Error message was not sent as the channel was not available")
}
}
// Close shuts down the App instance and releases all the resources
func (app *App) close() error {
if app.conn != nil {
for _, connection := range app.conn {
connection.Disconnect()
}
app.conn = nil
}
app.tenantMap.Range(func(key interface{}, _ interface{}) bool {
app.tenantMap.Delete(key)
return true
})
app.deviceMap.Range(func(key interface{}, _ interface{}) bool {
app.deviceMap.Delete(key)
return true
})
return nil
}
// pubsubConnect opens a websocket connection to pxGrid Cloud
func (app *App) pubsubConnect() error {
var err error
for _, fqdn := range app.config.RegionalFQDNs {
connection, connectionErr := pubsub.NewConnection(pubsub.Config{
GroupID: app.config.GroupID,
Domain: url.PathEscape(fqdn),
APIKeyProvider: func() ([]byte, error) {
if app.config.GetCredentials != nil {
credentials, e := app.config.GetCredentials()
if e != nil {
return nil, e
}
return credentials.ApiKey, e
} else {
return []byte(app.config.ApiKey), nil
}
},
Transport: app.config.Transport,
})
if connectionErr != nil {
return fmt.Errorf("failed to create pubsub connection: %v", connectionErr)
}
app.conn = append(app.conn, connection)
}
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer cancel()
for _, connection := range app.conn {
err = connection.Connect(ctx)
if err != nil {
return fmt.Errorf("failed to connect pubsub connection: %v", err)
}
err = connection.Subscribe(app.config.ReadStreamID, app.readStreamHandler())
if err != nil {
return fmt.Errorf("failed to subscribe: %v", err)
}
}
return nil
}
const (
msgType = "messageType"
msgTypeControl = "control"
msgTypeData = "data"
tenantKey = "tenant"
deviceKey = "device"
msgIDKey = "messageID"
msgTypeActivate = "device:activate"
msgTypeDeactivate = "device:deactivate"
msgTypeAppConnect = "app:connect"
msgTypeAppDisconnect = "app:disconnect"
)
// readStreamHandler returns the callback that handles messages received on the app's read stream
func (app *App) readStreamHandler() pubsub.SubscriptionCallback {
return func(err error, id string, headers map[string]string, payload []byte) {
if err != nil {
log.Logger.Errorf("Received error for %s stream: %v", app.config.ReadStreamID, err)
return
}
switch headers[msgType] {
case msgTypeControl:
if err := app.controlMsgHandler(id, payload); err != nil {
log.Logger.Errorf("Failed to handle control message %s: %v", payload, err)
return
}
case msgTypeData:
if err := app.dataMsgHandler(id, headers, payload); err != nil {
log.Logger.Errorf("Failed to handle data message %s: %v", payload, err)
}
default:
log.Logger.Errorf("Invalid message %s: %s, headers: %#v", id, payload, headers)
return
}
}
}
// controlPayload represents the payload received in a control type message from DxHub
type controlPayload struct {
Type string `json:"type"`
Info struct {
Tenant string `json:"tenant"`
Device string `json:"device"`
Streams []string `json:"streams"`
} `json:"info"`
}
func (app *App) controlMsgHandler(id string, payload []byte) error {
var ctrlPayload controlPayload
if err := json.Unmarshal(payload, &ctrlPayload); err != nil {
return fmt.Errorf("failed to unmarshal control payload: %w", err)
}
log.Logger.Debugf("Received control message: %v", ctrlPayload)
tenantId := ctrlPayload.Info.Tenant
deviceId := ctrlPayload.Info.Device
v, ok := app.tenantMap.Load(tenantId)
if !ok || v == nil {
log.Logger.Debugf("Unassociated tenant %s", tenantId)
return nil
}
tenant := v.(*Tenant)
v, ok = app.deviceMap.Load(tenantId)
if !ok || v == nil {
return fmt.Errorf("missing device map for tenant %s", tenantId)
}
deviceMap := v.(*sync.Map)
if ctrlPayload.Type == msgTypeActivate {
device, err := tenant.getDeviceByID(deviceId)
if err != nil {
return fmt.Errorf("failed to get device %s info: %w", deviceId, err)
}
deviceMap.Store(device.ID(), device)
if app.config.DeviceActivationHandler != nil {
app.config.DeviceActivationHandler(device)
}
} else if ctrlPayload.Type == msgTypeDeactivate {
var device *Device
var err error
v, ok = deviceMap.Load(deviceId)
if ok {
device = v.(*Device)
deviceMap.Delete(deviceId)
} else {
device, err = tenant.getDeviceByID(deviceId)
if err != nil {
return fmt.Errorf("failed to get device %s info: %w", deviceId, err)
}
}
if app.config.DeviceDeactivationHandler != nil {
app.config.DeviceDeactivationHandler(device)
}
} else if ctrlPayload.Type == msgTypeAppConnect {
// Ignore app connect message because app calls LinkTenant explicitly
} else if ctrlPayload.Type == msgTypeAppDisconnect {
app.tenantMap.Delete(tenantId)
app.deviceMap.Delete(tenantId)
if app.config.TenantUnlinkedHandler != nil {
app.config.TenantUnlinkedHandler(tenant)
}
} else {
return fmt.Errorf("unknown control message type: %s", ctrlPayload.Type)
}
return nil
}
func (app *App) dataMsgHandler(id string, headers map[string]string, payload []byte) error {
tenantId := headers[tenantKey]
deviceId := headers[deviceKey]
log.Logger.Debugf("Received data message: %s, device: %s, tenant: %s -- %s",
headers[msgIDKey], deviceId, tenantId, payload)
if tenantId == "" {
return fmt.Errorf("data missing tenant id")
}
if deviceId == "" {
return fmt.Errorf("data missing device id")
}
v, ok := app.tenantMap.Load(tenantId)
if !ok || v == nil {
// TODO return nil or error?
log.Logger.Debugf("Unassociated tenant %s", tenantId)
return nil
}
tenant := v.(*Tenant)
v, ok = app.deviceMap.Load(tenantId)
if !ok || v == nil {
return fmt.Errorf("missing device map for tenant %s", tenantId)
}
deviceMapInternal := v.(*sync.Map)
var device *Device
var err error
v, ok = deviceMapInternal.Load(deviceId)
if !ok || v == nil {
// Consuming partition may change so we may get device we haven't seen before
device, err = tenant.getDeviceByID(deviceId)
if err != nil {
return fmt.Errorf("failed to get device %s info: %w", deviceId, err)
}
deviceMapInternal.Store(device.ID(), device)
} else {
device = v.(*Device)
}
if app.config.DeviceMessageHandler != nil {
app.config.DeviceMessageHandler(headers[msgIDKey], device, headers["stream"], payload)
}
return nil
}
type redeemOTPRequest struct {
OTP string `json:"otp"`
}
type redeemOTPResponse struct {
Token string `json:"api_token"`
TenantID string `json:"tenant_id"`
TenantName string `json:"tenant_name"`
}
type errorResponse struct {
Error string `json:"error"`
Message string `json:"message"`
}
func (e errorResponse) GetError() string {
if len(e.Error) > 0 {
return e.Error
}
return e.Message
}
// LinkTenant redeems the OTP and links a tenant to the application
// Returned tenant must be stored securely
func (app *App) LinkTenant(otp string) (*Tenant, error) {
redeemReq := redeemOTPRequest{
OTP: otp,
}
var redeemResp redeemOTPResponse
var errorResp errorResponse
response, err := app.httpClient.R().
SetBody(redeemReq).
SetResult(&redeemResp).
SetError(&errorResp).
Post(redeemPath)
if err != nil {
return nil, err
}
if response.IsError() {
return nil, errors.New(errorResp.GetError())
}
tenant := &Tenant{
id: redeemResp.TenantID,
name: redeemResp.TenantName,
apiToken: redeemResp.Token,
}
err = app.setTenant(tenant)
if err != nil {
log.Logger.Infof("Failed to fetch devices for %s, unlinking tenant", tenant)
if err = app.UnlinkTenant(tenant); err != nil {
log.Logger.Errorf("Failed to unlink %s", tenant)
}
return nil, err
}
return tenant, nil
}
// UnlinkTenant unlinks a tenant from the application
// The stored tenant ID, name and token should be discarded
func (app *App) UnlinkTenant(tenant *Tenant) error {
// Remove from map first to prevent callback to TenantUnlinkedHandler
app.tenantMap.Delete(tenant.ID())
app.deviceMap.Delete(tenant.ID())
unlinkPath := fmt.Sprintf(
unlinkPath,
url.PathEscape(app.config.ID),
url.PathEscape(tenant.ID()))
var errorResp errorResponse
response, err := app.httpClient.R().
SetError(&errorResp).
Delete(unlinkPath)
if err != nil {
return err
}
if response.IsError() {
return errors.New(errorResp.GetError())
}
return nil
}
// SetTenant adds linked tenant to the application's inner infrastructure
// SetTenant should be used by application after restart to reload tenants back
func (app *App) SetTenant(id, name, apiToken string) (*Tenant, error) {
tenant := &Tenant{
id: id,
name: name,
apiToken: apiToken,
}
err := app.setTenant(tenant)
if err != nil {
return tenant, err
}
return tenant, nil
}
func (app *App) setTenant(tenant *Tenant) error {
app.tenantMap.Store(tenant.id, tenant)
regionalHttpClients := make(map[string]*resty.Client)
for _, regionalFQDN := range app.config.RegionalFQDNs {
httpClient := resty.NewWithClient(app.httpClient.GetClient()).
SetBaseURL(app.httpClient.HostURL)
tenant.setHttpClient(httpClient)
regionalHostURL := url.URL{
Scheme: defaultHTTPScheme,
Path: url.PathEscape(regionalFQDN),
}
regionalHttpClient := resty.NewWithClient(app.httpClient.GetClient()).
SetBaseURL(regionalHostURL.String())
regionalHttpClients[regionalFQDN] = regionalHttpClient
}
tenant.setRegionalHttpClients(regionalHttpClients)
tenant.app = app
devices, err := tenant.getDevices()
if err != nil {
return fmt.Errorf("failed to fetch devices for %s: %v", tenant, err)
}
deviceMapInternal := sync.Map{}
for i := range devices {
device := &devices[i]
device.tenant = tenant
deviceMapInternal.Store(device.id, device)
}
app.deviceMap.Store(tenant.id, &deviceMapInternal)
// Once a tenant is added, we can start pubsub
app.startPubsubConnect()
return nil
}
func (app *App) loadTenantsDevices() {
app.tenantMap.Range(func(key interface{}, _ interface{}) bool {
tenant, ok := app.tenantMap.Load(key)
if !ok || tenant == nil {
return false
}
devices, err := tenant.(*Tenant).getDevices()
if err != nil {
return false
}
deviceMapInternal := sync.Map{}
for i := range devices {
device := &devices[i]
device.tenant = tenant.(*Tenant)
deviceMapInternal.Store(device.id, device)
if app.config.DeviceActivationHandler != nil {
app.config.DeviceActivationHandler(device)
}
}
app.deviceMap.Store(tenant.(*Tenant).id, &deviceMapInternal)
return true
})
}
func (app *App) startPubsubConnect() {
app.startPubsubConnectOnce.Do(func() {
app.wg.Add(1)
go func() {
defer app.wg.Done()
backoffFactor := 0
maxbackoffFactor := 3
reconnectBackoff := 30 * time.Second
reconnectDelay := 30 * time.Second
//loop to call app.connect with a reconnect delay with gradual backoff
for {
err := app.pubsubConnect()
if err != nil {
log.Logger.Errorf("Failed to connect the app: %v", err)
app.close()
app.reportError(err)
} else {
//obtain the device list
app.loadTenantsDevices()
//reset backoff factor for successful connection
backoffFactor = 0
cases := make([]reflect.SelectCase, len(app.conn))
for i, connection := range app.conn {
cases[i] = reflect.SelectCase{Dir: reflect.SelectRecv, Chan: reflect.ValueOf(connection.Error)}
}
cases = append(cases, reflect.SelectCase{Dir: reflect.SelectRecv, Chan: reflect.ValueOf(app.ctx.Done())})
for {
chosen, value, ok := reflect.Select(cases)
if !ok {
// The chosen channel has been closed, so zero out the channel to disable the case
cases[chosen].Chan = reflect.ValueOf(nil)
return
} else {
err = fmt.Errorf("application connection closed: %s", value.String())
app.close()
app.reportError(err)
}
}
}
select {
case <-time.After(reconnectDelay + reconnectBackoff*time.Duration(backoffFactor)):
//increment backoff factor by 1 for gradual backoff
if backoffFactor < maxbackoffFactor {
backoffFactor += 1
}
case <-app.ctx.Done():
return
}
}
}()
})
}