-
Notifications
You must be signed in to change notification settings - Fork 787
/
cloudbees_pipeline.go
100 lines (83 loc) · 2.51 KB
/
cloudbees_pipeline.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
package cmd
import (
"fmt"
"io"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/util"
"github.com/pkg/browser"
)
type CloudBeesPipelineOptions struct {
CloudBeesOptions
}
var (
cloudbees_pipeline_long = templates.LongDesc(`
Opens the CloudBees Pipeline page for the current App in a browser.
Which helps you visualise your CI/CD pipelines, apps, environments and teams.
For more information please see [https://www.cloudbees.com/blog/want-help-build-cloudbees-kubernetes-jenkins-x](https://www.cloudbees.com/blog/want-help-build-cloudbees-kubernetes-jenkins-x)
`)
cloudbees_pipeline_example = templates.Examples(`
# Open the CloudBees Pipeline page in a browser
jx cloudbees pipeline
# Print the CloudBees Pipeline page URL but do not open a browser
jx cloudbees pipeline -u`)
)
func NewCmdCloudBeesPipeline(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &CloudBeesPipelineOptions{
CloudBeesOptions: CloudBeesOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "pipeline",
Short: "Opens the CloudBees Pipeline page for visualising CI/CD",
Long: cloudbees_pipeline_long,
Example: cloudbees_pipeline_example,
Aliases: []string{"cloudbee", "cb", "core"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().BoolVarP(&options.OnlyViewURL, "url", "u", false, "Only displays the URL and does not open the browser")
return cmd
}
func (o *CloudBeesPipelineOptions) Run() error {
app, err := o.DiscoverAppName()
if err != nil {
return err
}
team, _, err := o.TeamAndEnvironmentNames()
if err != nil {
return err
}
baseUrl, err := o.GetBaseURL()
if err != nil {
return err
}
url := fmt.Sprintf("%s/teams/%s/pipelines/%s", baseUrl, team, app)
return o.OpenURL(url, fmt.Sprintf("CloudBees (team: %s, app: %s)", util.ColorInfo(team), util.ColorInfo(app)))
}
func (o *CloudBeesPipelineOptions) Open(name string, label string) error {
url, err := o.findService(name)
if err != nil {
return err
}
return o.OpenURL(url, label)
}
func (o *CloudBeesPipelineOptions) OpenURL(url string, label string) error {
// TODO Logger
fmt.Fprintf(o.Out, "%s: %s\n", label, util.ColorInfo(url))
if !o.OnlyViewURL {
browser.OpenURL(url)
}
return nil
}