-
Notifications
You must be signed in to change notification settings - Fork 153
/
capi.go
284 lines (229 loc) · 7.22 KB
/
capi.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
package capi
import (
"fmt"
"io"
"strings"
)
// TemplatesRetriever defines the interface that adapters
// need to implement in order to return an array of templates.
type TemplatesRetriever interface {
Source() string
RetrieveTemplates() ([]Template, error)
RetrieveTemplatesByProvider(provider string) ([]Template, error)
RetrieveTemplateParameters(name string) ([]TemplateParameter, error)
RetrieveTemplateProfiles(name string) ([]Profile, error)
}
// TemplateRenderer defines the interface that adapters
// need to implement in order to render a template populated
// with parameter values.
type TemplateRenderer interface {
RenderTemplateWithParameters(name string, parameters map[string]string, creds Credentials) (string, error)
}
// TemplatePullRequester defines the interface that adapters
// need to implement in order to create a pull request from
// a CAPI template. Implementers should return the web URI of
// the pull request.
type TemplatePullRequester interface {
CreatePullRequestFromTemplate(params CreatePullRequestFromTemplateParams) (string, error)
}
// CredentialsRetriever defines the interface that adapters
// need to implement in order to retrieve CAPI credentials.
type CredentialsRetriever interface {
Source() string
RetrieveCredentials() ([]Credentials, error)
}
type Template struct {
Name string
Description string
Provider string
Error string
}
type TemplateParameter struct {
Name string
Description string
Required bool
Options []string
}
type Credentials struct {
Group string `json:"group"`
Version string `json:"version"`
Kind string `json:"kind"`
Name string `json:"name"`
Namespace string `json:"namespace"`
}
type ProfileValues struct {
Name string `json:"name"`
Version string `json:"version"`
Values string `json:"values"`
}
type CreatePullRequestFromTemplateParams struct {
GitProviderToken string
TemplateName string
ParameterValues map[string]string
RepositoryURL string
HeadBranch string
BaseBranch string
Title string
Description string
CommitMessage string
Credentials Credentials
ProfileValues []ProfileValues
}
type Profile struct {
Name string
Home string
Sources []string
Description string
Keywords []string
Maintainers []Maintainer
Icon string
Annotations map[string]string
KubeVersion string
HelmRepository HelmRepository
AvailableVersions []string
}
type HelmRepository struct {
Name string
Namespace string
}
type Maintainer struct {
Name string
Email string
Url string
}
// GetTemplates uses a TemplatesRetriever adapter to show
// a list of templates to the console.
func GetTemplates(r TemplatesRetriever, w io.Writer) error {
ts, err := r.RetrieveTemplates()
if err != nil {
return fmt.Errorf("unable to retrieve templates from %q: %w", r.Source(), err)
}
if len(ts) > 0 {
fmt.Fprintf(w, "NAME\tPROVIDER\tDESCRIPTION\tERROR\n")
for _, t := range ts {
fmt.Fprintf(w, "%s", t.Name)
fmt.Fprintf(w, "\t%s", t.Provider)
fmt.Fprintf(w, "\t%s", t.Description)
fmt.Fprintf(w, "\t%s", t.Error)
fmt.Fprintln(w, "")
}
return nil
}
fmt.Fprintf(w, "No templates were found.\n")
return nil
}
// GetTemplatesByProvider uses a TemplatesRetriever adapter to show
// a list of templates for a given provider to the console.
func GetTemplatesByProvider(provider string, r TemplatesRetriever, w io.Writer) error {
ts, err := r.RetrieveTemplatesByProvider(provider)
if err != nil {
return fmt.Errorf("unable to retrieve templates from %q: %w", r.Source(), err)
}
if len(ts) > 0 {
fmt.Fprintf(w, "NAME\tPROVIDER\tDESCRIPTION\tERROR\n")
for _, t := range ts {
fmt.Fprintf(w, "%s", t.Name)
fmt.Fprintf(w, "\t%s", t.Provider)
fmt.Fprintf(w, "\t%s", t.Description)
fmt.Fprintf(w, "\t%s", t.Error)
fmt.Fprintln(w, "")
}
return nil
}
fmt.Fprintf(w, "No templates were found for provider %q.\n", provider)
return nil
}
// GetTemplateParameters uses a TemplatesRetriever adapter
// to show a list of parameters for a given template.
func GetTemplateParameters(name string, r TemplatesRetriever, w io.Writer) error {
ps, err := r.RetrieveTemplateParameters(name)
if err != nil {
return fmt.Errorf("unable to retrieve parameters for template %q from %q: %w", name, r.Source(), err)
}
if len(ps) > 0 {
fmt.Fprintf(w, "NAME\tREQUIRED\tDESCRIPTION\tOPTIONS\n")
for _, t := range ps {
fmt.Fprintf(w, "%s", t.Name)
fmt.Fprintf(w, "\t%t", t.Required)
if t.Description != "" {
fmt.Fprintf(w, "\t%s", t.Description)
}
if t.Options != nil {
optionsStr := strings.Join(t.Options, ", ")
fmt.Fprintf(w, "\t%s", optionsStr)
}
fmt.Fprintln(w, "")
}
return nil
}
fmt.Fprintf(w, "No template parameters were found.\n")
return nil
}
// RenderTemplate uses a TemplateRenderer adapter to show
// a template populated with parameter values.
func RenderTemplateWithParameters(name string, parameters map[string]string, creds Credentials, r TemplateRenderer, w io.Writer) error {
t, err := r.RenderTemplateWithParameters(name, parameters, creds)
if err != nil {
return fmt.Errorf("unable to render template %q: %w", name, err)
}
if t != "" {
fmt.Fprint(w, t)
return nil
}
fmt.Fprintf(w, "No template was found.\n")
return nil
}
// CreatePullRequestFromTemplate uses a TemplatePullRequester
// adapter to create a pull request from a CAPI template.
func CreatePullRequestFromTemplate(params CreatePullRequestFromTemplateParams, r TemplatePullRequester, w io.Writer) error {
res, err := r.CreatePullRequestFromTemplate(params)
if err != nil {
return fmt.Errorf("unable to create pull request: %w", err)
}
fmt.Fprintf(w, "Created pull request: %s\n", res)
return nil
}
// GetCredentials uses a CredentialsRetriever adapter to show
// a list of CAPI credentials.
func GetCredentials(r CredentialsRetriever, w io.Writer) error {
cs, err := r.RetrieveCredentials()
if err != nil {
return fmt.Errorf("unable to retrieve credentials from %q: %w", r.Source(), err)
}
if len(cs) > 0 {
fmt.Fprintf(w, "NAME\tINFRASTRUCTURE PROVIDER\n")
for _, c := range cs {
fmt.Fprintf(w, "%s", c.Name)
// Extract the infra provider name from ClusterKind
provider := c.Kind[:strings.Index(c.Kind, "Cluster")]
fmt.Fprintf(w, "\t%s", provider)
fmt.Fprintln(w, "")
}
return nil
}
fmt.Fprintf(w, "No credentials were found.\n")
return nil
}
// GetTemplateProfiles uses a TemplatesRetriever adapter
// to show a list of profiles for a given template.
func GetTemplateProfiles(name string, r TemplatesRetriever, w io.Writer) error {
ps, err := r.RetrieveTemplateProfiles(name)
if err != nil {
return fmt.Errorf("unable to retrieve profiles for template %q from %q: %w", name, r.Source(), err)
}
if len(ps) > 0 {
fmt.Fprintf(w, "NAME\tLATEST_VERSIONS\n")
for _, p := range ps {
if len(p.AvailableVersions) > 5 {
p.AvailableVersions = p.AvailableVersions[len(p.AvailableVersions)-5:]
}
latestVersions := strings.Join(p.AvailableVersions, ", ")
fmt.Fprintf(w, "%s", p.Name)
fmt.Fprintf(w, "\t%s", latestVersions)
fmt.Fprintln(w, "")
}
return nil
}
fmt.Fprintf(w, "No template profiles were found.\n")
return nil
}