forked from juju/description
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remoteapplication.go
322 lines (281 loc) · 9.19 KB
/
remoteapplication.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
// Copyright 2017 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package description
import (
"github.com/juju/errors"
"github.com/juju/names/v5"
"github.com/juju/schema"
)
// RemoteApplication represents an application in another model that
// can participate in a relation in this model.
type RemoteApplication interface {
HasStatus
Tag() names.ApplicationTag
Name() string
OfferUUID() string
URL() string
SourceModelTag() names.ModelTag
IsConsumerProxy() bool
ConsumeVersion() int
Macaroon() string
Endpoints() []RemoteEndpoint
AddEndpoint(RemoteEndpointArgs) RemoteEndpoint
Spaces() []RemoteSpace
AddSpace(RemoteSpaceArgs) RemoteSpace
Bindings() map[string]string
}
type remoteApplications struct {
Version int `yaml:"version"`
RemoteApplications []*remoteApplication `yaml:"remote-applications"`
}
type remoteApplication struct {
Name_ string `yaml:"name"`
OfferUUID_ string `yaml:"offer-uuid"`
URL_ string `yaml:"url"`
SourceModelUUID_ string `yaml:"source-model-uuid"`
ConsumeVersion_ int `yaml:"consume-version,omitempty"`
Macaroon_ string `yaml:"macaroon,omitempty"`
Endpoints_ remoteEndpoints `yaml:"endpoints,omitempty"`
IsConsumerProxy_ bool `yaml:"is-consumer-proxy,omitempty"`
Spaces_ remoteSpaces `yaml:"spaces,omitempty"`
Bindings_ map[string]string `yaml:"bindings,omitempty"`
Status_ *status `yaml:"status,omitempty"`
}
// RemoteApplicationArgs is an argument struct used to add a remote
// application to the Model.
type RemoteApplicationArgs struct {
Tag names.ApplicationTag
OfferUUID string
URL string
SourceModel names.ModelTag
IsConsumerProxy bool
ConsumeVersion int
Macaroon string
Bindings map[string]string
}
func newRemoteApplication(args RemoteApplicationArgs) *remoteApplication {
a := &remoteApplication{
Name_: args.Tag.Id(),
OfferUUID_: args.OfferUUID,
URL_: args.URL,
SourceModelUUID_: args.SourceModel.Id(),
IsConsumerProxy_: args.IsConsumerProxy,
ConsumeVersion_: args.ConsumeVersion,
Macaroon_: args.Macaroon,
Bindings_: args.Bindings,
}
a.setEndpoints(nil)
a.setSpaces(nil)
return a
}
// Tag implements RemoteApplication.
func (a *remoteApplication) Tag() names.ApplicationTag {
return names.NewApplicationTag(a.Name_)
}
// Name implements RemoteApplication.
func (a *remoteApplication) Name() string {
return a.Name_
}
// OfferUUID implements RemoteApplication.
func (a *remoteApplication) OfferUUID() string {
return a.OfferUUID_
}
// URL implements RemoteApplication.
func (a *remoteApplication) URL() string {
return a.URL_
}
// SourceModelTag implements RemoteApplication.
func (a *remoteApplication) SourceModelTag() names.ModelTag {
return names.NewModelTag(a.SourceModelUUID_)
}
// IsConsumerProxy implements RemoteApplication.
func (a *remoteApplication) IsConsumerProxy() bool {
return a.IsConsumerProxy_
}
// ConsumeVersion implements RemoteApplication.
func (a *remoteApplication) ConsumeVersion() int {
return a.ConsumeVersion_
}
// Macaroon (RemoteApplication) returns the macaroon
// that authorises access to the remote application.
func (a *remoteApplication) Macaroon() string {
return a.Macaroon_
}
// Bindings implements RemoteApplication.
func (a *remoteApplication) Bindings() map[string]string {
return a.Bindings_
}
// Status implements RemoteApplication.
func (a *remoteApplication) Status() Status {
// Avoid typed nils.
if a.Status_ == nil {
return nil
}
return a.Status_
}
// SetStatus implements RemoteApplication.
func (a *remoteApplication) SetStatus(args StatusArgs) {
a.Status_ = newStatus(args)
}
// Endpoints implements RemoteApplication.
func (a *remoteApplication) Endpoints() []RemoteEndpoint {
result := make([]RemoteEndpoint, len(a.Endpoints_.Endpoints))
for i, endpoint := range a.Endpoints_.Endpoints {
result[i] = endpoint
}
return result
}
// AddEndpoint implements RemoteApplication.
func (a *remoteApplication) AddEndpoint(args RemoteEndpointArgs) RemoteEndpoint {
ep := newRemoteEndpoint(args)
a.Endpoints_.Endpoints = append(a.Endpoints_.Endpoints, ep)
return ep
}
func (a *remoteApplication) setEndpoints(endpointList []*remoteEndpoint) {
a.Endpoints_ = remoteEndpoints{
Version: 1,
Endpoints: endpointList,
}
}
// Spaces implements RemoteApplication.
func (a *remoteApplication) Spaces() []RemoteSpace {
result := make([]RemoteSpace, len(a.Spaces_.Spaces))
for i, space := range a.Spaces_.Spaces {
result[i] = space
}
return result
}
// AddSpace implements RemoteApplication.
func (a *remoteApplication) AddSpace(args RemoteSpaceArgs) RemoteSpace {
ep := newRemoteSpace(args)
a.Spaces_.Spaces = append(a.Spaces_.Spaces, ep)
return ep
}
func (a *remoteApplication) setSpaces(spaceList []*remoteSpace) {
a.Spaces_ = remoteSpaces{
Version: 1,
Spaces: spaceList,
}
}
func importRemoteApplications(source interface{}) ([]*remoteApplication, error) {
checker := versionedChecker("remote-applications")
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "remote applications version schema check failed")
}
valid := coerced.(map[string]interface{})
version := int(valid["version"].(int64))
getFields, ok := remoteApplicationFieldsFuncs[version]
if !ok {
return nil, errors.NotValidf("version %d", version)
}
sourceList := valid["remote-applications"].([]interface{})
return importRemoteApplicationList(sourceList, schema.FieldMap(getFields()), version)
}
func importRemoteApplicationList(sourceList []interface{}, checker schema.Checker, version int) ([]*remoteApplication, error) {
var result []*remoteApplication
for i, value := range sourceList {
source, ok := value.(map[string]interface{})
if !ok {
return nil, errors.Errorf("unexpected value for remote application %d, %T", i, value)
}
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "remote application %d v%d schema check failed", i, version)
}
valid := coerced.(map[string]interface{})
remoteApp, err := newRemoteApplicationFromValid(valid, version)
if err != nil {
return nil, errors.Annotatef(err, "remote application %d", i)
}
result = append(result, remoteApp)
}
return result, nil
}
var remoteApplicationFieldsFuncs = map[int]fieldsFunc{
1: remoteApplicationV1Fields,
2: remoteApplicationV2Fields,
3: remoteApplicationV3Fields,
}
func newRemoteApplicationFromValid(valid map[string]interface{}, version int) (*remoteApplication, error) {
// From here we know that the map returned from the schema coercion
// contains fields of the right type.
result := &remoteApplication{
Name_: valid["name"].(string),
OfferUUID_: valid["offer-uuid"].(string),
URL_: valid["url"].(string),
SourceModelUUID_: valid["source-model-uuid"].(string),
IsConsumerProxy_: valid["is-consumer-proxy"].(bool),
}
if mac, ok := valid["macaroon"]; ok {
result.Macaroon_ = mac.(string)
}
if rawStatus, ok := valid["status"]; ok && rawStatus != nil {
status, err := importStatus(rawStatus.(map[string]interface{}))
if err != nil {
return nil, errors.Trace(err)
}
result.Status_ = status
}
if rawEndpoints, ok := valid["endpoints"]; ok {
endpointsMap := rawEndpoints.(map[string]interface{})
endpoints, err := importRemoteEndpoints(endpointsMap)
if err != nil {
return nil, errors.Trace(err)
}
result.setEndpoints(endpoints)
}
if rawSpaces, ok := valid["spaces"]; ok {
spacesMap := rawSpaces.(map[string]interface{})
spaces, err := importRemoteSpaces(spacesMap)
if err != nil {
return nil, errors.Trace(err)
}
result.setSpaces(spaces)
}
if bindings, ok := valid["bindings"]; ok {
result.Bindings_ = convertToStringMap(bindings)
}
if version < 3 {
result.ConsumeVersion_ = 1
} else {
v, ok := valid["consume-version"].(int64)
if ok {
result.ConsumeVersion_ = int(v)
}
}
return result, nil
}
func remoteApplicationV1Fields() (schema.Fields, schema.Defaults) {
fields := schema.Fields{
"name": schema.String(),
"offer-uuid": schema.String(),
"url": schema.String(),
"source-model-uuid": schema.String(),
"status": schema.StringMap(schema.Any()),
"endpoints": schema.StringMap(schema.Any()),
"is-consumer-proxy": schema.Bool(),
"spaces": schema.StringMap(schema.Any()),
"bindings": schema.StringMap(schema.String()),
}
defaults := schema.Defaults{
"endpoints": schema.Omit,
"spaces": schema.Omit,
"bindings": schema.Omit,
"status": schema.Omit,
"is-consumer-proxy": false,
}
return fields, defaults
}
func remoteApplicationV2Fields() (schema.Fields, schema.Defaults) {
fields, defaults := remoteApplicationV1Fields()
fields["macaroon"] = schema.String()
defaults["macaroon"] = schema.Omit
return fields, defaults
}
func remoteApplicationV3Fields() (schema.Fields, schema.Defaults) {
fields, defaults := remoteApplicationV2Fields()
fields["consume-version"] = schema.Int()
defaults["consume-version"] = 0
return fields, defaults
}