forked from scottdware/go-bigip
-
Notifications
You must be signed in to change notification settings - Fork 36
/
sys.go
1100 lines (940 loc) · 31.5 KB
/
sys.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
/*
Original work Copyright © 2015 Scott Ware
Modifications Copyright 2019 F5 Networks Inc
Licensed under the Apache License, Version 2.0 (the "License");
You may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
*/
package bigip
import (
"encoding/json"
"fmt"
"log"
"os"
"strconv"
//"strings"
"time"
)
type Version struct {
Kind string `json:"kind,omitempty"`
SelfLink string `json:"selfLink,omitempty"`
Entries struct {
HTTPSLocalhostMgmtTmCliVersion0 struct {
NestedStats struct {
Entries struct {
Active struct {
Description string `json:"description"`
} `json:"active,omitempty"`
Latest struct {
Description string `json:"description"`
} `json:"latest,omitempty"`
Supported struct {
Description string `json:"description"`
} `json:"supported,omitempty"`
} `json:"entries,omitempty"`
} `json:"nestedStats,omitempty"`
} `json:"https://localhost/mgmt/tm/cli/version/0,omitempty"`
} `json:"entries,omitempty"`
}
type NTPs struct {
NTPs []NTP `json:"items"`
}
type NTP struct {
Description string `json:"description"`
Servers []string `json:"servers"`
Timezone string `json:"timezone,omitempty"`
}
type BigipCommand struct {
Command string `json:"command"`
UtilCmdArgs string `json:"utilCmdArgs"`
CommandResult string `json:"commandResult,omitempty"`
}
type BigipCmdResp struct {
Code int `json:"code"`
Message string `json:"message"`
ErrorStack []interface{} `json:"errorStack"`
APIError int `json:"apiError"`
}
type DNSs struct {
DNSs []DNS `json:"items"`
}
type DNS struct {
Description string `json:"description"`
NameServers []string `json:"nameServers,"`
NumberOfDots int `json:"numberOfDots,omitempty"`
Search []string `json:"search"`
}
type Provisions struct {
Provisions []Provision `json:"items"`
}
type Provision struct {
Name string `json:"name,omitempty"`
FullPath string `json:"fullPath,omitempty"`
CpuRatio int `json:"cpuRatio,omitempty"`
DiskRatio int `json:"diskRatio,omitempty"`
Level string `json:"level,omitempty"`
MemoryRatio int `json:"memoryRatio,omitempty"`
}
type Syslogs struct {
Syslogs []Syslog `json:"items"`
}
type Syslog struct {
AuthPrivFrom string
RemoteServers []RemoteServer
}
type syslogDTO struct {
AuthPrivFrom string `json:"authPrivFrom,omitempty"`
RemoteServers struct {
Items []RemoteServer `json:"items,omitempty"`
} `json:"remoteServers,omitempty"`
}
func (p *Syslog) MarshalJSON() ([]byte, error) {
var dto syslogDTO
return json.Marshal(dto)
}
func (p *Syslog) UnmarshalJSON(b []byte) error {
var dto syslogDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.AuthPrivFrom = dto.AuthPrivFrom
p.RemoteServers = dto.RemoteServers.Items
return nil
}
type RemoteServer struct {
Name string `json:"name,omitempty"`
Host string `json:"host,omitempty"`
RemotePort int `json:"remotePort,omitempty"`
}
type remoteServerDTO struct {
Name string `json:"name,omitempty"`
Host string `json:"host,omitempty"`
RemotePort int `json:"remotePort,omitempty"`
}
func (p *RemoteServer) MarshalJSON() ([]byte, error) {
return json.Marshal(remoteServerDTO{
Name: p.Name,
Host: p.Host,
RemotePort: p.RemotePort,
})
}
func (p *RemoteServer) UnmarshalJSON(b []byte) error {
var dto remoteServerDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.Name = dto.Name
p.Host = dto.Host
p.RemotePort = dto.RemotePort
return nil
}
type SNMPs struct {
SNMPs []SNMP `json:"items"`
}
type SNMP struct {
SysContact string `json:"sysContact,omitempty"`
SysLocation string `json:"sysLocation,omitempty"`
AllowedAddresses []string `json:"allowedAddresses,omitempty"`
}
type TRAPs struct {
SNMPs []SNMP `json:"items"`
}
type TRAP struct {
Name string `json:"name,omitempty"`
AuthPasswordEncrypted string `json:"authPasswordEncrypted,omitempty"`
AuthProtocol string `json:"authProtocol,omitempty"`
Community string `json:"community,omitempty"`
Description string `json:"description,omitempty"`
EngineId string `json:"engineId,omitempty"`
Host string `json:"host,omitempty"`
Port int `json:"port,omitempty"`
PrivacyPassword string `json:"privacyPassword,omitempty"`
PrivacyPasswordEncrypted string `json:"privacyPasswordEncrypted,omitempty"`
PrivacyProtocol string `json:"privacyProtocol,omitempty"`
SecurityLevel string `json:"securityLevel,omitempty"`
SecurityName string `json:"SecurityName,omitempty"`
Version string `json:"version,omitempty"`
}
type Bigiplicenses struct {
Bigiplicenses []Bigiplicense `json:"items"`
}
type Bigiplicense struct {
Registration_key string `json:"registrationKey,omitempty"`
Command string `json:"command,omitempty"`
}
type LogIPFIXs struct {
LogIPFIXs []LogIPFIX `json:"items"`
}
type LogIPFIX struct {
AppService string `json:"appService,omitempty"`
Name string `json:"name,omitempty"`
PoolName string `json:"poolName,omitempty"`
ProtocolVersion string `json:"protocolVersion,omitempty"`
ServersslProfile string `json:"serversslProfile,omitempty"`
TemplateDeleteDelay int `json:"templateDeleteDelay,omitempty"`
TemplateRetransmitInterval int `json:"templateRetransmitInterval,omitempty"`
TransportProfile string `json:"transportProfile,omitempty"`
}
type LogPublishers struct {
LogPublishers []LogPublisher `json:"items"`
}
type LogPublisher struct {
Name string `json:"name,omitempty"`
Dests []Destinations
}
type Destinations struct {
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
}
type destinationsDTO struct {
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
Dests struct {
Items []Destinations `json:"items,omitempty"`
} `json:"destinationsReference,omitempty"`
}
type ExternalDGFile struct {
Name string `json:"name"`
Partition string `json:"partition"`
SourcePath string `json:"sourcePath"`
Type string `json:"type"`
}
type OCSP struct {
Name string `json:"name,omitempty"`
FullPath string `json:"fullPath,omitempty"`
Partition string `json:"partition,omitempty"`
ProxyServerPool string `json:"proxyServerPool,omitempty"`
DnsResolver string `json:"dnsResolver,omitempty"`
RouteDomain string `json:"routeDomain,omitempty"`
ConcurrentConnectionsLimit int64 `json:"concurrentConnectionsLimit,omitempty"`
ResponderUrl string `json:"responderUrl,omitempty"`
ConnectionTimeout int64 `json:"timeout,omitempty"`
TrustedResponders string `json:"trustedResponders,omitempty"`
ClockSkew int64 `json:"clockSkew,omitempty"`
StatusAge int64 `json:"statusAge,omitempty"`
StrictRespCertCheck string `json:"strictRespCertCheck,omitempty"`
CacheTimeout string `json:"cacheTimeout,omitempty"`
CacheErrorTimeout int64 `json:"cacheErrorTimeout,omitempty"`
SignerCert string `json:"signerCert,omitempty"`
SignerKey string `json:"signerKey,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
SignHash string `json:"signHash,omitempty"`
}
func (p *LogPublisher) MarshalJSON() ([]byte, error) {
return json.Marshal(destinationsDTO{
Name: p.Name,
Dests: struct {
Items []Destinations `json:"items,omitempty"`
}{Items: p.Dests},
})
}
func (p *LogPublisher) UnmarshalJSON(b []byte) error {
var dto destinationsDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.Name = dto.Name
p.Dests = dto.Dests.Items
return nil
}
const (
uriSys = "sys"
uriTm = "tm"
uriCli = "cli"
uriUtil = "util"
uriBash = "bash"
uriVersion = "version"
uriNtp = "ntp"
uriDNS = "dns"
uriProvision = "provision"
uriAfm = "afm"
uriAsm = "asm"
uriApm = "apm"
uriAvr = "avr"
uriAuth = "auth"
uriPartition = "partition"
uriFolder = "folder"
uriIlx = "ilx"
uriSyslog = "syslog"
uriSnmp = "snmp"
uriTraps = "traps"
uriLicense = "license"
uriLogConfig = "logConfig"
uriDestination = "destination"
uriIPFIX = "ipfix"
uriPublisher = "publisher"
uriFile = "file"
uriSslCert = "ssl-cert"
uriSslKey = "ssl-key"
uriDataGroup = "data-group"
uriTransaction = "transaction"
REST_DOWNLOAD_PATH = "/var/config/rest/downloads"
)
// Certificates represents a list of installed SSL certificates.
type Certificates struct {
Certificates []Certificate `json:"items,omitempty"`
}
// Certificate represents an SSL Certificate.
type Certificate struct {
AppService string `json:"appService,omitempty"`
CachePath string `json:"cachePath,omitempty"`
CertificateKeyCurveName string `json:"certificateKeyCurveName,omitempty"`
CertificateKeySize int `json:"certificateKeySize,omitempty"`
CertValidationOptions []string `json:"certValidationOptions,omitempty"`
Checksum string `json:"checksum,omitempty"`
CreatedBy string `json:"createdBy,omitempty"`
CreateTime string `json:"createTime,omitempty"`
Email string `json:"email,omitempty"`
ExpirationDate int64 `json:"expirationDate,omitempty"`
ExpirationString string `json:"expirationString,omitempty"`
Fingerprint string `json:"fingerprint,omitempty"`
FullPath string `json:"fullPath,omitempty"`
Generation int `json:"generation,omitempty"`
IsBundle string `json:"isBundle,omitempty"`
IsDynamic string `json:"isDynamic,omitempty"`
Issuer string `json:"issuer,omitempty"`
IssuerCert string `json:"issuerCert,omitempty"`
KeyType string `json:"keyType,omitempty"`
LastUpdateTime string `json:"lastUpdateTime,omitempty"`
Mode int `json:"mode,omitempty"`
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
Revision int `json:"revision,omitempty"`
SerialNumber string `json:"serialNumber,omitempty"`
Size uint64 `json:"size,omitempty"`
SourcePath string `json:"sourcePath,omitempty"`
Subject string `json:"subject,omitempty"`
SubjectAlternativeName string `json:"subjectAlternativeName,omitempty"`
SystemPath string `json:"systemPath,omitempty"`
UpdatedBy string `json:"updatedBy,omitempty"`
Version int `json:"version,omitempty"`
CertValidatorRef *CertValidatorReference `json:"certValidatorsReference,omitempty"`
}
type CertValidatorReference struct {
Items []CertValidatorState `json:"items,omitempty"`
}
type CertValidatorState struct {
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
FullPath string `json:"fullPath,omitempty"`
}
// Keys represents a list of installed keys.
type Keys struct {
Keys []Key `json:"items,omitempty"`
}
// Key represents a private key associated with a certificate.
type Key struct {
AppService string `json:"appService,omitempty"`
CachePath string `json:"cachePath,omitempty"`
Checksum string `json:"checksum,omitempty"`
CreatedBy string `json:"createdBy,omitempty"`
CreateTime string `json:"createTime,omitempty"`
CurveName string `json:"curveName,omitempty"`
FullPath string `json:"fullPath,omitempty"`
Generation int `json:"generation,omitempty"`
IsDynamic string `json:"isDynamic,omitempty"`
KeySize int `json:"keySize,omitempty"`
KeyType string `json:"keyType,omitempty"`
LastUpdateTime string `json:"lastUpdateTime,omitempty"`
Mode int `json:"mode,omitempty"`
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
Revision int `json:"revision,omitempty"`
SecurityType string `json:"securityType,omitempty"`
Size uint64 `json:"size,omitempty"`
SourcePath string `json:"sourcePath,omitempty"`
SystemPath string `json:"systemPath,omitempty"`
UpdatedBy string `json:"updatedBy,omitempty"`
}
type Transaction struct {
TransID int64 `json:"transId,omitempty"`
State string `json:"state,omitempty"`
TimeoutSeconds int64 `json:"timeoutSeconds,omitempty"`
AsyncExecution bool `json:"asyncExecution,omitempty"`
ValidateOnly bool `json:"validateOnly,omitempty"`
ExecutionTimeout int64 `json:"executionTimeout,omitempty"`
ExecutionTime int64 `json:"executionTime,omitempty"`
FailureReason string `json:"failureReason,omitempty"`
}
type Partition struct {
Name string `json:"name,omitempty"`
RouteDomain int `json:"defaultRouteDomain"`
Description string `json:"description,omitempty"`
}
// Certificates returns a list of certificates.
func (b *BigIP) Certificates() (*Certificates, error) {
var certs Certificates
err, _ := b.getForEntity(&certs, uriSys, uriFile, uriSslCert)
if err != nil {
return nil, err
}
return &certs, nil
}
// AddCertificate installs a certificate.
func (b *BigIP) AddCertificate(cert *Certificate) error {
return b.post(cert, uriSys, uriFile, uriSslCert)
}
// AddExternalDatagroupfile adds datagroup file
func (b *BigIP) AddExternalDatagroupfile(dataGroup *ExternalDGFile) error {
return b.post(dataGroup, uriSys, uriFile, uriDataGroup)
}
// DeleteExternalDatagroupfile removes a Datagroup file.
func (b *BigIP) DeleteExternalDatagroupfile(name string) error {
return b.delete(uriSys, uriFile, uriDataGroup, name)
}
// ModifyExternalDatagroupfile modify datagroup file
func (b *BigIP) ModifyExternalDatagroupfile(dgName string, dataGroup *ExternalDGFile) error {
return b.patch(dataGroup, uriSys, uriFile, uriDataGroup, dgName)
}
// ModifyCertificate installs a certificate.
func (b *BigIP) ModifyCertificate(certName string, cert *Certificate) error {
return b.patch(cert, uriSys, uriFile, uriSslCert, certName, "?expandSubcollections=true")
}
// UploadCertificate copies a certificate local disk to BIGIP
func (b *BigIP) UploadCertificate(certpath string, cert *Certificate) error {
certbyte := []byte(certpath)
_, err := b.UploadBytes(certbyte, cert.Name)
if err != nil {
return err
}
sourcepath := "file://" + REST_DOWNLOAD_PATH + "/" + cert.Name
log.Printf("[DEBUG] sourcepath :%+v", sourcepath)
cert.SourcePath = sourcepath
log.Printf("cert: %+v\n", cert)
err = b.AddCertificate(cert)
if err != nil {
return err
}
return nil
}
// GetCertificate retrieves a Certificate by name. Returns nil if the certificate does not exist
func (b *BigIP) GetCertificate(name string) (*Certificate, error) {
var cert Certificate
err, ok := b.getForEntity(&cert, uriSys, uriFile, uriSslCert, name)
if err != nil {
return nil, err
}
if !ok {
return nil, nil
}
return &cert, nil
}
// DeleteCertificate removes a certificate.
func (b *BigIP) DeleteCertificate(name string) error {
return b.delete(uriSys, uriFile, uriSslCert, name)
}
// UpdateCertificate copies a certificate local disk to BIGIP
func (b *BigIP) UpdateCertificate(certpath string, cert *Certificate) error {
certbyte := []byte(certpath)
_, err := b.UploadBytes(certbyte, cert.Name)
if err != nil {
return err
}
sourcepath := "file://" + REST_DOWNLOAD_PATH + "/" + cert.Name
cert.SourcePath = sourcepath
certName := fmt.Sprintf("/%s/%s", cert.Partition, cert.Name)
log.Printf("certName: %+v\n", certName)
err = b.ModifyCertificate(certName, cert)
if err != nil {
return err
}
return nil
}
// UploadKey copies a certificate key from local disk to BIGIP
func (b *BigIP) UploadKey(keyname, keypath string) (string, error) {
keybyte := []byte(keypath)
_, err := b.UploadBytes(keybyte, keyname)
if err != nil {
return "", err
}
sourcepath := "file://" + REST_DOWNLOAD_PATH + "/" + keyname
log.Println("[DEBUG] string:", sourcepath)
return sourcepath, nil
}
// UpdateKey copies a certificate key from local disk to BIGIP
func (b *BigIP) UpdateKey(keyname, keypath, partition string) error {
keybyte := []byte(keypath)
_, err := b.UploadBytes(keybyte, keyname)
if err != nil {
return err
}
sourcepath := "file://" + REST_DOWNLOAD_PATH + "/" + keyname
log.Println("[DEBUG]string:", sourcepath)
certkey := Key{
Name: keyname,
SourcePath: sourcepath,
Partition: partition,
}
keyName := fmt.Sprintf("/%s/%s", partition, keyname)
log.Printf("[DEBUG]keyName: %+v\n", keyName)
err = b.ModifyKey(keyName, &certkey)
if err != nil {
return err
}
return nil
}
// Keys returns a list of keys.
func (b *BigIP) Keys() (*Keys, error) {
var keys Keys
err, _ := b.getForEntity(&keys, uriSys, uriFile, uriSslKey)
if err != nil {
return nil, err
}
return &keys, nil
}
// AddKey installs a key.
func (b *BigIP) AddKey(config *Key) error {
return b.post(config, uriSys, uriFile, uriSslKey)
}
// ModifyKey Updates a key.
func (b *BigIP) ModifyKey(keyName string, config *Key) error {
return b.patch(config, uriSys, uriFile, uriSslKey, keyName)
}
// GetKey retrieves a key by name. Returns nil if the key does not exist.
func (b *BigIP) GetKey(name string) (*Key, error) {
var key Key
err, ok := b.getForEntity(&key, uriSys, uriFile, uriSslKey, name)
if err != nil {
return nil, err
}
if !ok {
return nil, nil
}
return &key, nil
}
// DeleteKey removes a key.
func (b *BigIP) DeleteKey(name string) error {
return b.delete(uriSys, uriFile, uriSslKey, name)
}
func (b *BigIP) CreateNTP(description string, servers []string, timezone string) error {
config := &NTP{
Description: description,
Servers: servers,
Timezone: timezone,
}
return b.patch(config, uriSys, uriNtp)
}
func (b *BigIP) ModifyNTP(config *NTP) error {
return b.patch(config, uriSys, uriNtp)
}
func (b *BigIP) NTPs() (*NTP, error) {
var ntp NTP
err, _ := b.getForEntity(&ntp, uriSys, uriNtp)
if err != nil {
return nil, err
}
return &ntp, nil
}
func (b *BigIP) BigipVersion() (*Version, error) {
var bigipversion Version
err, _ := b.getForEntity(&bigipversion, uriMgmt, uriTm, uriCli, uriVersion)
if err != nil {
return nil, err
}
return &bigipversion, nil
}
func (b *BigIP) RunCommand(config *BigipCommand) (*BigipCommand, error) {
var respRef BigipCommand
resp, err := b.postReq(config, uriMgmt, uriTm, uriUtil, uriBash)
if err != nil {
return nil, err
}
json.Unmarshal(resp, &respRef)
return &respRef, nil
}
func (b *BigIP) CreateDNS(description string, nameservers []string, numberofdots int, search []string) error {
config := &DNS{
Description: description,
NameServers: nameservers,
NumberOfDots: numberofdots,
Search: search,
}
return b.patch(config, uriSys, uriDNS)
}
func (b *BigIP) ModifyDNS(config *DNS) error {
return b.patch(config, uriSys, uriDNS)
}
// DNS & NTP resource does not support Delete API
func (b *BigIP) DNSs() (*DNS, error) {
var dns DNS
err, _ := b.getForEntity(&dns, uriSys, uriDNS)
if err != nil {
return nil, err
}
return &dns, nil
}
func (b *BigIP) CreateProvision(name string, fullPath string, cpuRatio int, diskRatio int, level string, memoryRatio int) error {
config := &Provision{
Name: name,
FullPath: fullPath,
CpuRatio: cpuRatio,
DiskRatio: diskRatio,
Level: level,
MemoryRatio: memoryRatio,
}
if name == "asm" {
return b.put(config, uriSys, uriProvision, uriAsm)
}
if name == "afm" {
return b.put(config, uriSys, uriProvision, uriAfm)
}
if name == "gtm" {
return b.put(config, uriSys, uriProvision, uriGtm)
}
if name == "apm" {
return b.put(config, uriSys, uriProvision, uriApm)
}
if name == "avr" {
return b.put(config, uriSys, uriProvision, uriAvr)
}
if name == "ilx" {
return b.put(config, uriSys, uriProvision, uriIlx)
}
return nil
}
func (b *BigIP) ProvisionModule(config *Provision) error {
log.Printf(" Module Provision:%v", config)
if config.Name == "asm" {
return b.put(config, uriSys, uriProvision, uriAsm)
}
if config.Name == "afm" {
return b.put(config, uriSys, uriProvision, uriAfm)
}
if config.Name == "gtm" {
return b.put(config, uriSys, uriProvision, uriGtm)
}
if config.Name == "apm" {
return b.put(config, uriSys, uriProvision, uriApm)
}
if config.Name == "avr" {
return b.put(config, uriSys, uriProvision, uriAvr)
}
if config.Name == "ilx" {
return b.put(config, uriSys, uriProvision, uriIlx)
}
return nil
}
func (b *BigIP) DeleteProvision(name string) error {
// Delete API does not exists for resource Provision
return b.delete(uriSys, uriProvision, uriIlx, name)
}
func (b *BigIP) Provisions(name string) (*Provision, error) {
var provision Provision
if name == "afm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAfm)
if err != nil {
return nil, err
}
}
if name == "asm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAsm)
if err != nil {
return nil, err
}
}
if name == "gtm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriGtm)
if err != nil {
return nil, err
}
}
if name == "apm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriApm)
if err != nil {
return nil, err
}
}
if name == "avr" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAvr)
if err != nil {
return nil, err
}
}
if name == "ilx" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriIlx)
if err != nil {
return nil, err
}
}
log.Println("Display ****************** provision ", provision)
return &provision, nil
}
func (b *BigIP) Syslogs() (*Syslog, error) {
var syslog Syslog
err, _ := b.getForEntity(&syslog, uriSys, uriSyslog)
if err != nil {
return nil, err
}
return &syslog, nil
}
func (b *BigIP) CreateSyslog(r *Syslog) error {
return b.patch(r, uriSys, uriSyslog)
}
func (b *BigIP) ModifySyslog(r *Syslog) error {
return b.put(r, uriSys, uriSyslog)
}
func (b *BigIP) CreateSNMP(sysContact string, sysLocation string, allowedAddresses []string) error {
config := &SNMP{
SysContact: sysContact,
SysLocation: sysLocation,
AllowedAddresses: allowedAddresses,
}
return b.patch(config, uriSys, uriSnmp)
}
func (b *BigIP) ModifySNMP(config *SNMP) error {
return b.put(config, uriSys, uriSnmp)
}
func (b *BigIP) SNMPs() (*SNMP, error) {
var snmp SNMP
err, _ := b.getForEntity(&snmp, uriSys, uriSnmp)
if err != nil {
return nil, err
}
return &snmp, nil
}
func (b *BigIP) CreateTRAP(name string, authPasswordEncrypted string, authProtocol string, community string, description string, engineId string, host string, port int, privacyPassword string, privacyPasswordEncrypted string, privacyProtocol string, securityLevel string, securityName string, version string) error {
config := &TRAP{
Name: name,
AuthPasswordEncrypted: authPasswordEncrypted,
AuthProtocol: authProtocol,
Community: community,
Description: description,
EngineId: engineId,
Host: host,
Port: port,
PrivacyPassword: privacyPassword,
PrivacyPasswordEncrypted: privacyPasswordEncrypted,
PrivacyProtocol: privacyProtocol,
SecurityLevel: securityLevel,
SecurityName: securityName,
Version: version,
}
return b.post(config, uriSys, uriSnmp, uriTraps)
}
func (b *BigIP) StartTransaction() (*Transaction, error) {
b.Transaction = ""
body := make(map[string]interface{})
resp, err := b.postReq(body, uriMgmt, uriTm, uriTransaction)
if err != nil {
return nil, fmt.Errorf("error encountered while starting transaction: %v", err)
}
transaction := &Transaction{}
err = json.Unmarshal(resp, transaction)
if err != nil {
return nil, err
}
log.Printf("[INFO] Transaction: %v", transaction)
b.Transaction = fmt.Sprint(transaction.TransID)
return transaction, nil
}
func (b *BigIP) CommitTransaction(tId int64) error {
b.Transaction = ""
commitTransaction := map[string]interface{}{
"state": "VALIDATING",
}
log.Printf("[INFO] Commiting Transaction with TransactionID: %v", tId)
err := b.patch(commitTransaction, uriMgmt, uriTm, uriTransaction, strconv.Itoa(int(tId)))
if err != nil {
return fmt.Errorf("%s", err)
}
return nil
}
func (b *BigIP) ModifyTRAP(config *TRAP) error {
return b.patch(config, uriSys, uriSnmp, uriTraps)
}
func (b *BigIP) TRAPs(name string) (*TRAP, error) {
var traps TRAP
err, _ := b.getForEntity(&traps, uriSys, uriSnmp, uriTraps, name)
if err != nil {
return nil, err
}
return &traps, nil
}
func (b *BigIP) DeleteTRAP(name string) error {
return b.delete(uriSys, uriSnmp, uriTraps, name)
}
func (b *BigIP) Bigiplicenses() (*Bigiplicense, error) {
var bigiplicense Bigiplicense
err, _ := b.getForEntity(&bigiplicense, uriSys, uriLicense)
if err != nil {
return nil, err
}
return &bigiplicense, nil
}
func (b *BigIP) GetBigipLiceseStatus() (map[string]interface{}, error) {
bigipLicense := make(map[string]interface{})
err, _ := b.getForEntityNew(&bigipLicense, uriMgmt, uriTm, uriSys, uriLicense)
c := 0
for err != nil {
time.Sleep(10 * time.Second)
c++
err, _ = b.getForEntityNew(&bigipLicense, uriMgmt, uriTm, uriSys, uriLicense)
if c == 15 {
log.Printf("[DEBUG] Device is not up even after waiting for 120 seconds")
return nil, err
}
}
return bigipLicense, nil
}
func (b *BigIP) CreateBigiplicense(command, registration_key string) error {
config := &Bigiplicense{
Command: command,
Registration_key: registration_key,
}
return b.post(config, uriSys, uriLicense)
}
func (b *BigIP) ModifyBigiplicense(config *Bigiplicense) error {
return b.put(config, uriSys, uriLicense)
}
func (b *BigIP) LogIPFIXs() (*LogIPFIX, error) {
var logipfix LogIPFIX
err, _ := b.getForEntity(&logipfix, uriSys, uriLogConfig, uriDestination, uriIPFIX)
if err != nil {
return nil, err
}
return &logipfix, nil
}
func (b *BigIP) CreateLogIPFIX(name, appService, poolName, protocolVersion, serversslProfile string, templateDeleteDelay, templateRetransmitInterval int, transportProfile string) error {
config := &LogIPFIX{
Name: name,
AppService: appService,
PoolName: poolName,
ProtocolVersion: protocolVersion,
ServersslProfile: serversslProfile,
TemplateDeleteDelay: templateDeleteDelay,
TemplateRetransmitInterval: templateRetransmitInterval,
TransportProfile: transportProfile,
}
return b.post(config, uriSys, uriLogConfig, uriDestination, uriIPFIX)
}
func (b *BigIP) ModifyLogIPFIX(config *LogIPFIX) error {
return b.put(config, uriSys, uriLogConfig, uriDestination, uriIPFIX)
}
func (b *BigIP) DeleteLogIPFIX(name string) error {
return b.delete(uriSys, uriLogConfig, uriDestination, uriIPFIX, name)
}
func (b *BigIP) LogPublisher() (*LogPublisher, error) {
var logpublisher LogPublisher
err, _ := b.getForEntity(&logpublisher, uriSys, uriLogConfig, uriPublisher)
if err != nil {
return nil, err
}
return &logpublisher, nil
}
func (b *BigIP) CreateLogPublisher(r *LogPublisher) error {
return b.post(r, uriSys, uriLogConfig, uriPublisher)
}
func (b *BigIP) ModifyLogPublisher(r *LogPublisher) error {
return b.put(r, uriSys, uriLogConfig, uriPublisher)
}
func (b *BigIP) DeleteLogPublisher(name string) error {
return b.delete(uriSys, uriLogConfig, uriPublisher, name)
}
// UploadDatagroup copies a template set from local disk to BIGIP
func (b *BigIP) UploadDatagroup(tmplpath *os.File, dgname, partition, dgtype string, createDg bool) error {
_, err := b.UploadDataGroupFile(tmplpath, dgname)
if err != nil {
return err
}
sourcepath := "file://" + REST_DOWNLOAD_PATH + "/" + dgname
log.Printf("[DEBUG] sourcepath :%+v", sourcepath)
dataGroup := ExternalDGFile{
Name: dgname,
SourcePath: sourcepath,
Partition: partition,
Type: dgtype,
}
log.Printf("External DG: %+v\n", dataGroup)
if createDg {
err = b.AddExternalDatagroupfile(&dataGroup)
if err != nil {
return err
}