-
Notifications
You must be signed in to change notification settings - Fork 72
/
use.go
144 lines (118 loc) · 4.09 KB
/
use.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
package use
import (
"context"
"fmt"
"github.com/redhat-developer/app-services-cli/pkg/core/config"
"github.com/redhat-developer/app-services-cli/pkg/core/ioutil/icon"
"github.com/redhat-developer/app-services-cli/pkg/core/ioutil/iostreams"
"github.com/redhat-developer/app-services-cli/pkg/core/localize"
"github.com/redhat-developer/app-services-cli/pkg/core/logging"
"github.com/redhat-developer/app-services-cli/pkg/core/servicecontext"
"github.com/redhat-developer/app-services-cli/pkg/shared/connection"
"github.com/redhat-developer/app-services-cli/pkg/shared/contextutil"
"github.com/redhat-developer/app-services-cli/pkg/shared/factory"
"github.com/redhat-developer/app-services-cli/pkg/shared/serviceregistryutil"
srsmgmtv1 "github.com/redhat-developer/app-services-sdk-core/app-services-sdk-go/registrymgmt/apiv1/client"
"github.com/spf13/cobra"
)
type options struct {
id string
name string
interactive bool
IO *iostreams.IOStreams
Config config.IConfig
Connection factory.ConnectionFunc
Logger logging.Logger
localizer localize.Localizer
Context context.Context
ServiceContext servicecontext.IContext
}
func NewUseCommand(f *factory.Factory) *cobra.Command {
opts := &options{
Config: f.Config,
Connection: f.Connection,
Logger: f.Logger,
IO: f.IOStreams,
localizer: f.Localizer,
Context: f.Context,
ServiceContext: f.ServiceContext,
}
cmd := &cobra.Command{
Use: "use",
Short: f.Localizer.MustLocalize("registry.cmd.use.shortDescription"),
Long: f.Localizer.MustLocalize("registry.cmd.use.longDescription"),
Example: f.Localizer.MustLocalize("registry.cmd.use.example"),
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
if opts.id == "" && opts.name == "" {
if !opts.IO.CanPrompt() {
return opts.localizer.MustLocalizeError("registry.use.error.idOrNameRequired")
}
opts.interactive = true
}
if opts.name != "" && opts.id != "" {
return opts.localizer.MustLocalizeError("service.error.idAndNameCannotBeUsed")
}
return runUse(opts)
},
}
cmd.Flags().StringVar(&opts.id, "id", "", opts.localizer.MustLocalize("registry.use.flag.id"))
cmd.Flags().StringVar(&opts.name, "name", "", opts.localizer.MustLocalize("registry.use.flag.name"))
return cmd
}
func runUse(opts *options) error {
svcContext, err := opts.ServiceContext.Load()
if err != nil {
return err
}
currCtx, err := contextutil.GetCurrentContext(svcContext, opts.localizer)
if err != nil {
return err
}
conn, err := opts.Connection()
if err != nil {
return err
}
if opts.interactive {
// run the use command interactively
err = runInteractivePrompt(opts, &conn)
if err != nil {
return err
}
// no service was selected, exit program
if opts.name == "" {
return nil
}
}
api := conn.API()
var registry *srsmgmtv1.Registry
if opts.name != "" {
registry, _, err = serviceregistryutil.GetServiceRegistryByName(opts.Context, api.ServiceRegistryMgmt(), opts.name)
if err != nil {
return err
}
} else {
registry, _, err = serviceregistryutil.GetServiceRegistryByID(opts.Context, api.ServiceRegistryMgmt(), opts.id)
if err != nil {
return err
}
}
nameTmplEntry := localize.NewEntry("Name", registry.GetName())
currCtx.ServiceRegistryID = registry.GetId()
svcContext.Contexts[svcContext.CurrentContext] = *currCtx
if err := opts.ServiceContext.Save(svcContext); err != nil {
saveErrMsg := opts.localizer.MustLocalize("registry.use.error.saveError", nameTmplEntry)
return fmt.Errorf("%v: %w", saveErrMsg, err)
}
opts.Logger.Info(icon.SuccessPrefix(), opts.localizer.MustLocalize("registry.use.log.info.useSuccess", nameTmplEntry))
return nil
}
func runInteractivePrompt(opts *options, conn *connection.Connection) error {
opts.Logger.Debug(opts.localizer.MustLocalize("common.log.debug.startingInteractivePrompt"))
selectedRegistry, err := serviceregistryutil.InteractiveSelect(opts.Context, *conn, opts.Logger)
if err != nil {
return err
}
opts.name = selectedRegistry.GetName()
return nil
}