forked from juju/description
-
Notifications
You must be signed in to change notification settings - Fork 0
/
applicationoffer.go
215 lines (179 loc) · 6.94 KB
/
applicationoffer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package description
import (
"github.com/juju/errors"
"github.com/juju/schema"
)
// ApplicationOffer represents an offer for a an application's endpoints.
type ApplicationOffer interface {
OfferUUID() string
OfferName() string
Endpoints() map[string]string
ACL() map[string]string
ApplicationName() string
ApplicationDescription() string
}
var _ ApplicationOffer = (*applicationOffer)(nil)
type applicationOffers struct {
Version int `yaml:"version"`
Offers []*applicationOffer `yaml:"offers,omitempty"`
}
type applicationOffer struct {
OfferUUID_ string `yaml:"offer-uuid,omitempty"`
OfferName_ string `yaml:"offer-name"`
Endpoints_ map[string]string `yaml:"endpoints,omitempty"`
ACL_ map[string]string `yaml:"acl,omitempty"`
ApplicationName_ string `yaml:"application-name,omitempty"`
ApplicationDescription_ string `yaml:"application-description,omitempty"`
}
// OfferUUID returns the underlying offer UUID.
// The offer UUID is required when migrating a CMR model between controllers.
func (o *applicationOffer) OfferUUID() string {
return o.OfferUUID_
}
// OfferName implements ApplicationOffer.
func (o *applicationOffer) OfferName() string {
return o.OfferName_
}
// Endpoints returns the representation of both the internal and external
// endpoints. This is useful for CMR migration, where we need to match internal
// offers when importing.
func (o *applicationOffer) Endpoints() map[string]string {
return o.Endpoints_
}
// ACL implements ApplicationOffer. It returns a map were keys are users and
// values are access permissions.
func (o *applicationOffer) ACL() map[string]string {
return o.ACL_
}
// ApplicationName returns the ApplicationName for CMR model migration to happen.
func (o *applicationOffer) ApplicationName() string {
return o.ApplicationName_
}
// ApplicationDescription returns the ApplicationDescription for CMR model migration to happen.
func (o *applicationOffer) ApplicationDescription() string {
return o.ApplicationDescription_
}
// ApplicationOfferArgs is an argument struct used to instanciate a new
// applicationOffer instance that implements ApplicationOffer.
type ApplicationOfferArgs struct {
OfferUUID string
OfferName string
Endpoints map[string]string
ACL map[string]string
ApplicationName string
ApplicationDescription string
}
func newApplicationOffer(args ApplicationOfferArgs) *applicationOffer {
return &applicationOffer{
OfferUUID_: args.OfferUUID,
OfferName_: args.OfferName,
Endpoints_: args.Endpoints,
ACL_: args.ACL,
ApplicationName_: args.ApplicationName,
ApplicationDescription_: args.ApplicationDescription,
}
}
func importApplicationOffers(source map[string]interface{}) ([]*applicationOffer, error) {
checker := versionedChecker("offers")
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "offers version schema check failed")
}
valid := coerced.(map[string]interface{})
version := int(valid["version"].(int64))
importFunc, ok := applicationOfferDeserializationFuncs[version]
if !ok {
return nil, errors.NotValidf("version %d", version)
}
sourceList := valid["offers"].([]interface{})
return importApplicationOfferList(sourceList, importFunc)
}
func importApplicationOfferList(sourceList []interface{}, importFunc applicationOfferDeserializationFunc) ([]*applicationOffer, error) {
result := make([]*applicationOffer, 0, len(sourceList))
for i, value := range sourceList {
source, ok := value.(map[string]interface{})
if !ok {
return nil, errors.Errorf("unexpected value for application offer %d, %T", i, value)
}
offer, err := importFunc(source)
if err != nil {
return nil, errors.Annotatef(err, "application offer %d", i)
}
result = append(result, offer)
}
return result, nil
}
type applicationOfferDeserializationFunc func(interface{}) (*applicationOffer, error)
var applicationOfferDeserializationFuncs = map[int]applicationOfferDeserializationFunc{
1: importApplicationOfferV1,
2: importApplicationOfferV2,
}
func applicationOfferV1Fields() (schema.Fields, schema.Defaults) {
fields := schema.Fields{
"offer-name": schema.String(),
"endpoints": schema.List(schema.String()),
"acl": schema.Map(schema.String(), schema.String()),
}
return fields, schema.Defaults{}
}
func applicationOfferV2Fields() (schema.Fields, schema.Defaults) {
fields, defaults := applicationOfferV1Fields()
fields["offer-uuid"] = schema.String()
fields["application-name"] = schema.String()
fields["application-description"] = schema.String()
fields["endpoints"] = schema.Map(schema.String(), schema.String())
defaults["application-description"] = schema.Omit
return fields, defaults
}
func importApplicationOffer(fields schema.Fields, defaults schema.Defaults, importVersion int, source interface{}) (*applicationOffer, error) {
checker := schema.FieldMap(fields, defaults)
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "application offer v%d schema check failed", importVersion)
}
valid := coerced.(map[string]interface{})
validACL := valid["acl"].(map[interface{}]interface{})
aclMap := make(map[string]string, len(validACL))
for user, access := range validACL {
aclMap[user.(string)] = access.(string)
}
offer := &applicationOffer{
OfferName_: valid["offer-name"].(string),
ACL_: aclMap,
}
// Manage how we handle endpoints.
if importVersion == 1 {
// When importing version 1 of the description, we should just treat
// endpoints as a slice string.
validEndpoints := valid["endpoints"].([]interface{})
endpoints := make(map[string]string, len(validEndpoints))
for _, ep := range validEndpoints {
endpoints[ep.(string)] = ep.(string)
}
offer.Endpoints_ = endpoints
}
if importVersion >= 2 {
offer.OfferUUID_ = valid["offer-uuid"].(string)
offer.ApplicationName_ = valid["application-name"].(string)
offer.ApplicationDescription_ = valid["application-description"].(string)
// When importing version 2 or greater of the description, we should
// ensure that we use Endpoints as a map.
validEndpoints := valid["endpoints"].(map[interface{}]interface{})
endpoints := make(map[string]string, len(validEndpoints))
for k, ep := range validEndpoints {
endpoints[k.(string)] = ep.(string)
}
offer.Endpoints_ = endpoints
}
return offer, nil
}
func importApplicationOfferV1(source interface{}) (*applicationOffer, error) {
fields, defaults := applicationOfferV1Fields()
return importApplicationOffer(fields, defaults, 1, source)
}
func importApplicationOfferV2(source interface{}) (*applicationOffer, error) {
fields, defaults := applicationOfferV2Fields()
return importApplicationOffer(fields, defaults, 2, source)
}