Skip to content

Commit 86366e2

Browse files
melanietomshaleman
authored andcommitted
OperProperties added to bgphost (#38)
1 parent 92c679a commit 86366e2

File tree

4 files changed

+75
-3
lines changed

4 files changed

+75
-3
lines changed

bgphost.json

+22-3
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,41 @@
1818
"length": 15,
1919
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$"
2020
},
21-
"as": {
21+
"as": {
2222
"type": "string",
2323
"title": "AS id",
2424
"length": 64
2525
},
26-
"neighbor-as": {
26+
"neighbor-as": {
2727
"type": "string",
2828
"title": "AS id",
2929
"length": 64
3030
},
31-
"neighbor":{
31+
"neighbor": {
3232
"type": "string",
3333
"title": "Bgp neighbor",
3434
"length": 15,
3535
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})?$"
3636
}
37+
},
38+
"operProperties": {
39+
"numRoutes": {
40+
"type": "int",
41+
"title": "number of routes"
42+
},
43+
"neighborStatus": {
44+
"type": "string",
45+
"title": "neighbor status"
46+
},
47+
"adminStatus": {
48+
"type": "string",
49+
"title": "admin status"
50+
},
51+
"routes": {
52+
"type": "array",
53+
"items": "string",
54+
"title": "routes"
55+
}
3756
}
3857
}]
3958
}

client/contivModelClient.go

+9
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,17 @@ type Bgp struct {
183183

184184
}
185185

186+
type BgpOper struct {
187+
AdminStatus string `json:"adminStatus,omitempty"` // admin status
188+
NeighborStatus string `json:"neighborStatus,omitempty"` // neighbor status
189+
NumRoutes int `json:"numRoutes,omitempty"` // number of routes
190+
Routes []string `json:"routes,omitempty"`
191+
}
192+
186193
type BgpInspect struct {
187194
Config Bgp
195+
196+
Oper BgpOper
188197
}
189198

190199
type EndpointOper struct {

client/contivModelClient.py

+10
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,16 @@ def listBgp(self):
148148

149149

150150

151+
# Inspect Bgp
152+
def createBgp(self, obj):
153+
postUrl = self.baseUrl + '/api/v1/inspect/Bgp/' + obj.hostname + '/'
154+
155+
retDate = urllib2.urlopen(postUrl)
156+
if retData == "Error":
157+
errorExit("list Bgp failed")
158+
159+
return json.loads(retData)
160+
151161

152162

153163

contivModel.go

+34
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,17 @@ type Bgp struct {
5353

5454
}
5555

56+
type BgpOper struct {
57+
AdminStatus string `json:"adminStatus,omitempty"` // admin status
58+
NeighborStatus string `json:"neighborStatus,omitempty"` // neighbor status
59+
NumRoutes int `json:"numRoutes,omitempty"` // number of routes
60+
Routes []string `json:"routes,omitempty"`
61+
}
62+
5663
type BgpInspect struct {
5764
Config Bgp
65+
66+
Oper BgpOper
5867
}
5968

6069
type EndpointOper struct {
@@ -442,6 +451,8 @@ type AppProfileCallbacks interface {
442451
}
443452

444453
type BgpCallbacks interface {
454+
BgpGetOper(Bgp *BgpInspect) error
455+
445456
BgpCreate(Bgp *Bgp) error
446457
BgpUpdate(Bgp, params *Bgp) error
447458
BgpDelete(Bgp *Bgp) error
@@ -1135,10 +1146,33 @@ func httpInspectBgp(w http.ResponseWriter, r *http.Request, vars map[string]stri
11351146
}
11361147
obj.Config = *objConfig
11371148

1149+
if err := GetOperBgp(&obj); err != nil {
1150+
log.Errorf("GetBgp error for: %+v. Err: %v", obj, err)
1151+
return nil, err
1152+
}
1153+
11381154
// Return the obj
11391155
return &obj, nil
11401156
}
11411157

1158+
// Get a BgpOper object
1159+
func GetOperBgp(obj *BgpInspect) error {
1160+
// Check if we handle this object
1161+
if objCallbackHandler.BgpCb == nil {
1162+
log.Errorf("No callback registered for Bgp object")
1163+
return errors.New("Invalid object type")
1164+
}
1165+
1166+
// Perform callback
1167+
err := objCallbackHandler.BgpCb.BgpGetOper(obj)
1168+
if err != nil {
1169+
log.Errorf("BgpDelete retruned error for: %+v. Err: %v", obj, err)
1170+
return err
1171+
}
1172+
1173+
return nil
1174+
}
1175+
11421176
// LIST REST call
11431177
func httpListBgps(w http.ResponseWriter, r *http.Request, vars map[string]string) (interface{}, error) {
11441178
log.Debugf("Received httpListBgps: %+v", vars)

0 commit comments

Comments
 (0)