-
Notifications
You must be signed in to change notification settings - Fork 72
/
generate-config.go
98 lines (80 loc) · 2.75 KB
/
generate-config.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
package generate
import (
"context"
"github.com/redhat-developer/app-services-cli/pkg/cmd/context/contextcmdutil"
"github.com/redhat-developer/app-services-cli/pkg/core/cmdutil/flagutil"
"github.com/redhat-developer/app-services-cli/pkg/core/config"
"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
Config config.IConfig
ServiceContext servicecontext.IContext
name string
configType string
}
// NewGenerateCommand creates configuration files for service context
func NewGenerateCommand(f *factory.Factory) *cobra.Command {
opts := &options{
Connection: f.Connection,
Config: f.Config,
IO: f.IOStreams,
Logger: f.Logger,
localizer: f.Localizer,
ServiceContext: f.ServiceContext,
}
cmd := &cobra.Command{
Use: "generate-config",
Short: f.Localizer.MustLocalize("generate.cmd.shortDescription"),
Long: f.Localizer.MustLocalize("generate.cmd.longDescription"),
Example: f.Localizer.MustLocalize("generate.cmd.example"),
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
// check that a valid type is provided
validType := flagutil.IsValidInput(opts.configType, configurationTypes...)
if !validType {
return flagutil.InvalidValueError("type", opts.configType, configurationTypes...)
}
return runGenerate(opts)
},
}
flags := contextcmdutil.NewFlagSet(cmd, f)
flags.AddContextName(&opts.name)
flags.StringVar(&opts.configType, "type", "", opts.localizer.MustLocalize("generate.flag.type"))
_ = cmd.MarkFlagRequired("type")
flagutil.EnableStaticFlagCompletion(cmd, "type", configurationTypes)
return cmd
}
func runGenerate(opts *options) error {
svcContext, err := opts.ServiceContext.Load()
if err != nil {
return err
}
var svcConfig *servicecontext.ServiceConfig
if opts.name == "" {
svcConfig, err = contextutil.GetCurrentContext(svcContext, opts.localizer)
if err != nil {
return err
}
opts.name = svcContext.CurrentContext
} else {
svcConfig, err = contextutil.GetContext(svcContext, opts.localizer, opts.name)
if err != nil {
return err
}
}
if err = BuildConfiguration(svcConfig, opts); err != nil {
return err
}
return nil
}