@@ -124,8 +124,19 @@ type Global struct {
124
124
125
125
}
126
126
127
+ type GlobalOper struct {
128
+ DefaultNetwork string `json:"defaultNetwork,omitempty"` //
129
+ FreeVXLANsStart int `json:"freeVXLANsStart,omitempty"` //
130
+ NumNetworks int `json:"numNetworks,omitempty"` //
131
+ VlansInUse string `json:"vlansInUse,omitempty"` //
132
+ VxlansInUse string `json:"vxlansInUse,omitempty"` //
133
+
134
+ }
135
+
127
136
type GlobalInspect struct {
128
137
Config Global
138
+
139
+ Oper GlobalOper
129
140
}
130
141
type Network struct {
131
142
// every object has a key
@@ -367,6 +378,7 @@ type ExtContractsGroupCallbacks interface {
367
378
}
368
379
369
380
type GlobalCallbacks interface {
381
+ GlobalGetOper (global * GlobalInspect ) error
370
382
GlobalCreate (global * Global ) error
371
383
GlobalUpdate (global , params * Global ) error
372
384
GlobalDelete (global * Global ) error
@@ -1843,10 +1855,33 @@ func httpInspectGlobal(w http.ResponseWriter, r *http.Request, vars map[string]s
1843
1855
}
1844
1856
obj .Config = * objConfig
1845
1857
1858
+ if err := GetOperGlobal (& obj ); err != nil {
1859
+ log .Errorf ("GetGlobal error for: %+v. Err: %v" , obj , err )
1860
+ return nil , err
1861
+ }
1862
+
1846
1863
// Return the obj
1847
1864
return & obj , nil
1848
1865
}
1849
1866
1867
+ // Get a globalOper object
1868
+ func GetOperGlobal (obj * GlobalInspect ) error {
1869
+ // Check if we handle this object
1870
+ if objCallbackHandler .GlobalCb == nil {
1871
+ log .Errorf ("No callback registered for global object" )
1872
+ return errors .New ("Invalid object type" )
1873
+ }
1874
+
1875
+ // Perform callback
1876
+ err := objCallbackHandler .GlobalCb .GlobalGetOper (obj )
1877
+ if err != nil {
1878
+ log .Errorf ("GlobalDelete retruned error for: %+v. Err: %v" , obj , err )
1879
+ return err
1880
+ }
1881
+
1882
+ return nil
1883
+ }
1884
+
1850
1885
// CREATE REST call
1851
1886
func httpCreateGlobal (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
1852
1887
log .Debugf ("Received httpGetGlobal: %+v" , vars )
0 commit comments