This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 192
/
plugin_manager.go
475 lines (404 loc) · 13.9 KB
/
plugin_manager.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
// Copyright 2021 VMware, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package command
import (
"fmt"
"io"
"path/filepath"
"sort"
"strings"
"github.com/fatih/color"
"github.com/vmware-tanzu/tanzu-framework/cli/core/pkg/common"
cliv1alpha1 "github.com/vmware-tanzu/tanzu-framework/apis/cli/v1alpha1"
"github.com/aunum/log"
"github.com/pkg/errors"
"gopkg.in/yaml.v2"
"github.com/spf13/cobra"
"github.com/vmware-tanzu/tanzu-framework/cli/core/pkg/cli"
cliconfig "github.com/vmware-tanzu/tanzu-framework/cli/core/pkg/config"
"github.com/vmware-tanzu/tanzu-framework/cli/core/pkg/plugin"
"github.com/vmware-tanzu/tanzu-framework/cli/core/pkg/pluginmanager"
cliapi "github.com/vmware-tanzu/tanzu-framework/cli/runtime/apis/cli/v1alpha1"
"github.com/vmware-tanzu/tanzu-framework/cli/runtime/command"
component "github.com/vmware-tanzu/tanzu-framework/cli/runtime/component"
"github.com/vmware-tanzu/tanzu-framework/cli/runtime/config"
)
var (
local string
version string
forceDelete bool
targetStr string
)
func init() {
pluginCmd.SetUsageFunc(cli.SubCmdUsageFunc)
pluginCmd.AddCommand(
listPluginCmd,
installPluginCmd,
upgradePluginCmd,
describePluginCmd,
deletePluginCmd,
repoCmd,
cleanPluginCmd,
syncPluginCmd,
discoverySourceCmd,
)
listPluginCmd.Flags().StringVarP(&outputFormat, "output", "o", "", "Output format (yaml|json|table)")
listPluginCmd.Flags().StringVarP(&local, "local", "l", "", "path to local discovery/distribution source")
installPluginCmd.Flags().StringVarP(&local, "local", "l", "", "path to local discovery/distribution source")
installPluginCmd.Flags().StringVarP(&version, "version", "v", cli.VersionLatest, "version of the plugin")
deletePluginCmd.Flags().BoolVarP(&forceDelete, "yes", "y", false, "delete the plugin without asking for confirmation")
if config.IsFeatureActivated(cliconfig.FeatureContextCommand) {
installPluginCmd.Flags().StringVarP(&targetStr, "target", "t", "", "target of the plugin (kubernetes[k8s]/mission-control[tmc])")
upgradePluginCmd.Flags().StringVarP(&targetStr, "target", "t", "", "target of the plugin (kubernetes[k8s]/mission-control[tmc])")
deletePluginCmd.Flags().StringVarP(&targetStr, "target", "t", "", "target of the plugin (kubernetes[k8s]/mission-control[tmc])")
describePluginCmd.Flags().StringVarP(&targetStr, "target", "t", "", "target of the plugin (kubernetes[k8s]/mission-control[tmc])")
}
command.DeprecateCommand(repoCmd, "")
}
var pluginCmd = &cobra.Command{
Use: "plugin",
Short: "Manage CLI plugins",
Annotations: map[string]string{
"group": string(cliapi.SystemCmdGroup),
},
}
var listPluginCmd = &cobra.Command{
Use: "list",
Short: "List available plugins",
RunE: func(cmd *cobra.Command, args []string) error {
var err error
var availablePlugins []plugin.Discovered
if local != "" {
// get absolute local path
local, err = filepath.Abs(local)
if err != nil {
return err
}
availablePlugins, err = pluginmanager.AvailablePluginsFromLocalSource(local)
} else {
availablePlugins, err = pluginmanager.AvailablePlugins()
}
sort.Sort(plugin.DiscoveredSorter(availablePlugins))
if err != nil {
return err
}
if config.IsFeatureActivated(cliconfig.FeatureContextCommand) && (outputFormat == "" || outputFormat == string(component.TableOutputType)) {
displayPluginListOutputSplitViewContext(availablePlugins, cmd.OutOrStdout())
} else {
displayPluginListOutputListView(availablePlugins, cmd.OutOrStdout())
}
return nil
},
}
var describePluginCmd = &cobra.Command{
Use: "describe [name]",
Short: "Describe a plugin",
RunE: func(cmd *cobra.Command, args []string) (err error) {
if len(args) != 1 {
return fmt.Errorf("must provide plugin name as positional argument")
}
pluginName := args[0]
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
if !cliv1alpha1.IsValidTarget(targetStr) {
return errors.New("invalid target specified. Please specify correct value of `--target` or `-t` flag from 'kubernetes/k8s/mission-control/tmc'")
}
pd, err := pluginmanager.DescribePlugin(pluginName, getTarget())
if err != nil {
return err
}
b, err := yaml.Marshal(pd)
if err != nil {
return errors.Wrap(err, "could not marshal plugin")
}
fmt.Println(string(b))
return nil
}
repos := getRepositories()
repo, err := repos.Find(pluginName)
if err != nil {
return err
}
plugin, err := repo.Describe(pluginName)
if err != nil {
return err
}
b, err := yaml.Marshal(plugin)
if err != nil {
return errors.Wrap(err, "could not marshal plugin")
}
fmt.Println(string(b))
return
},
}
var installPluginCmd = &cobra.Command{
Use: "install [name]",
Short: "Install a plugin",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
var err error
pluginName := args[0]
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
if !cliv1alpha1.IsValidTarget(targetStr) {
return errors.New("invalid target specified. Please specify correct value of `--target` or `-t` flag from 'kubernetes/k8s/mission-control/tmc'")
}
// Invoke install plugin from local source if local files are provided
if local != "" {
// get absolute local path
local, err = filepath.Abs(local)
if err != nil {
return err
}
err = pluginmanager.InstallPluginsFromLocalSource(pluginName, version, getTarget(), local, false)
if err != nil {
return err
}
if pluginName == cli.AllPlugins {
log.Successf("successfully installed all plugins")
} else {
log.Successf("successfully installed '%s' plugin", pluginName)
}
return nil
}
// Invoke plugin sync if install all plugins is mentioned
if pluginName == cli.AllPlugins {
err = pluginmanager.SyncPlugins()
if err != nil {
return err
}
log.Successf("successfully installed all plugins")
return nil
}
pluginVersion := version
if pluginVersion == cli.VersionLatest {
pluginVersion, err = pluginmanager.GetRecommendedVersionOfPlugin(pluginName, getTarget())
if err != nil {
return err
}
}
err = pluginmanager.InstallPlugin(pluginName, pluginVersion, getTarget())
if err != nil {
return err
}
log.Successf("successfully installed '%s' plugin", pluginName)
return nil
}
repos := getRepositories()
if pluginName == cli.AllPlugins {
return cli.InstallAllMulti(repos)
}
repo, err := repos.Find(pluginName)
if err != nil {
return err
}
plugin, err := repo.Describe(pluginName)
if err != nil {
return err
}
if version == cli.VersionLatest {
version = plugin.FindVersion(repo.VersionSelector())
}
err = cli.InstallPlugin(pluginName, version, repo)
if err != nil {
return err
}
log.Successf("successfully installed %s", pluginName)
return nil
},
}
var upgradePluginCmd = &cobra.Command{
Use: "upgrade [name]",
Short: "Upgrade a plugin",
RunE: func(cmd *cobra.Command, args []string) (err error) {
if len(args) != 1 {
return fmt.Errorf("must provide plugin name as positional argument")
}
pluginName := args[0]
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
if !cliv1alpha1.IsValidTarget(targetStr) {
return errors.New("invalid target specified. Please specify correct value of `--target` or `-t` flag from 'kubernetes/k8s/mission-control/tmc'")
}
pluginVersion, err := pluginmanager.GetRecommendedVersionOfPlugin(pluginName, getTarget())
if err != nil {
return err
}
err = pluginmanager.UpgradePlugin(pluginName, pluginVersion, getTarget())
if err != nil {
return err
}
log.Successf("successfully upgraded plugin '%s' to version '%s'", pluginName, pluginVersion)
return nil
}
repos := getRepositories()
repo, err := repos.Find(pluginName)
if err != nil {
return err
}
plugin, err := repo.Describe(pluginName)
if err != nil {
return err
}
versionSelector := repo.VersionSelector()
err = cli.UpgradePlugin(pluginName, plugin.FindVersion(versionSelector), repo)
if err != nil {
return err
}
log.Successf("successfully upgraded plugin %s", pluginName)
return nil
},
}
var deletePluginCmd = &cobra.Command{
Use: "delete [name]",
Short: "Delete a plugin",
RunE: func(cmd *cobra.Command, args []string) (err error) {
if len(args) != 1 {
return fmt.Errorf("must provide plugin name as positional argument")
}
pluginName := args[0]
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
if !cliv1alpha1.IsValidTarget(targetStr) {
return errors.New("invalid target specified. Please specify correct value of `--target` or `-t` flag from 'kubernetes/k8s/mission-control/tmc'")
}
deletePluginOptions := pluginmanager.DeletePluginOptions{
PluginName: pluginName,
Target: getTarget(),
ForceDelete: forceDelete,
}
err = pluginmanager.DeletePlugin(deletePluginOptions)
if err != nil {
return err
}
log.Successf("successfully deleted plugin '%s'", pluginName)
return nil
}
err = cli.DeletePlugin(pluginName)
if err != nil {
return err
}
log.Successf("successfully deleted plugin %s", pluginName)
return nil
},
}
var cleanPluginCmd = &cobra.Command{
Use: "clean",
Short: "Clean the plugins",
RunE: func(cmd *cobra.Command, args []string) (err error) {
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
err = pluginmanager.Clean()
if err != nil {
return err
}
log.Success("successfully cleaned up all plugins")
return nil
}
err = cli.Clean()
if err != nil {
return err
}
log.Success("successfully cleaned up all plugins")
return nil
},
}
var syncPluginCmd = &cobra.Command{
Use: "sync",
Short: "Sync the plugins",
RunE: func(cmd *cobra.Command, args []string) (err error) {
if config.IsFeatureActivated(cliconfig.FeatureContextAwareCLIForPlugins) {
err = pluginmanager.SyncPlugins()
if err != nil {
return err
}
log.Success("Done")
return nil
}
return errors.Errorf("command is only applicable if `%s` feature is enabled", cliconfig.FeatureContextAwareCLIForPlugins)
},
}
func getRepositories() *cli.MultiRepo {
cfg, err := config.GetClientConfig()
if err != nil {
log.Fatal(err)
}
if local != "" {
vs := cli.LoadVersionSelector(cfg.ClientOptions.CLI.UnstableVersionSelector)
opts := []cli.Option{
cli.WithVersionSelector(vs),
}
m := cli.NewMultiRepo()
n := filepath.Base(local)
r := cli.NewLocalRepository(n, local, opts...)
m.AddRepository(r)
return m
}
return cli.NewMultiRepo(cli.LoadRepositories(cfg)...)
}
// getInstalledElseAvailablePluginVersion return installed plugin version if plugin is installed
// if not installed it returns available recommanded plugin version
func getInstalledElseAvailablePluginVersion(p *plugin.Discovered) string {
installedOrAvailableVersion := p.InstalledVersion
if installedOrAvailableVersion == "" {
installedOrAvailableVersion = p.RecommendedVersion
}
return installedOrAvailableVersion
}
func displayPluginListOutputListView(availablePlugins []plugin.Discovered, writer io.Writer) {
var data [][]string
var output component.OutputWriter
for index := range availablePlugins {
data = append(data, []string{availablePlugins[index].Name, availablePlugins[index].Description, availablePlugins[index].Scope,
availablePlugins[index].Source, getInstalledElseAvailablePluginVersion(&availablePlugins[index]), availablePlugins[index].Status})
}
output = component.NewOutputWriter(writer, outputFormat, "Name", "Description", "Scope", "Discovery", "Version", "Status")
for _, row := range data {
vals := make([]interface{}, len(row))
for i, val := range row {
vals[i] = val
}
output.AddRow(vals...)
}
output.Render()
}
func displayPluginListOutputSplitViewContext(availablePlugins []plugin.Discovered, writer io.Writer) {
var dataStandalone [][]string
var outputStandalone component.OutputWriter
dataContext := make(map[string][][]string)
outputContext := make(map[string]component.OutputWriter)
outputStandalone = component.NewOutputWriter(writer, outputFormat, "Name", "Description", "Target", "Discovery", "Version", "Status")
for index := range availablePlugins {
if availablePlugins[index].Scope == common.PluginScopeStandalone {
newRow := []string{availablePlugins[index].Name, availablePlugins[index].Description, string(availablePlugins[index].Target),
availablePlugins[index].Source, getInstalledElseAvailablePluginVersion(&availablePlugins[index]), availablePlugins[index].Status}
dataStandalone = append(dataStandalone, newRow)
} else {
newRow := []string{availablePlugins[index].Name, availablePlugins[index].Description, string(availablePlugins[index].Target),
getInstalledElseAvailablePluginVersion(&availablePlugins[index]), availablePlugins[index].Status}
outputContext[availablePlugins[index].ContextName] = component.NewOutputWriter(writer, outputFormat, "Name", "Description", "Target", "Version", "Status")
data := dataContext[availablePlugins[index].ContextName]
data = append(data, newRow)
dataContext[availablePlugins[index].ContextName] = data
}
}
addDataToOutputWriter := func(output component.OutputWriter, data [][]string) {
for _, row := range data {
vals := make([]interface{}, len(row))
for i, val := range row {
vals[i] = val
}
output.AddRow(vals...)
}
}
cyanBold := color.New(color.FgCyan).Add(color.Bold)
cyanBoldItalic := color.New(color.FgCyan).Add(color.Bold, color.Italic)
_, _ = cyanBold.Println("Standalone Plugins")
addDataToOutputWriter(outputStandalone, dataStandalone)
outputStandalone.Render()
for context, writer := range outputContext {
fmt.Println("")
_, _ = cyanBold.Println("Plugins from Context: ", cyanBoldItalic.Sprintf(context))
data := dataContext[context]
addDataToOutputWriter(writer, data)
writer.Render()
}
}
func getTarget() cliv1alpha1.Target {
return cliv1alpha1.StringToTarget(strings.ToLower(targetStr))
}