-
Notifications
You must be signed in to change notification settings - Fork 787
/
command_groups.go
64 lines (54 loc) · 1.39 KB
/
command_groups.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
package templates
import (
jenkinsv1 "github.com/jenkins-x/jx/v2/pkg/apis/jenkins.io/v1"
"github.com/spf13/cobra"
)
// PluginCommandGroup is a group of plugins providing some Commands. The Message is used for describing the group
type PluginCommandGroup struct {
Message string
Commands []*PluginCommand
}
// PluginCommand is a reference to a particular Command provided by a Plugin
type PluginCommand struct {
jenkinsv1.PluginSpec
Errors []error
}
// PluginCommandGroups is a slice of PluginCommandGroup
type PluginCommandGroups []PluginCommandGroup
type CommandGroup struct {
Message string
Commands []*cobra.Command
}
type CommandGroups []CommandGroup
func (g CommandGroups) Add(parent *cobra.Command) {
for _, group := range g {
for _, c := range group.Commands {
if !c.HasParent() {
parent.AddCommand(c)
}
}
}
}
func (g CommandGroups) Has(c *cobra.Command) bool {
for _, group := range g {
for _, command := range group.Commands {
if command == c {
return true
}
}
}
return false
}
func AddAdditionalCommands(g CommandGroups, message string, cmds []*cobra.Command) CommandGroups {
group := CommandGroup{Message: message}
for _, c := range cmds {
// Don't show commands that have no short description
if !g.Has(c) && len(c.Short) != 0 {
group.Commands = append(group.Commands, c)
}
}
if len(group.Commands) == 0 {
return g
}
return append(g, group)
}