-
Notifications
You must be signed in to change notification settings - Fork 1
/
console.go
83 lines (73 loc) · 1.86 KB
/
console.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
package cmd
import (
"fmt"
"io"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
cmdutil "github.com/jenkins-x/jx/pkg/jx/cmd/util"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/util"
"github.com/pkg/browser"
)
type ConsoleOptions struct {
CommonOptions
OnlyViewURL bool
}
var (
console_long = templates.LongDesc(`
Opens the Jenkins X console in a browser.`)
console_example = templates.Examples(`
# Open the Jenkins X console in a browser
jx console
# Print the Jenkins X console URL but do not open a browser
jx console -u`)
)
func NewCmdConsole(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &ConsoleOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "console",
Short: "Opens the Jenkins console",
Long: console_long,
Example: console_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
cmdutil.CheckErr(err)
},
}
cmd.Flags().BoolVarP(&options.OnlyViewURL, "url", "u", false, "Only displays and the URL and does not open the browser")
return cmd
}
func (o *ConsoleOptions) Run() error {
return o.Open(kube.ServiceJenkins, "Jenkins Console")
}
func (o *ConsoleOptions) Open(name string, label string) error {
f := o.Factory
client, ns, err := f.CreateClient()
if err != nil {
return err
}
url, err := kube.FindServiceURL(client, ns, name)
if url == "" {
devNs, _, err := kube.GetDevNamespace(client, ns)
if err != nil {
return err
}
url, err = kube.FindServiceURL(client, devNs, name)
}
if url == "" {
return fmt.Errorf("Could not find service %s in namespace %s", name, ns)
}
fmt.Fprintf(o.Out, "%s: %s\n", label, util.ColorInfo(url))
if !o.OnlyViewURL {
browser.OpenURL(url)
}
return nil
}