-
Notifications
You must be signed in to change notification settings - Fork 787
/
get_tracker.go
97 lines (83 loc) · 2.2 KB
/
get_tracker.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 (
"io"
"strings"
"github.com/jenkins-x/jx/pkg/issues"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
// GetTrackerOptions the command line options
type GetTrackerOptions struct {
GetOptions
Kind string
Dir string
}
var (
getTrackerLong = templates.LongDesc(`
Display the issue tracker server URLs.
`)
getTrackerExample = templates.Examples(`
# List all registered issue tracker server URLs
jx get tracker
`)
)
// NewCmdGetTracker creates the command
func NewCmdGetTracker(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &GetTrackerOptions{
GetOptions: GetOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "tracker [flags]",
Short: "Display the current registered issue tracker service URLs",
Long: getTrackerLong,
Example: getTrackerExample,
Aliases: []string{"issue-tracker"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Kind, "kind", "k", "", "Filters the issue trackers by the kinds: "+strings.Join(issues.IssueTrackerKinds, ", "))
return cmd
}
// Run implements this command
func (o *GetTrackerOptions) Run() error {
authConfigSvc, err := o.CreateIssueTrackerAuthConfigService()
if err != nil {
return err
}
config := authConfigSvc.Config()
if len(config.Servers) == 0 {
log.Infof("No issue trackers registered. To register a new issue tracker use: %s\n", util.ColorInfo("jx create tracker server"))
return nil
}
filterKind := o.Kind
table := o.CreateTable()
if filterKind == "" {
table.AddRow("Name", "Kind", "URL")
} else {
table.AddRow(strings.ToUpper(filterKind), "URL")
}
for _, s := range config.Servers {
kind := s.Kind
if filterKind == "" || filterKind == kind {
table.AddRow(s.Name, kind, s.URL)
} else if filterKind == kind {
table.AddRow(s.Name, s.URL)
}
}
table.Render()
return nil
}