forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
176 lines (153 loc) · 4.53 KB
/
cmd.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
package cmd
import (
"io"
cmdutil "github.com/jenkins-x/jx/pkg/jx/cmd/util"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/spf13/cobra"
"strings"
)
const (
// * runs (aka 'run')
valid_resources = `Valid resource types include:
* environments (aka 'env')
* pipelines (aka 'pipe')
* urls (aka 'url')
`
)
// NewJXCommand creates the `jx` command and its nested children.
func NewJXCommand(f cmdutil.Factory, in io.Reader, out, err io.Writer) *cobra.Command {
cmds := &cobra.Command{
Use: "jx",
Short: "jx is a command line tool for working with Jenkins X",
Long: `
`,
Run: runHelp,
/*
BashCompletionFunction: bash_completion_func,
*/
}
createCommands := NewCmdCreate(f, out, err)
deleteCommands := NewCmdDelete(f, out, err)
getCommands := NewCmdGet(f, out, err)
editCommands := NewCmdEdit(f, out, err)
installCommands := []*cobra.Command{
NewCmdInstall(f, out, err),
NewCmdUninstall(f, out, err),
NewCmdUpgrade(f, out, err),
}
installCommands = append(installCommands, findCommands("cluster", createCommands, deleteCommands)...)
installCommands = append(installCommands, findCommands("jenkins token", createCommands, deleteCommands)...)
installCommands = append(installCommands, NewCmdInit(f, out, err))
addProjectCommands := []*cobra.Command{
NewCmdImport(f, out, err),
}
addProjectCommands = append(addProjectCommands, findCommands("create archetype", createCommands, deleteCommands)...)
addProjectCommands = append(addProjectCommands, findCommands("create spring", createCommands, deleteCommands)...)
addProjectCommands = append(addProjectCommands, findCommands("create quickstart", createCommands, deleteCommands)...)
gitCommands := []*cobra.Command{}
gitCommands = append(gitCommands, findCommands("git server", createCommands, deleteCommands)...)
gitCommands = append(gitCommands, findCommands("git token", createCommands, deleteCommands)...)
addonCommands := []*cobra.Command{}
addonCommands = append(addonCommands, findCommands("addon", createCommands, deleteCommands)...)
environmentsCommands := []*cobra.Command{
NewCmdPreview(f, out, err),
NewCmdPromote(f, out, err),
}
environmentsCommands = append(environmentsCommands, findCommands("environment", createCommands, deleteCommands, editCommands, getCommands)...)
groups := templates.CommandGroups{
{
Message: "Installing:",
Commands: installCommands,
},
{
Message: "Adding Projects to Jenkins X:",
Commands: addProjectCommands,
},
{
Message: "Addons:",
Commands: addonCommands,
},
{
Message: "Git:",
Commands: gitCommands,
},
{
Message: "Working with Kubernetes:",
Commands: []*cobra.Command{
NewCmdCompletion(f, out),
NewCmdContext(f, out, err),
NewCmdEnvironment(f, out, err),
NewCmdNamespace(f, out, err),
NewCmdPrompt(f, out, err),
NewCmdShell(f, out, err),
},
},
{
Message: "Working with Applications:",
Commands: []*cobra.Command{
NewCmdConsole(f, out, err),
NewCmdCDX(f, out, err),
NewCmdLogs(f, out, err),
NewCmdOpen(f, out, err),
NewCmdRsh(f, out, err),
},
},
{
Message: "Working with Environments:",
Commands: environmentsCommands,
},
{
Message: "Working with Jenkins X resources:",
Commands: []*cobra.Command{
getCommands,
editCommands,
createCommands,
deleteCommands,
NewCmdStart(f, out, err),
},
},
{
Message: "Jenkins X Pipeline Commands:",
Commands: []*cobra.Command{
NewCmdStep(f, out, err),
},
},
}
groups.Add(cmds)
cmds.AddCommand(NewCmdVersion(f, out, err))
filters := []string{"options"}
templates.ActsAsRootCommand(cmds, filters, groups...)
return cmds
}
func findCommands(subCommand string, commands ...*cobra.Command) []*cobra.Command {
answer := []*cobra.Command{}
for _, parent := range commands {
for _, c := range parent.Commands() {
if commandHasParentName(c, subCommand) {
answer = append(answer, c)
} else {
childCommands := findCommands(subCommand, c)
if len(childCommands) > 0 {
answer = append(answer, childCommands...)
}
}
}
}
return answer
}
func commandHasParentName(command *cobra.Command, name string) bool {
path := fullPath(command)
//fmt.Printf("Command path %s for command %s does not contain %s\n", path, command.Use, name)
return strings.Contains(path, name)
}
func fullPath(command *cobra.Command) string {
name := command.Name()
parent := command.Parent()
if parent != nil {
return fullPath(parent) + " " + name
}
return name
}
func runHelp(cmd *cobra.Command, args []string) {
cmd.Help()
}