-
Notifications
You must be signed in to change notification settings - Fork 249
/
root.go
178 lines (150 loc) · 5.44 KB
/
root.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
177
178
// Copyright © 2019 The Tekton Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/tektoncd/cli/pkg/cli"
"github.com/tektoncd/cli/pkg/cli/prerun"
"github.com/tektoncd/cli/pkg/cmd/bundle"
"github.com/tektoncd/cli/pkg/cmd/chain"
"github.com/tektoncd/cli/pkg/cmd/clustertask"
"github.com/tektoncd/cli/pkg/cmd/clustertriggerbinding"
"github.com/tektoncd/cli/pkg/cmd/completion"
"github.com/tektoncd/cli/pkg/cmd/eventlistener"
"github.com/tektoncd/cli/pkg/cmd/pipeline"
"github.com/tektoncd/cli/pkg/cmd/pipelineresource"
"github.com/tektoncd/cli/pkg/cmd/pipelinerun"
"github.com/tektoncd/cli/pkg/cmd/task"
"github.com/tektoncd/cli/pkg/cmd/taskrun"
"github.com/tektoncd/cli/pkg/cmd/triggerbinding"
"github.com/tektoncd/cli/pkg/cmd/triggertemplate"
"github.com/tektoncd/cli/pkg/cmd/version"
"github.com/tektoncd/cli/pkg/plugins"
"github.com/tektoncd/cli/pkg/suggestion"
hubApp "github.com/tektoncd/hub/api/pkg/cli/app"
hub "github.com/tektoncd/hub/api/pkg/cli/cmd"
)
const usageTemplate = `Usage:{{if .Runnable}}
{{.UseLine}}{{end}}{{if .HasAvailableSubCommands}}
{{.CommandPath}} [command]{{end}}
{{- if isExperimental .}}
EXPERIMENTAL:
{{.CommandPath}} is an experimental feature.
Experimental features provide early access to the project functionality. These
features may change between releases without warning, or can be removed from a
future release.{{- end}}
{{if gt (len .Aliases) 0}}
Aliases:
{{.NameAndAliases}}{{end}}{{if .HasExample}}
Examples:
{{.Example}}{{end}}{{if .HasAvailableSubCommands}}{{if HasMainSubCommands .}}
Available Commands:{{range .Commands}}{{if (eq .Annotations.commandType "main")}}
{{rpad (commandName .) .NamePadding }} {{.Short}}{{if isExperimental .}} (experimental){{end}}{{end}}{{end}}{{end}}{{if HasUtilitySubCommands .}}
Other Commands:{{range .Commands}}{{if (eq .Annotations.commandType "utility")}}
{{rpad (commandName .) .NamePadding }} {{.Short}}{{if isExperimental .}} (experimental){{end}}{{end}}{{end}}{{end}}{{end}}{{if gt (len pluginList) 0}}
{{- if not .HasParent}}
Available Plugins:
{{- range pluginList}}
{{.}}
{{- end}}
{{- end}}{{end}}{{if .HasAvailableLocalFlags}}
Flags:
{{.LocalFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if .HasAvailableInheritedFlags}}
Global Flags:
{{.InheritedFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if .HasHelpSubCommands}}
Additional help topics:{{range .Commands}}{{if .IsAdditionalHelpTopicCommand}}
{{rpad .CommandPath .CommandPathPadding}} {{.Short}}{{end}}{{end}}{{end}}{{if .HasAvailableSubCommands}}
Use "{{.CommandPath}} [command] --help" for more information about a command.{{end}}
`
func Root(p cli.Params) *cobra.Command {
// Reset CommandLine so we don't get the flags from the libraries, i.e:
// azure library adding --azure-container-registry-config
pflag.CommandLine = pflag.NewFlagSet(os.Args[0], pflag.ExitOnError)
cmd := &cobra.Command{
Use: "tkn",
Short: "CLI for tekton pipelines",
Long: ``,
SilenceUsage: true,
}
cobra.AddTemplateFunc("HasMainSubCommands", hasMainSubCommands)
cobra.AddTemplateFunc("HasUtilitySubCommands", hasUtilitySubCommands)
cmd.SetUsageTemplate(usageTemplate)
cmd.AddCommand(
bundle.Command(p),
chain.Command(p),
clustertask.Command(p),
clustertriggerbinding.Command(p),
completion.Command(),
eventlistener.Command(p),
pipeline.Command(p),
pipelineresource.Command(p),
pipelinerun.Command(p),
task.Command(p),
taskrun.Command(p),
triggerbinding.Command(p),
triggertemplate.Command(p),
version.Command(p),
hub.Root(hubApp.New()),
)
visitCommands(cmd, reconfigureCmdWithSubcmd)
addPluginsToHelp()
cobra.AddTemplateFunc("isExperimental", prerun.IsExperimental)
cobra.AddTemplateFunc("commandName", commandName)
return cmd
}
func commandName(cmd *cobra.Command) string {
if prerun.IsExperimental(cmd) {
return fmt.Sprintf("%s*", cmd.Name())
}
return cmd.Name()
}
func addPluginsToHelp() {
pluginList := plugins.GetAllTknPluginFromPaths()
cobra.AddTemplateFunc("pluginList", func() []string { return pluginList })
}
func hasMainSubCommands(cmd *cobra.Command) bool {
return len(subCommands(cmd, "main")) > 0
}
func hasUtilitySubCommands(cmd *cobra.Command) bool {
return len(subCommands(cmd, "utility")) > 0
}
func subCommands(cmd *cobra.Command, annotation string) []*cobra.Command {
cmds := []*cobra.Command{}
for _, sub := range cmd.Commands() {
if sub.IsAvailableCommand() && sub.Annotations["commandType"] == annotation {
cmds = append(cmds, sub)
}
}
return cmds
}
func reconfigureCmdWithSubcmd(cmd *cobra.Command) {
if len(cmd.Commands()) == 0 {
return
}
if cmd.Args == nil {
cmd.Args = cobra.ArbitraryArgs
}
if cmd.RunE == nil {
cmd.RunE = suggestion.SubcommandsRequiredWithSuggestions
}
}
func visitCommands(cmd *cobra.Command, f func(*cobra.Command)) {
f(cmd)
for _, child := range cmd.Commands() {
visitCommands(child, f)
}
}