-
Notifications
You must be signed in to change notification settings - Fork 787
/
prompt.go
138 lines (116 loc) · 3.69 KB
/
prompt.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
package cmd
import (
"os"
"strings"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/spf13/cobra"
"github.com/fatih/color"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
)
const (
optionLabelColor = "label-color"
optionNamespaceColor = "namespace-color"
optionContextColor = "context-color"
)
// PromptOptions containers the CLI options
type PromptOptions struct {
*CommonOptions
NoLabel bool
ShowIcon bool
Prefix string
Label string
Separator string
Divider string
Suffix string
LabelColor []string
NamespaceColor []string
ContextColor []string
}
var (
get_prompt_long = templates.LongDesc(`
Generate a command prompt for the current namespace and Kubernetes context.
`)
get_prompt_example = templates.Examples(`
# Generate the current prompt
jx prompt
# Enable the prompt for bash
PS1="[\u@\h \W \$(jx prompt)]\$ "
# Enable the prompt for zsh
PROMPT='$(jx prompt)'$PROMPT
`)
)
// NewCmdPrompt creates the new command for: jx get prompt
func NewCmdPrompt(commonOpts *CommonOptions) *cobra.Command {
options := &PromptOptions{
CommonOptions: commonOpts,
}
cmd := &cobra.Command{
Use: "prompt",
Short: "Generate the command line prompt for the current team and environment",
Long: get_prompt_long,
Example: get_prompt_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Prefix, "prefix", "p", "", "The prefix text for the prompt")
cmd.Flags().StringVarP(&options.Label, "label", "l", "k8s", "The label for the prompt")
cmd.Flags().StringVarP(&options.Separator, "separator", "s", ":", "The separator between the label and the rest of the prompt")
cmd.Flags().StringVarP(&options.Divider, "divider", "d", ":", "The divider between the team and environment for the prompt")
cmd.Flags().StringVarP(&options.Suffix, "suffix", "x", ">", "The suffix text for the prompt")
cmd.Flags().StringArrayVarP(&options.LabelColor, optionLabelColor, "", []string{"blue"}, "The color for the label")
cmd.Flags().StringArrayVarP(&options.NamespaceColor, optionNamespaceColor, "", []string{"green"}, "The color for the namespace")
cmd.Flags().StringArrayVarP(&options.ContextColor, optionContextColor, "", []string{"cyan"}, "The color for the Kubernetes context")
cmd.Flags().BoolVarP(&options.NoLabel, "no-label", "", false, "Disables the use of the label in the prompt")
cmd.Flags().BoolVarP(&options.ShowIcon, "icon", "i", false, "Uses an icon for the label in the prompt")
return cmd
}
// Run implements this command
func (o *PromptOptions) Run() error {
config, _, err := o.Kube().LoadConfig()
context := config.CurrentContext
namespace := kube.CurrentNamespace(config)
// enable color
color.NoColor = os.Getenv("TERM") == "dumb"
label := o.Label
separator := o.Separator
divider := o.Divider
prefix := o.Prefix
suffix := o.Suffix
labelColor, err := util.GetColor(optionLabelColor, o.LabelColor)
if err != nil {
return err
}
nsColor, err := util.GetColor(optionLabelColor, o.NamespaceColor)
if err != nil {
return err
}
ctxColor, err := util.GetColor(optionLabelColor, o.ContextColor)
if err != nil {
return err
}
if o.NoLabel {
label = ""
separator = ""
} else {
if o.ShowIcon {
label = "☸️ "
label = labelColor.Sprint(label)
} else {
label = labelColor.Sprint(label)
}
}
if namespace == "" {
divider = ""
} else {
namespace = nsColor.Sprint(namespace)
}
context = ctxColor.Sprint(context)
log.Infof("%s\n", strings.Join([]string{prefix, label, separator, namespace, divider, context, suffix}, ""))
return nil
}