forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.go
97 lines (85 loc) · 2.16 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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 {
GetURLOptions
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{
GetURLOptions: GetURLOptions{
GetOptions: GetOptions{
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)
},
}
options.addConsoleFlags(cmd)
return cmd
}
func (o *ConsoleOptions) addConsoleFlags(cmd *cobra.Command) {
cmd.Flags().BoolVarP(&o.OnlyViewURL, "url", "u", false, "Only displays and the URL and does not open the browser")
o.addGetUrlFlags(cmd)
}
func (o *ConsoleOptions) Run() error {
return o.Open(kube.ServiceJenkins, "Jenkins Console")
}
func (o *ConsoleOptions) Open(name string, label string) error {
var err error
url := ""
ns := o.Namespace
if ns == "" && o.Environment != "" {
ns, err = o.findEnvironmentNamespace(o.Environment)
if err != nil {
return err
}
}
if ns != "" {
url, err = o.findServiceInNamespace(name, ns)
} else {
url, err = o.findService(name)
}
if err != nil && name != "" {
o.Printf("If the app %s is running in a different environment you could try: %s\n", util.ColorInfo(name), util.ColorInfo("jx get applications"))
}
if err != nil {
return err
}
fmt.Fprintf(o.Out, "%s: %s\n", label, util.ColorInfo(url))
if !o.OnlyViewURL {
browser.OpenURL(url)
}
return nil
}