-
Notifications
You must be signed in to change notification settings - Fork 36
/
bridge.go
1954 lines (1464 loc) · 39.1 KB
/
bridge.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
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package huego
import (
"context"
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"path"
"strconv"
"strings"
)
// Bridge exposes a hardware bridge through a struct.
type Bridge struct {
Host string `json:"internalipaddress,omitempty"`
User string
ID string `json:"id,omitempty"`
client *http.Client
}
func (b *Bridge) getAPIPath(str ...string) (string, error) {
if strings.Index(strings.ToLower(b.Host), "http://") <= -1 && strings.Index(strings.ToLower(b.Host), "https://") <= -1 {
b.Host = fmt.Sprintf("%s%s", "http://", b.Host)
}
u, err := url.Parse(b.Host)
if err != nil {
return "", err
}
u.Path = path.Join(u.Path, "/api/", b.User)
for _, p := range str {
u.Path = path.Join(u.Path, p)
}
return u.String(), nil
}
// Login calls New() and passes Host on this Bridge instance.
func (b *Bridge) Login(u string) *Bridge {
b.User = u
return New(b.Host, u)
}
/*
CONFIGURATION API
*/
// GetConfig returns the bridge configuration
func (b *Bridge) GetConfig() (*Config, error) {
return b.GetConfigContext(context.Background())
}
// GetConfigContext returns the bridge configuration
func (b *Bridge) GetConfigContext(ctx context.Context) (*Config, error) {
var config *Config
target, err := b.getAPIPath("/config/")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &config)
if err != nil {
return nil, err
}
wl := make([]Whitelist, 0, len(config.WhitelistMap))
for k, v := range config.WhitelistMap {
v.Username = k
wl = append(wl, v)
}
config.Whitelist = wl
return config, nil
}
// CreateUser creates a user by adding n to the list of whitelists in the bridge.
// The link button on the bridge must have been pressed before calling CreateUser.
func (b *Bridge) CreateUser(n string) (string, error) {
return b.CreateUserContext(context.Background(), n)
}
// CreateUserContext creates a user by adding n to the list of whitelists in the bridge.
// The link button on the bridge must have been pressed before calling CreateUser.
func (b *Bridge) CreateUserContext(ctx context.Context, n string) (string, error) {
wl, err := b.createUserWithContext(ctx, n, false)
if err != nil {
return "", err
}
return wl.Username, nil
}
// CreateUserWithClientKey creates a user by adding deviceType to the list of whitelisted users on the bridge.
// The link button on the bridge must have been pressed before calling CreateUser.
func (b *Bridge) CreateUserWithClientKey(deviceType string) (*Whitelist, error) {
return b.createUserWithContext(context.Background(), deviceType, true)
}
// CreateUserWithClientKeyContext creates a user by adding deviceType to the list of whitelisted users on the bridge
// The link button on the bridge must have been pressed before calling CreateUser.
func (b *Bridge) CreateUserWithClientKeyContext(ctx context.Context, deviceType string) (*Whitelist, error) {
return b.createUserWithContext(ctx, deviceType, true)
}
func (b *Bridge) createUserWithContext(ctx context.Context, deviceType string, generateClientKey bool) (*Whitelist, error) {
var a []*APIResponse
body := struct {
DeviceType string `json:"devicetype,omitempty"`
GenerateClientKey bool `json:"generateclientkey,omitempty"`
}{deviceType, generateClientKey}
target, err := b.getAPIPath("/")
if err != nil {
return nil, err
}
data, err := json.Marshal(&body)
if err != nil {
return nil, err
}
res, err := post(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
wl := Whitelist{
Name: deviceType,
Username: resp.Success["username"].(string),
}
if ck, ok := resp.Success["clientkey"]; ok {
wl.ClientKey = ck.(string)
} else if generateClientKey {
return nil, errors.New("no client key was returned when requested to generate")
}
return &wl, nil
}
// GetUsers returns a list of whitelists from the bridge
func (b *Bridge) GetUsers() ([]Whitelist, error) {
c, err := b.GetConfig()
if err != nil {
return nil, err
}
return c.Whitelist, nil
}
// UpdateConfig updates the bridge configuration with c
func (b *Bridge) UpdateConfig(c *Config) (*Response, error) {
return b.UpdateConfigContext(context.Background(), c)
}
// UpdateConfigContext updates the bridge configuration with c
func (b *Bridge) UpdateConfigContext(ctx context.Context, c *Config) (*Response, error) {
var a []*APIResponse
target, err := b.getAPIPath("/config/")
if err != nil {
return nil, err
}
data, err := json.Marshal(&c)
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// DeleteUser removes a whitelist item from whitelists on the bridge
func (b *Bridge) DeleteUser(n string) error {
return b.DeleteUserContext(context.Background(), n)
}
// DeleteUserContext removes a whitelist item from whitelists on the bridge
func (b *Bridge) DeleteUserContext(ctx context.Context, n string) error {
var a []*APIResponse
target, err := b.getAPIPath("/config/whitelist/", n)
if err != nil {
return err
}
res, err := del(ctx, target, b.client)
if err != nil {
return err
}
_ = unmarshal(res, &a)
_, err = handleResponse(a)
if err != nil {
return err
}
return nil
}
// GetFullState returns the entire bridge configuration.
func (b *Bridge) GetFullState() (map[string]interface{}, error) {
return b.GetFullStateContext(context.Background())
}
// GetFullStateContext returns the entire bridge configuration.
func (b *Bridge) GetFullStateContext(ctx context.Context) (map[string]interface{}, error) {
var n map[string]interface{}
target, err := b.getAPIPath("/")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &n)
if err != nil {
return nil, err
}
return n, nil
}
/*
GROUP API
*/
// GetGroups returns all groups known to the bridge
func (b *Bridge) GetGroups() ([]Group, error) {
return b.GetGroupsContext(context.Background())
}
// GetGroupsContext returns all groups known to the bridge
func (b *Bridge) GetGroupsContext(ctx context.Context) ([]Group, error) {
var m map[string]Group
target, err := b.getAPIPath("/groups/")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &m)
if err != nil {
return nil, err
}
groups := make([]Group, 0, len(m))
for i, g := range m {
g.ID, err = strconv.Atoi(i)
if err != nil {
return nil, err
}
g.bridge = b
groups = append(groups, g)
}
return groups, err
}
// GetGroup returns one group known to the bridge by its id
func (b *Bridge) GetGroup(i int) (*Group, error) {
return b.GetGroupContext(context.Background(), i)
}
// GetGroupContext returns one group known to the bridge by its id
func (b *Bridge) GetGroupContext(ctx context.Context, i int) (*Group, error) {
g := &Group{
ID: i,
}
target, err := b.getAPIPath("/groups/", strconv.Itoa(i))
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &g)
if err != nil {
return nil, err
}
g.bridge = b
return g, nil
}
// SetGroupState allows for setting the state of one group, controlling the state of all lights in that group.
func (b *Bridge) SetGroupState(i int, l State) (*Response, error) {
return b.SetGroupStateContext(context.Background(), i, l)
}
// SetGroupStateContext allows for setting the state of one group, controlling the state of all lights in that group.
func (b *Bridge) SetGroupStateContext(ctx context.Context, i int, l State) (*Response, error) {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/groups/", id, "/action/")
if err != nil {
return nil, err
}
data, err := json.Marshal(&l)
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// UpdateGroup updates one group known to the bridge
func (b *Bridge) UpdateGroup(i int, l Group) (*Response, error) {
return b.UpdateGroupContext(context.Background(), i, l)
}
// UpdateGroupContext updates one group known to the bridge
func (b *Bridge) UpdateGroupContext(ctx context.Context, i int, l Group) (*Response, error) {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/groups/", id)
if err != nil {
return nil, err
}
data, err := json.Marshal(&l)
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// CreateGroup creates one new group with attributes defined by g
func (b *Bridge) CreateGroup(g Group) (*Response, error) {
return b.CreateGroupContext(context.Background(), g)
}
// CreateGroupContext creates one new group with attributes defined by g
func (b *Bridge) CreateGroupContext(ctx context.Context, g Group) (*Response, error) {
var a []*APIResponse
target, err := b.getAPIPath("/groups/")
if err != nil {
return nil, err
}
data, err := json.Marshal(&g)
if err != nil {
return nil, err
}
res, err := post(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// DeleteGroup deletes one group with the id of i
func (b *Bridge) DeleteGroup(i int) error {
return b.DeleteGroupContext(context.Background(), i)
}
// DeleteGroupContext deletes one group with the id of i
func (b *Bridge) DeleteGroupContext(ctx context.Context, i int) error {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/groups/", id)
if err != nil {
return err
}
res, err := del(ctx, target, b.client)
if err != nil {
return err
}
_ = unmarshal(res, &a)
_, err = handleResponse(a)
if err != nil {
return err
}
return nil
}
/*
LIGHT API
*/
// GetLights returns all lights known to the bridge
func (b *Bridge) GetLights() ([]Light, error) {
return b.GetLightsContext(context.Background())
}
// GetLightsContext returns all lights known to the bridge
func (b *Bridge) GetLightsContext(ctx context.Context) ([]Light, error) {
m := map[string]Light{}
target, err := b.getAPIPath("/lights/")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &m)
if err != nil {
return nil, err
}
lights := make([]Light, 0, len(m))
for i, l := range m {
l.ID, err = strconv.Atoi(i)
if err != nil {
return nil, err
}
l.bridge = b
lights = append(lights, l)
}
return lights, nil
}
// GetLight returns one light with the id of i
func (b *Bridge) GetLight(i int) (*Light, error) {
return b.GetLightContext(context.Background(), i)
}
// GetLightContext returns one light with the id of i
func (b *Bridge) GetLightContext(ctx context.Context, i int) (*Light, error) {
light := &Light{
ID: i,
}
target, err := b.getAPIPath("/lights/", strconv.Itoa(i))
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return light, err
}
err = unmarshal(res, &light)
if err != nil {
return light, err
}
light.bridge = b
return light, nil
}
// IdentifyLight allows identifying a light
func (b *Bridge) IdentifyLight(i int) (*Response, error) {
return b.IdentifyLightContext(context.Background(), i)
}
// IdentifyLightContext allows identifying a light
func (b *Bridge) IdentifyLightContext(ctx context.Context, i int) (*Response, error) {
var a []*APIResponse
target, err := b.getAPIPath("/lights/", strconv.Itoa(i), "/state")
if err != nil {
return nil, err
}
res, err := put(ctx, target, []byte(`{"alert":"select"}`), b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// SetLightState allows for controlling one light's state
func (b *Bridge) SetLightState(i int, l State) (*Response, error) {
return b.SetLightStateContext(context.Background(), i, l)
}
// SetLightStateContext allows for controlling one light's state
func (b *Bridge) SetLightStateContext(ctx context.Context, i int, l State) (*Response, error) {
var a []*APIResponse
l.Reachable = false
l.ColorMode = ""
data, err := json.Marshal(&l)
if err != nil {
return nil, err
}
target, err := b.getAPIPath("/lights/", strconv.Itoa(i), "/state")
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// FindLights starts a search for new lights on the bridge.
// Use GetNewLights() verify if new lights have been detected.
func (b *Bridge) FindLights() (*Response, error) {
return b.FindLightsContext(context.Background())
}
// FindLightsContext starts a search for new lights on the bridge.
// Use GetNewLights() verify if new lights have been detected.
func (b *Bridge) FindLightsContext(ctx context.Context) (*Response, error) {
var a []*APIResponse
target, err := b.getAPIPath("/lights/")
if err != nil {
return nil, err
}
res, err := post(ctx, target, nil, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// GetNewLights returns a list of lights that were discovered last time FindLights() was executed.
func (b *Bridge) GetNewLights() (*NewLight, error) {
return b.GetNewLightsContext(context.Background())
}
// GetNewLightsContext returns a list of lights that were discovered last time FindLights() was executed.
func (b *Bridge) GetNewLightsContext(ctx context.Context) (*NewLight, error) {
var n map[string]interface{}
target, err := b.getAPIPath("/lights/new")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
_ = unmarshal(res, &n)
lights := make([]string, 0, len(n))
var lastscan string
for k := range n {
if k == "lastscan" {
lastscan = n[k].(string)
} else {
lights = append(lights, k)
}
}
result := &NewLight{
Lights: lights,
LastScan: lastscan,
}
return result, nil
}
// DeleteLight deletes one lights from the bridge
func (b *Bridge) DeleteLight(i int) error {
return b.DeleteLightContext(context.Background(), i)
}
// DeleteLightContext deletes one lights from the bridge
func (b *Bridge) DeleteLightContext(ctx context.Context, i int) error {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/lights/", id)
if err != nil {
return err
}
res, err := del(ctx, target, b.client)
if err != nil {
return err
}
_ = unmarshal(res, &a)
_, err = handleResponse(a)
if err != nil {
return err
}
return nil
}
// UpdateLight updates one light's attributes and state properties
func (b *Bridge) UpdateLight(i int, light Light) (*Response, error) {
return b.UpdateLightContext(context.Background(), i, light)
}
// UpdateLightContext updates one light's attributes and state properties
func (b *Bridge) UpdateLightContext(ctx context.Context, i int, light Light) (*Response, error) {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/lights/", id)
if err != nil {
return nil, err
}
data, err := json.Marshal(&light)
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
/*
RESOURCELINK API
*/
// GetResourcelinks returns all resourcelinks known to the bridge
func (b *Bridge) GetResourcelinks() ([]*Resourcelink, error) {
return b.GetResourcelinksContext(context.Background())
}
// GetResourcelinksContext returns all resourcelinks known to the bridge
func (b *Bridge) GetResourcelinksContext(ctx context.Context) ([]*Resourcelink, error) {
var r map[string]Resourcelink
target, err := b.getAPIPath("/resourcelinks/")
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &r)
if err != nil {
return nil, err
}
resourcelinks := make([]*Resourcelink, 0, len(r))
for i, s := range r {
s.ID, err = strconv.Atoi(i)
if err != nil {
return nil, err
}
sCopy := s
resourcelinks = append(resourcelinks, &sCopy)
}
return resourcelinks, nil
}
// GetResourcelink returns one resourcelink by its id defined by i
func (b *Bridge) GetResourcelink(i int) (*Resourcelink, error) {
return b.GetResourcelinkContext(context.Background(), i)
}
// GetResourcelinkContext returns one resourcelink by its id defined by i
func (b *Bridge) GetResourcelinkContext(ctx context.Context, i int) (*Resourcelink, error) {
g := &Resourcelink{
ID: i,
}
target, err := b.getAPIPath("/resourcelinks/", strconv.Itoa(i))
if err != nil {
return nil, err
}
res, err := get(ctx, target, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &g)
if err != nil {
return nil, err
}
return g, nil
}
// CreateResourcelink creates one new resourcelink on the bridge
func (b *Bridge) CreateResourcelink(s *Resourcelink) (*Response, error) {
return b.CreateResourcelinkContext(context.Background(), s)
}
// CreateResourcelinkContext creates one new resourcelink on the bridge
func (b *Bridge) CreateResourcelinkContext(ctx context.Context, s *Resourcelink) (*Response, error) {
var a []*APIResponse
data, err := json.Marshal(&s)
if err != nil {
return nil, err
}
target, err := b.getAPIPath("/resourcelinks/")
if err != nil {
return nil, err
}
res, err := post(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// UpdateResourcelink updates one resourcelink with attributes defined by resourcelink
func (b *Bridge) UpdateResourcelink(i int, resourcelink *Resourcelink) (*Response, error) {
return b.UpdateResourcelinkContext(context.Background(), i, resourcelink)
}
// UpdateResourcelinkContext updates one resourcelink with attributes defined by resourcelink
func (b *Bridge) UpdateResourcelinkContext(ctx context.Context, i int, resourcelink *Resourcelink) (*Response, error) {
var a []*APIResponse
data, err := json.Marshal(&resourcelink)
if err != nil {
return nil, err
}
target, err := b.getAPIPath("/resourcelinks/", strconv.Itoa(i))
if err != nil {
return nil, err
}
res, err := put(ctx, target, data, b.client)
if err != nil {
return nil, err
}
err = unmarshal(res, &a)
if err != nil {
return nil, err
}
resp, err := handleResponse(a)
if err != nil {
return nil, err
}
return resp, nil
}
// DeleteResourcelink deletes one resourcelink with the id of i
func (b *Bridge) DeleteResourcelink(i int) error {
return b.DeleteResourcelinkContext(context.Background(), i)
}
// DeleteResourcelinkContext deletes one resourcelink with the id of i
func (b *Bridge) DeleteResourcelinkContext(ctx context.Context, i int) error {
var a []*APIResponse
id := strconv.Itoa(i)
target, err := b.getAPIPath("/resourcelinks/", id)
if err != nil {
return err
}
res, err := del(ctx, target, b.client)
if err != nil {
return err
}
_ = unmarshal(res, &a)
_, err = handleResponse(a)
if err != nil {
return err
}
return nil
}
/*
RULE API
*/
// GetRules returns all rules known to the bridge
func (b *Bridge) GetRules() ([]*Rule, error) {
return b.GetRulesContext(context.Background())
}
// GetRulesContext returns all rules known to the bridge
func (b *Bridge) GetRulesContext(ctx context.Context) ([]*Rule, error) {
var r map[string]Rule
target, err := b.getAPIPath("/rules/")