-
Notifications
You must be signed in to change notification settings - Fork 787
/
create.go
122 lines (103 loc) · 3.59 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
111
112
113
114
115
116
117
118
119
120
121
122
package cmd
import (
"io"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
// CreateOptions contains the command line options
type CreateOptions struct {
CommonOptions
DisableImport bool
OutDir string
}
// CreateProjectOptions contains the command line options
type CreateProjectOptions struct {
ImportOptions
DisableImport bool
OutDir string
}
var (
create_resources = `Valid resource types include:
* archetype
* cluster
* env
* git
* spring (aka 'springboot')
`
create_long = templates.LongDesc(`
Creates a new resource.
` + create_resources + `
`)
)
// NewCmdCreate creates a command object for the "create" command
func NewCmdCreate(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "create",
Short: "Create a new resource",
Long: create_long,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.AddCommand(NewCmdCreateAddon(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateArchetype(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateBranchPattern(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateCamel(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateChat(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateCodeship(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateCluster(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateDevPod(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateDockerAuth(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateDocs(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateEnv(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateEtcHosts(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateGkeServiceAccount(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateGit(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateIssue(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateJenkins(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateJHipster(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateLile(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateMicro(f, in, out, errOut))
cmd.AddCommand(NewCmdCreatePostPreviewJob(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateQuickstart(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateQuickstartLocation(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateSpring(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateTeam(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateTerraform(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateToken(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateTracker(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateUser(f, in, out, errOut))
cmd.AddCommand(NewCmdCreateVault(f, in, out, errOut))
return cmd
}
// Run implements this command
func (o *CreateOptions) Run() error {
return o.Cmd.Help()
}
// DoImport imports the project created at the given directory
func (o *CreateProjectOptions) ImportCreatedProject(outDir string) error {
if o.DisableImport {
return nil
}
importOptions := &o.ImportOptions
importOptions.Dir = outDir
importOptions.DisableDotGitSearch = true
return importOptions.Run()
}
func (options *CreateProjectOptions) addCreateAppFlags(cmd *cobra.Command) {
cmd.Flags().BoolVarP(&options.DisableImport, "no-import", "", false, "Disable import after the creation")
cmd.Flags().StringVarP(&options.OutDir, "output-dir", "o", "", "Directory to output the project to. Defaults to the current directory")
options.addImportFlags(cmd, true)
}