@@ -21,88 +21,29 @@ import (
21
21
"github.com/contiv/contivmodel"
22
22
"github.com/contiv/netplugin/core"
23
23
"github.com/contiv/objdb/modeldb"
24
- "strings"
25
24
)
26
25
27
26
// Some utility functions to work with the external contracts
28
- // Severe the connections between EPGs and external contracts.
29
- func extContractsGrpDeregister (epg * contivModel.EndpointGroup ,
30
- contractsGrp * contivModel.ExtContractsGroup ,
31
- contractType string ) error {
32
- if contractsGrp == nil {
33
- errStr := fmt .Sprintf ("%s External contracts group not found" , contractType )
34
- log .Errorf (errStr )
35
- return core .Errorf (errStr )
36
- }
37
-
38
- modeldb .RemoveLinkSet (& contractsGrp .LinkSets .EndpointGroups , epg )
39
- modeldb .RemoveLinkSet (& epg .LinkSets .ExtContractsGrps , contractsGrp )
40
-
41
- // Links broken, update the contracts group object.
42
- err := contractsGrp .Write ()
43
- if err != nil {
44
- return err
45
- }
46
-
47
- return nil
48
- }
49
-
50
- // Check for the presence of external contracts, and also make sure that
51
- // they are of the right type. If yes, establish necessary relationships
52
- // between the epg and the external contracts.
53
- func extContractsGrpValidateAndRegister (epg * contivModel.EndpointGroup ,
54
- contractsGrp * contivModel.ExtContractsGroup ,
55
- contractType string ) error {
56
- if contractsGrp == nil {
57
- errStr := fmt .Sprintf ("%s External contracts group not found" , contractType )
58
- log .Errorf (errStr )
59
- return core .Errorf (errStr )
60
- }
61
-
62
- if strings .ToLower (contractsGrp .ContractsType ) != contractType {
63
- errStr := fmt .Sprintf ("Incorrect type for contract group: %v" , contractsGrp )
64
- log .Errorf (errStr )
65
- return core .Errorf (errStr )
66
- }
67
-
68
- // Establish the necessary links.
69
- modeldb .AddLinkSet (& contractsGrp .LinkSets .EndpointGroups , epg )
70
- modeldb .AddLinkSet (& epg .LinkSets .ExtContractsGrps , contractsGrp )
71
-
72
- // Links made, write the policy set object.
73
- err := contractsGrp .Write ()
74
- if err != nil {
75
- return err
76
- }
77
-
78
- return nil
79
- }
80
27
81
28
// Cleanup external contracts from an epg.
82
29
func cleanupExternalContracts (endpointGroup * contivModel.EndpointGroup ) error {
83
- // Cleanup consumed external contracts
84
30
tenant := endpointGroup .TenantName
85
- for _ , consExtContractsGrp := range endpointGroup .ConsExtContractsGrps {
86
- contractsGrpKey := tenant + ":" + consExtContractsGrp
87
- contractsGrp := contivModel .FindExtContractsGroup (contractsGrpKey )
88
- err := extContractsGrpDeregister (endpointGroup , contractsGrp , "consumed" )
89
- if err != nil {
90
- if contractsGrp != nil {
91
- log .Errorf ("Error cleaning up consumed ext contract %s" , contractsGrp .ContractsGroupName )
92
- }
93
- continue
94
- }
95
- }
96
-
97
- // Cleanup provided external contracts
98
- for _ , provExtContractsGrp := range endpointGroup .ProvExtContractsGrps {
99
- contractsGrpKey := tenant + ":" + provExtContractsGrp
100
- contractsGrp := contivModel .FindExtContractsGroup (contractsGrpKey )
101
- err := extContractsGrpDeregister (endpointGroup , contractsGrp , "provided" )
102
- if err != nil {
103
- if contractsGrp != nil {
104
- log .Errorf ("Error cleaning up provided ext contract %s" , contractsGrp .ContractsGroupName )
31
+ for _ , contractsGrp := range endpointGroup .ExtContractsGrps {
32
+ contractsGrpKey := tenant + ":" + contractsGrp
33
+ contractsGrpObj := contivModel .FindExtContractsGroup (contractsGrpKey )
34
+
35
+ if contractsGrpObj != nil {
36
+ // Break any linkeage we might have set.
37
+ modeldb .RemoveLinkSet (& contractsGrpObj .LinkSets .EndpointGroups , endpointGroup )
38
+ modeldb .RemoveLinkSet (& endpointGroup .LinkSets .ExtContractsGrps , contractsGrpObj )
39
+
40
+ // Links broken, update the contracts group object.
41
+ err := contractsGrpObj .Write ()
42
+ if err != nil {
43
+ return err
105
44
}
45
+ } else {
46
+ log .Errorf ("Error cleaning up consumed ext contract %s" , contractsGrp )
106
47
continue
107
48
}
108
49
}
@@ -111,24 +52,25 @@ func cleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
111
52
}
112
53
113
54
// Setup external contracts for an epg.
114
- func setupExternalContracts (endpointGroup * contivModel.EndpointGroup ,
115
- consContractsGrps , provContractsGrps []string ) error {
55
+ func setupExternalContracts (endpointGroup * contivModel.EndpointGroup , extContractsGrps []string ) error {
116
56
// Validate presence and register consumed external contracts
117
57
tenant := endpointGroup .TenantName
118
- for _ , consExtContractsGrp := range consContractsGrps {
119
- contractsGrpKey := tenant + ":" + consExtContractsGrp
120
- contractsGrp := contivModel .FindExtContractsGroup (contractsGrpKey )
121
- err := extContractsGrpValidateAndRegister (endpointGroup , contractsGrp , "consumed" )
122
- if err != nil {
123
- return err
58
+ for _ , contractsGrp := range extContractsGrps {
59
+ contractsGrpKey := tenant + ":" + contractsGrp
60
+ contractsGrpObj := contivModel .FindExtContractsGroup (contractsGrpKey )
61
+
62
+ if contractsGrpObj == nil {
63
+ errStr := fmt .Sprintf ("%External contracts group %s not found" , contractsGrp )
64
+ log .Errorf (errStr )
65
+ return core .Errorf (errStr )
124
66
}
125
- }
126
67
127
- // Validate presence and register provided external contracts
128
- for _ , provExtContractsGrp := range provContractsGrps {
129
- contractsGrpKey := tenant + ":" + provExtContractsGrp
130
- contractsGrp := contivModel .FindExtContractsGroup (contractsGrpKey )
131
- err := extContractsGrpValidateAndRegister (endpointGroup , contractsGrp , "provided" )
68
+ // Establish the necessary links.
69
+ modeldb .AddLinkSet (& contractsGrpObj .LinkSets .EndpointGroups , endpointGroup )
70
+ modeldb .AddLinkSet (& endpointGroup .LinkSets .ExtContractsGrps , contractsGrpObj )
71
+
72
+ // Links made, write the policy set object.
73
+ err := contractsGrpObj .Write ()
132
74
if err != nil {
133
75
return err
134
76
}
0 commit comments