forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_source_factory.go
255 lines (201 loc) · 5.86 KB
/
settings_source_factory.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
package infrastructure
import (
"encoding/json"
mapstruc "github.com/mitchellh/mapstructure"
boshplat "github.com/cloudfoundry/bosh-agent/platform"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
)
type Options struct {
Settings SettingsOptions
}
type SettingsOptions struct {
Sources SourceOptionsSlice
UseServerName bool
UseRegistry bool
}
// SourceOptionsSlice is used for unmarshalling different source types
type SourceOptionsSlice []SourceOptions
type SourceOptions interface {
sourceOptionsInterface()
}
type HTTPSourceOptions struct {
URI string
Headers map[string]string
UserDataPath string
InstanceIDPath string
SSHKeysPath string
}
func (o HTTPSourceOptions) sourceOptionsInterface() {}
type ConfigDriveSourceOptions struct {
DiskPaths []string
MetaDataPath string
UserDataPath string
SettingsPath string
}
func (o ConfigDriveSourceOptions) sourceOptionsInterface() {}
type FileSourceOptions struct {
MetaDataPath string
UserDataPath string
SettingsPath string
}
func (o FileSourceOptions) sourceOptionsInterface() {}
type CDROMSourceOptions struct {
FileName string
}
func (o CDROMSourceOptions) sourceOptionsInterface() {}
type InstanceMetadataSourceOptions struct {
URI string
Headers map[string]string
SettingsPath string
}
func (o InstanceMetadataSourceOptions) sourceOptionsInterface() {}
type SettingsSourceFactory struct {
options SettingsOptions
platform boshplat.Platform
logger boshlog.Logger
}
func NewSettingsSourceFactory(
options SettingsOptions,
platform boshplat.Platform,
logger boshlog.Logger,
) SettingsSourceFactory {
return SettingsSourceFactory{
options: options,
platform: platform,
logger: logger,
}
}
func (f SettingsSourceFactory) New() (boshsettings.Source, error) {
if f.options.UseRegistry {
return f.buildWithRegistry()
}
return f.buildWithoutRegistry()
}
func (f SettingsSourceFactory) buildWithRegistry() (boshsettings.Source, error) {
var metadataServices []MetadataService
digDNSResolver := NewDigDNSResolver(f.platform.GetRunner(), f.logger)
resolver := NewRegistryEndpointResolver(digDNSResolver)
for _, opts := range f.options.Sources {
var metadataService MetadataService
switch typedOpts := opts.(type) {
case HTTPSourceOptions:
metadataService = NewHTTPMetadataService(
typedOpts.URI,
typedOpts.Headers,
typedOpts.UserDataPath,
typedOpts.InstanceIDPath,
typedOpts.SSHKeysPath,
resolver,
f.platform,
f.logger,
)
case ConfigDriveSourceOptions:
metadataService = NewConfigDriveMetadataService(
resolver,
f.platform,
typedOpts.DiskPaths,
typedOpts.MetaDataPath,
typedOpts.UserDataPath,
f.logger,
)
case FileSourceOptions:
metadataService = NewFileMetadataService(
typedOpts.MetaDataPath,
typedOpts.UserDataPath,
typedOpts.SettingsPath,
f.platform.GetFs(),
f.logger,
)
case CDROMSourceOptions:
return nil, bosherr.Error("CDROM source is not supported when registry is used")
case InstanceMetadataSourceOptions:
return nil, bosherr.Error("Instance Metadata source is not supported when registry is used")
}
metadataServices = append(metadataServices, metadataService)
}
metadataService := NewMultiSourceMetadataService(metadataServices...)
registryProvider := NewRegistryProvider(metadataService, f.platform, f.options.UseServerName, f.platform.GetFs(), f.logger)
settingsSource := NewComplexSettingsSource(metadataService, registryProvider, f.logger)
return settingsSource, nil
}
func (f SettingsSourceFactory) buildWithoutRegistry() (boshsettings.Source, error) {
var settingsSources []boshsettings.Source
for _, opts := range f.options.Sources {
var settingsSource boshsettings.Source
switch typedOpts := opts.(type) {
case HTTPSourceOptions:
return nil, bosherr.Error("HTTP source is not supported without registry")
case ConfigDriveSourceOptions:
settingsSource = NewConfigDriveSettingsSource(
typedOpts.DiskPaths,
typedOpts.MetaDataPath,
typedOpts.SettingsPath,
f.platform,
f.logger,
)
case FileSourceOptions:
settingsSource = NewFileSettingsSource(
typedOpts.SettingsPath,
f.platform.GetFs(),
f.logger,
)
case CDROMSourceOptions:
settingsSource = NewCDROMSettingsSource(
typedOpts.FileName,
f.platform,
f.logger,
)
case InstanceMetadataSourceOptions:
settingsSource = NewInstanceMetadataSettingsSource(
typedOpts.URI,
typedOpts.Headers,
typedOpts.SettingsPath,
f.platform,
f.logger,
)
}
settingsSources = append(settingsSources, settingsSource)
}
return NewMultiSettingsSource(settingsSources...)
}
func (s *SourceOptionsSlice) UnmarshalJSON(data []byte) error {
var maps []map[string]interface{}
err := json.Unmarshal(data, &maps)
if err != nil {
return bosherr.WrapError(err, "Unmarshalling sources")
}
for _, m := range maps {
if optType, ok := m["Type"]; ok {
var err error
var opts SourceOptions
switch {
case optType == "HTTP":
var o HTTPSourceOptions
err, opts = mapstruc.Decode(m, &o), o
case optType == "InstanceMetadata":
var o InstanceMetadataSourceOptions
err, opts = mapstruc.Decode(m, &o), o
case optType == "ConfigDrive":
var o ConfigDriveSourceOptions
err, opts = mapstruc.Decode(m, &o), o
case optType == "File":
var o FileSourceOptions
err, opts = mapstruc.Decode(m, &o), o
case optType == "CDROM":
var o CDROMSourceOptions
err, opts = mapstruc.Decode(m, &o), o
default:
err = bosherr.Errorf("Unknown source type '%s'", optType)
}
if err != nil {
return bosherr.WrapErrorf(err, "Unmarshalling source type '%s'", optType)
}
*s = append(*s, opts)
} else {
return bosherr.Error("Missing source type")
}
}
return nil
}