-
Notifications
You must be signed in to change notification settings - Fork 787
/
shell.go
200 lines (176 loc) · 4.77 KB
/
shell.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package cmd
import (
"fmt"
"io"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"k8s.io/client-go/tools/clientcmd"
"io/ioutil"
"os"
"os/exec"
"sort"
"strings"
"github.com/jenkins-x/jx/pkg/util"
"gopkg.in/AlecAivazis/survey.v1"
"gopkg.in/AlecAivazis/survey.v1/terminal"
)
const (
bashEnvPrefix = "PS1="
defaultRcFile = `
if [ -f /etc/bashrc ]; then
source /etc/bashrc
fi
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
`
)
type ShellOptions struct {
CommonOptions
Filter string
}
var (
shell_long = templates.LongDesc(`
Create a sub shell so that changes to the Kubernetes context, namespace or environment remain local to the shell.`)
shell_example = templates.Examples(`
# create a new shell where the context changes are local to the shell only
jx shell
# create a new shell using a specific named context
jx shell prod-cluster
# ends the current shell and returns to the previous Kubernetes context
exit
`)
)
func NewCmdShell(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &ShellOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "shell",
Aliases: []string{"sh"},
Short: "Create a sub shell so that changes to the Kubernetes context, namespace or environment remain local to the shell",
Long: shell_long,
Example: shell_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Filter, "filter", "f", "", "Filter the list of contexts to switch between using the given text")
options.addCommonFlags(cmd)
return cmd
}
func (o *ShellOptions) Run() error {
config, _, err := kube.LoadConfig()
if err != nil {
return err
}
if config == nil || config.Contexts == nil || len(config.Contexts) == 0 {
return fmt.Errorf("No Kubernetes contexts available! Try create or connect to cluster?")
}
contextNames := []string{}
for k, v := range config.Contexts {
if k != "" && v != nil {
if o.Filter == "" || strings.Index(k, o.Filter) >= 0 {
contextNames = append(contextNames, k)
}
}
}
sort.Strings(contextNames)
ctxName := ""
args := o.Args
if len(args) > 0 {
ctxName = args[0]
if util.StringArrayIndex(contextNames, ctxName) < 0 {
return util.InvalidArg(ctxName, contextNames)
}
}
if ctxName == "" && !o.BatchMode {
defaultCtxName := config.CurrentContext
pick, err := o.PickContext(contextNames, defaultCtxName)
if err != nil {
return err
}
ctxName = pick
}
if ctxName == "" {
ctxName = config.CurrentContext
}
newConfig := *config
newConfig.CurrentContext = ctxName
tmpfile, err := ioutil.TempFile("/tmp", "jx-kube-config-")
if err != nil {
return err
}
tmpFileName := tmpfile.Name()
err = clientcmd.WriteToFile(newConfig, tmpFileName)
if err != nil {
return err
}
shell := os.Getenv("SHELL")
if shell == "" {
shell = "bash"
}
prompt := o.createNewBashPrompt(os.Getenv("PS1"))
rcFile := defaultRcFile + "\nexport PS1=" + prompt + "\nexport KUBECONFIG=\"" + tmpFileName + "\"\n"
tmpRCfile, err := ioutil.TempFile("/tmp", "jx-shell-rcfile-")
if err != nil {
return err
}
tmpRCfileName := tmpRCfile.Name()
err = ioutil.WriteFile(tmpRCfileName, []byte(rcFile), util.DefaultWritePermissions)
if err != nil {
return err
}
info := util.ColorInfo
log.Infof("Creating a new shell using the Kubernetes context %s\n", info(ctxName))
log.Infof("Bash RC file is %s\n\n", tmpRCfileName)
log.Infof("All changes to the Kubernetes context like changing environment, namespace or context will be local to this shell\n")
log.Infof("To return to the global context use the command: exit\n\n")
e := exec.Command(shell, "-rcfile", tmpRCfileName, "-i")
e.Stdout = o.Out
e.Stderr = o.Err
e.Stdin = os.Stdin
return e.Run()
}
func (o *ShellOptions) PickContext(names []string, defaultValue string) (string, error) {
surveyOpts := survey.WithStdio(o.In, o.Out, o.Err)
if len(names) == 0 {
return "", nil
}
if len(names) == 1 {
return names[0], nil
}
name := ""
prompt := &survey.Select{
Message: "Change Kubernetes context:",
Options: names,
Default: defaultValue,
}
err := survey.AskOne(prompt, &name, nil, surveyOpts)
return name, err
}
func (o *ShellOptions) createNewBashPrompt(prompt string) string {
if prompt == "" {
return "'[\\u@\\h \\W \\$(jx prompt) ]\\$ '"
}
if strings.Contains(prompt, "jx prompt") {
return prompt
}
if prompt[0] == '"' {
return prompt[0:1] + "\\$(jx prompt) " + prompt[1:]
}
if prompt[0] == '\'' {
return prompt[0:1] + "$(jx prompt) " + prompt[1:]
}
return "'$(jx prompt) " + prompt + "'"
}