Skip to content

Commit 4d8f304

Browse files
committed
Merge pull request contiv#8 from abhinandanpb/master
updating bgp object
2 parents d65dea2 + 7ea9969 commit 4d8f304

5 files changed

+42
-15
lines changed

client/contivModel.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ var BgpSummaryView = React.createClass({
208208
<ModalTrigger modal={<BgpModalView Bgp={ Bgp }/>}>
209209
<tr key={ Bgp.key } className="info">
210210

211-
211+
212212
</tr>
213213
</ModalTrigger>
214214
);
@@ -220,7 +220,7 @@ var BgpSummaryView = React.createClass({
220220
<thead>
221221
<tr>
222222

223-
223+
224224
</tr>
225225
</thead>
226226
<tbody>
@@ -240,12 +240,16 @@ var BgpModalView = React.createClass({
240240
<div className='modal-body' style={ {margin: '5%',} }>
241241

242242

243-
<Input type='text' label='AS id' ref='AS' defaultValue={obj.AS} placeholder='AS id' />
243+
<Input type='text' label='AS id' ref='as' defaultValue={obj.as} placeholder='AS id' />
244244

245245
<Input type='text' label='host name' ref='hostname' defaultValue={obj.hostname} placeholder='host name' />
246246

247247
<Input type='text' label='Bgp neighbor' ref='neighbor' defaultValue={obj.neighbor} placeholder='Bgp neighbor' />
248248

249+
<Input type='text' label='AS id' ref='neighbor-as' defaultValue={obj.neighbor-as} placeholder='AS id' />
250+
251+
<Input type='text' label='Bgp router intf ip' ref='routerip' defaultValue={obj.routerip} placeholder='Bgp router intf ip' />
252+
249253
</div>
250254
<div className='modal-footer'>
251255
<Button onClick={this.props.onRequestHide}>Close</Button>

client/contivModelClient.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,11 @@ type Bgp struct {
202202
// every object has a key
203203
Key string `json:"key,omitempty"`
204204

205-
AS string `json:"AS,omitempty"` // AS id
206-
Hostname string `json:"hostname,omitempty"` // host name
207-
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
205+
As string `json:"as,omitempty"` // AS id
206+
Hostname string `json:"hostname,omitempty"` // host name
207+
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
208+
NeighborAs string `json:"neighbor-as,omitempty"` // AS id
209+
Routerip string `json:"routerip,omitempty"` // Bgp router intf ip
208210

209211
}
210212

client/contivModelClient.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,11 @@ def createBgp(self, obj):
178178
postUrl = self.baseUrl + '/api/Bgps/' + obj.hostname + '/'
179179

180180
jdata = json.dumps({
181-
"AS": obj.AS,
181+
"as": obj.as,
182182
"hostname": obj.hostname,
183183
"neighbor": obj.neighbor,
184+
"neighbor-as": obj.neighbor-as,
185+
"routerip": obj.routerip,
184186
})
185187

186188
# Post the data

contivModel.go

+15-5
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ type Bgp struct {
7575
// every object has a key
7676
Key string `json:"key,omitempty"`
7777

78-
AS string `json:"AS,omitempty"` // AS id
79-
Hostname string `json:"hostname,omitempty"` // host name
80-
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
78+
As string `json:"as,omitempty"` // AS id
79+
Hostname string `json:"hostname,omitempty"` // host name
80+
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
81+
NeighborAs string `json:"neighbor-as,omitempty"` // AS id
82+
Routerip string `json:"routerip,omitempty"` // Bgp router intf ip
8183

8284
}
8385

@@ -1573,8 +1575,8 @@ func ValidateBgp(obj *Bgp) error {
15731575

15741576
// Validate each field
15751577

1576-
if len(obj.AS) > 64 {
1577-
return errors.New("AS string too long")
1578+
if len(obj.As) > 64 {
1579+
return errors.New("as string too long")
15781580
}
15791581

15801582
if len(obj.Hostname) > 256 {
@@ -1585,6 +1587,14 @@ func ValidateBgp(obj *Bgp) error {
15851587
return errors.New("neighbor string too long")
15861588
}
15871589

1590+
if len(obj.NeighborAs) > 64 {
1591+
return errors.New("neighbor-as string too long")
1592+
}
1593+
1594+
if len(obj.Routerip) > 15 {
1595+
return errors.New("routerip string too long")
1596+
}
1597+
15881598
return nil
15891599
}
15901600

host.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,26 @@
1111
"title": "host name",
1212
"length": 256
1313
},
14-
"AS": {
14+
"routerip": {
15+
"type": "string",
16+
"title": "Bgp router intf ip",
17+
"length": 15
18+
},
19+
"as": {
20+
"type": "string",
21+
"title": "AS id",
22+
"length": 64
23+
},
24+
"neighbor-as": {
1525
"type": "string",
1626
"title": "AS id",
1727
"length": 64
1828
},
1929
"neighbor":{
2030
"type": "string",
2131
"title": "Bgp neighbor",
22-
"length": 15
32+
"length": 15
2333
}
2434
}
2535
}]
2636
}
27-

0 commit comments

Comments
 (0)