-
Notifications
You must be signed in to change notification settings - Fork 72
/
create.go
110 lines (85 loc) · 2.8 KB
/
create.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
package create
import (
"context"
"github.com/redhat-developer/app-services-cli/pkg/cmd/context/contextcmdutil"
"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/contextutil"
"github.com/redhat-developer/app-services-cli/pkg/shared/factory"
"github.com/spf13/cobra"
)
type options struct {
IO *iostreams.IOStreams
Logger logging.Logger
Connection factory.ConnectionFunc
localizer localize.Localizer
Context context.Context
ServiceContext servicecontext.IContext
name string
}
// NewCreateCommand creates a new command to create contexts
func NewCreateCommand(f *factory.Factory) *cobra.Command {
opts := &options{
Connection: f.Connection,
IO: f.IOStreams,
Logger: f.Logger,
localizer: f.Localizer,
ServiceContext: f.ServiceContext,
}
cmd := &cobra.Command{
Use: "create",
Short: f.Localizer.MustLocalize("context.create.cmd.shortDescription"),
Long: f.Localizer.MustLocalize("context.create.cmd.longDescription"),
Example: f.Localizer.MustLocalize("context.create.cmd.example"),
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return runCreate(opts)
},
}
flags := contextcmdutil.NewFlagSet(cmd, f)
flags.StringVar(
&opts.name,
"name",
"",
opts.localizer.MustLocalize("context.common.flag.name"),
)
return cmd
}
func runCreate(opts *options) error {
svcContext, err := opts.ServiceContext.Load()
if err != nil {
return err
}
profileValidator := &contextcmdutil.Validator{
Localizer: opts.localizer,
SvcContext: svcContext,
}
svcContextsMap := svcContext.Contexts
if svcContextsMap == nil {
svcContextsMap = make(map[string]servicecontext.ServiceConfig)
}
err = profileValidator.ValidateName(opts.name)
if err != nil {
return err
}
err = profileValidator.ValidateNameIsAvailable(opts.name)
if err != nil {
return err
}
context, _ := contextutil.GetContext(svcContext, opts.localizer, opts.name)
if context != nil {
return opts.localizer.MustLocalizeError("context.create.log.alreadyExists", localize.NewEntry("Name", opts.name))
}
svcContextsMap[opts.name] = servicecontext.ServiceConfig{}
svcContext.CurrentContext = opts.name
svcContext.Contexts = svcContextsMap
err = opts.ServiceContext.Save(svcContext)
if err != nil {
return err
}
opts.Logger.Info(icon.SuccessPrefix(), opts.localizer.MustLocalize("context.create.log.successMessage", localize.NewEntry("Name", opts.name)))
return nil
}