@@ -156,8 +156,21 @@ type NetworkLinks struct {
156
156
Tenant modeldb.Link `json:"Tenant,omitempty"`
157
157
}
158
158
159
+ type NetworkOper struct {
160
+ AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
161
+ AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
162
+ DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
163
+ ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
164
+ NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
165
+ PktTag int `json:"pktTag,omitempty"` // internal packet tag
166
+
167
+ OperLinks NetworkLinks `json:"links,omitempty"`
168
+ }
169
+
159
170
type NetworkInspect struct {
160
171
Config Network
172
+
173
+ Oper NetworkOper
161
174
}
162
175
type Policy struct {
163
176
// every object has a key
@@ -361,6 +374,8 @@ type GlobalCallbacks interface {
361
374
}
362
375
363
376
type NetworkCallbacks interface {
377
+ NetworkGetOper (network * NetworkInspect ) error
378
+
364
379
NetworkCreate (network * Network ) error
365
380
NetworkUpdate (network , params * Network ) error
366
381
NetworkDelete (network * Network ) error
@@ -726,17 +741,6 @@ func httpInspectAppProfile(w http.ResponseWriter, r *http.Request, vars map[stri
726
741
return & obj , nil
727
742
}
728
743
729
- // Get a appProfileOper object
730
- func GetOperAppProfile (key string ) error {
731
- obj := collections .appProfiles [key ]
732
- if obj == nil {
733
- log .Errorf ("appProfile %s not found" , key )
734
- return errors .New ("appProfile not found" )
735
- }
736
-
737
- return nil
738
- }
739
-
740
744
// CREATE REST call
741
745
func httpCreateAppProfile (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
742
746
log .Debugf ("Received httpGetAppProfile: %+v" , vars )
@@ -1012,17 +1016,6 @@ func httpInspectBgp(w http.ResponseWriter, r *http.Request, vars map[string]stri
1012
1016
return & obj , nil
1013
1017
}
1014
1018
1015
- // Get a BgpOper object
1016
- func GetOperBgp (key string ) error {
1017
- obj := collections .Bgps [key ]
1018
- if obj == nil {
1019
- log .Errorf ("Bgp %s not found" , key )
1020
- return errors .New ("Bgp not found" )
1021
- }
1022
-
1023
- return nil
1024
- }
1025
-
1026
1019
// CREATE REST call
1027
1020
func httpCreateBgp (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
1028
1021
log .Debugf ("Received httpGetBgp: %+v" , vars )
@@ -1315,17 +1308,6 @@ func httpInspectEndpointGroup(w http.ResponseWriter, r *http.Request, vars map[s
1315
1308
return & obj , nil
1316
1309
}
1317
1310
1318
- // Get a endpointGroupOper object
1319
- func GetOperEndpointGroup (key string ) error {
1320
- obj := collections .endpointGroups [key ]
1321
- if obj == nil {
1322
- log .Errorf ("endpointGroup %s not found" , key )
1323
- return errors .New ("endpointGroup not found" )
1324
- }
1325
-
1326
- return nil
1327
- }
1328
-
1329
1311
// CREATE REST call
1330
1312
func httpCreateEndpointGroup (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
1331
1313
log .Debugf ("Received httpGetEndpointGroup: %+v" , vars )
@@ -1867,17 +1849,6 @@ func httpInspectGlobal(w http.ResponseWriter, r *http.Request, vars map[string]s
1867
1849
return & obj , nil
1868
1850
}
1869
1851
1870
- // Get a globalOper object
1871
- func GetOperGlobal (key string ) error {
1872
- obj := collections .globals [key ]
1873
- if obj == nil {
1874
- log .Errorf ("global %s not found" , key )
1875
- return errors .New ("global not found" )
1876
- }
1877
-
1878
- return nil
1879
- }
1880
-
1881
1852
// CREATE REST call
1882
1853
func httpCreateGlobal (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
1883
1854
log .Debugf ("Received httpGetGlobal: %+v" , vars )
@@ -2159,16 +2130,28 @@ func httpInspectNetwork(w http.ResponseWriter, r *http.Request, vars map[string]
2159
2130
}
2160
2131
obj .Config = * objConfig
2161
2132
2133
+ if err := GetOperNetwork (& obj ); err != nil {
2134
+ log .Errorf ("GetNetwork error for: %+v. Err: %v" , obj , err )
2135
+ return nil , err
2136
+ }
2137
+
2162
2138
// Return the obj
2163
2139
return & obj , nil
2164
2140
}
2165
2141
2166
2142
// Get a networkOper object
2167
- func GetOperNetwork (key string ) error {
2168
- obj := collections .networks [key ]
2169
- if obj == nil {
2170
- log .Errorf ("network %s not found" , key )
2171
- return errors .New ("network not found" )
2143
+ func GetOperNetwork (obj * NetworkInspect ) error {
2144
+ // Check if we handle this object
2145
+ if objCallbackHandler .NetworkCb == nil {
2146
+ log .Errorf ("No callback registered for network object" )
2147
+ return errors .New ("Invalid object type" )
2148
+ }
2149
+
2150
+ // Perform callback
2151
+ err := objCallbackHandler .NetworkCb .NetworkGetOper (obj )
2152
+ if err != nil {
2153
+ log .Errorf ("NetworkDelete retruned error for: %+v. Err: %v" , obj , err )
2154
+ return err
2172
2155
}
2173
2156
2174
2157
return nil
@@ -2487,17 +2470,6 @@ func httpInspectPolicy(w http.ResponseWriter, r *http.Request, vars map[string]s
2487
2470
return & obj , nil
2488
2471
}
2489
2472
2490
- // Get a policyOper object
2491
- func GetOperPolicy (key string ) error {
2492
- obj := collections .policys [key ]
2493
- if obj == nil {
2494
- log .Errorf ("policy %s not found" , key )
2495
- return errors .New ("policy not found" )
2496
- }
2497
-
2498
- return nil
2499
- }
2500
-
2501
2473
// CREATE REST call
2502
2474
func httpCreatePolicy (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
2503
2475
log .Debugf ("Received httpGetPolicy: %+v" , vars )
@@ -2773,17 +2745,6 @@ func httpInspectRule(w http.ResponseWriter, r *http.Request, vars map[string]str
2773
2745
return & obj , nil
2774
2746
}
2775
2747
2776
- // Get a ruleOper object
2777
- func GetOperRule (key string ) error {
2778
- obj := collections .rules [key ]
2779
- if obj == nil {
2780
- log .Errorf ("rule %s not found" , key )
2781
- return errors .New ("rule not found" )
2782
- }
2783
-
2784
- return nil
2785
- }
2786
-
2787
2748
// CREATE REST call
2788
2749
func httpCreateRule (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
2789
2750
log .Debugf ("Received httpGetRule: %+v" , vars )
@@ -3145,17 +3106,6 @@ func httpInspectServiceLB(w http.ResponseWriter, r *http.Request, vars map[strin
3145
3106
return & obj , nil
3146
3107
}
3147
3108
3148
- // Get a serviceLBOper object
3149
- func GetOperServiceLB (key string ) error {
3150
- obj := collections .serviceLBs [key ]
3151
- if obj == nil {
3152
- log .Errorf ("serviceLB %s not found" , key )
3153
- return errors .New ("serviceLB not found" )
3154
- }
3155
-
3156
- return nil
3157
- }
3158
-
3159
3109
// CREATE REST call
3160
3110
func httpCreateServiceLB (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
3161
3111
log .Debugf ("Received httpGetServiceLB: %+v" , vars )
@@ -3449,17 +3399,6 @@ func httpInspectTenant(w http.ResponseWriter, r *http.Request, vars map[string]s
3449
3399
return & obj , nil
3450
3400
}
3451
3401
3452
- // Get a tenantOper object
3453
- func GetOperTenant (key string ) error {
3454
- obj := collections .tenants [key ]
3455
- if obj == nil {
3456
- log .Errorf ("tenant %s not found" , key )
3457
- return errors .New ("tenant not found" )
3458
- }
3459
-
3460
- return nil
3461
- }
3462
-
3463
3402
// CREATE REST call
3464
3403
func httpCreateTenant (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
3465
3404
log .Debugf ("Received httpGetTenant: %+v" , vars )
@@ -3735,17 +3674,6 @@ func httpInspectVolume(w http.ResponseWriter, r *http.Request, vars map[string]s
3735
3674
return & obj , nil
3736
3675
}
3737
3676
3738
- // Get a volumeOper object
3739
- func GetOperVolume (key string ) error {
3740
- obj := collections .volumes [key ]
3741
- if obj == nil {
3742
- log .Errorf ("volume %s not found" , key )
3743
- return errors .New ("volume not found" )
3744
- }
3745
-
3746
- return nil
3747
- }
3748
-
3749
3677
// CREATE REST call
3750
3678
func httpCreateVolume (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
3751
3679
log .Debugf ("Received httpGetVolume: %+v" , vars )
@@ -4003,17 +3931,6 @@ func httpInspectVolumeProfile(w http.ResponseWriter, r *http.Request, vars map[s
4003
3931
return & obj , nil
4004
3932
}
4005
3933
4006
- // Get a volumeProfileOper object
4007
- func GetOperVolumeProfile (key string ) error {
4008
- obj := collections .volumeProfiles [key ]
4009
- if obj == nil {
4010
- log .Errorf ("volumeProfile %s not found" , key )
4011
- return errors .New ("volumeProfile not found" )
4012
- }
4013
-
4014
- return nil
4015
- }
4016
-
4017
3934
// CREATE REST call
4018
3935
func httpCreateVolumeProfile (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
4019
3936
log .Debugf ("Received httpGetVolumeProfile: %+v" , vars )
0 commit comments