1
1
package openshift
2
2
3
3
import (
4
+ "flag"
4
5
"fmt"
6
+ "io"
5
7
"os"
6
8
"runtime"
7
9
"strings"
8
10
9
11
"github.com/spf13/cobra"
12
+ "github.com/spf13/pflag"
10
13
14
+ kcmd "k8s.io/kubernetes/pkg/kubectl/cmd"
11
15
ktemplates "k8s.io/kubernetes/pkg/kubectl/cmd/templates"
12
16
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
13
17
@@ -20,7 +24,6 @@ import (
20
24
"github.com/openshift/origin/pkg/cmd/templates"
21
25
cmdutil "github.com/openshift/origin/pkg/cmd/util"
22
26
cmdversion "github.com/openshift/origin/pkg/cmd/version"
23
- "github.com/openshift/origin/pkg/oc/cli/cmd"
24
27
osversion "github.com/openshift/origin/pkg/version/openshift"
25
28
)
26
29
@@ -95,7 +98,7 @@ func NewCommandOpenShift(name string) *cobra.Command {
95
98
root .AddCommand (startAllInOne )
96
99
root .AddCommand (newCompletionCommand ("completion" , name + " completion" ))
97
100
root .AddCommand (cmdversion .NewCmdVersion (name , osversion .Get (), os .Stdout ))
98
- root .AddCommand (cmd . NewCmdOptions ( out ))
101
+ root .AddCommand (newCmdOptions ( ))
99
102
100
103
// TODO: add groups
101
104
templates .ActsAsRootCommand (root , []string {"options" })
@@ -104,6 +107,84 @@ func NewCommandOpenShift(name string) *cobra.Command {
104
107
}
105
108
106
109
func newCompletionCommand (name , fullName string ) * cobra.Command {
107
- return cmd . NewCmdCompletion (fullName , os .Stdout )
110
+ return NewCmdCompletion (fullName , os .Stdout )
108
111
109
112
}
113
+
114
+ // newCmdOptions implements the OpenShift cli options command
115
+ func newCmdOptions () * cobra.Command {
116
+ cmd := & cobra.Command {
117
+ Use : "options" ,
118
+ Run : func (cmd * cobra.Command , args []string ) {
119
+ cmd .Usage ()
120
+ },
121
+ }
122
+
123
+ ktemplates .UseOptionsTemplates (cmd )
124
+
125
+ return cmd
126
+ }
127
+
128
+ // from here down probably deserves some common usage
129
+ var (
130
+ completionLong = ktemplates .LongDesc (`
131
+ This command prints shell code which must be evaluated to provide interactive
132
+ completion of %s commands.` )
133
+
134
+ completionExample = ktemplates .Examples (`
135
+ # Generate the %s completion code for bash
136
+ %s completion bash > bash_completion.sh
137
+ source bash_completion.sh
138
+
139
+ # The above example depends on the bash-completion framework.
140
+ # It must be sourced before sourcing the openshift cli completion,
141
+ # i.e. on the Mac:
142
+
143
+ brew install bash-completion
144
+ source $(brew --prefix)/etc/bash_completion
145
+ %s completion bash > bash_completion.sh
146
+ source bash_completion.sh
147
+
148
+ # In zsh*, the following will load openshift cli zsh completion:
149
+ source <(%s completion zsh)
150
+
151
+ * zsh completions are only supported in versions of zsh >= 5.2` )
152
+ )
153
+
154
+ func NewCmdCompletion (fullName string , out io.Writer ) * cobra.Command {
155
+ cmdHelpName := fullName
156
+
157
+ if strings .HasSuffix (fullName , "completion" ) {
158
+ cmdHelpName = "openshift"
159
+ }
160
+
161
+ cmd := kcmd .NewCmdCompletion (out , "\n " )
162
+ cmd .Long = fmt .Sprintf (completionLong , cmdHelpName )
163
+ cmd .Example = fmt .Sprintf (completionExample , cmdHelpName , cmdHelpName , cmdHelpName , cmdHelpName )
164
+ // mark all statically included flags as hidden to prevent them appearing in completions
165
+ cmd .PreRun = func (c * cobra.Command , _ []string ) {
166
+ pflag .CommandLine .VisitAll (func (flag * pflag.Flag ) {
167
+ flag .Hidden = true
168
+ })
169
+ hideGlobalFlags (c .Root (), flag .CommandLine )
170
+ }
171
+ return cmd
172
+ }
173
+
174
+ // hideGlobalFlags marks any flag that is in the global flag set as
175
+ // hidden to prevent completion from varying by platform due to conditional
176
+ // includes. This means that some completions will not be possible unless
177
+ // they are registered in cobra instead of being added to flag.CommandLine.
178
+ func hideGlobalFlags (c * cobra.Command , fs * flag.FlagSet ) {
179
+ fs .VisitAll (func (flag * flag.Flag ) {
180
+ if f := c .PersistentFlags ().Lookup (flag .Name ); f != nil {
181
+ f .Hidden = true
182
+ }
183
+ if f := c .LocalFlags ().Lookup (flag .Name ); f != nil {
184
+ f .Hidden = true
185
+ }
186
+ })
187
+ for _ , child := range c .Commands () {
188
+ hideGlobalFlags (child , fs )
189
+ }
190
+ }
0 commit comments