-
Notifications
You must be signed in to change notification settings - Fork 787
/
start_protection.go
98 lines (80 loc) · 2.35 KB
/
start_protection.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
package cmd
import (
"fmt"
"io"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/jenkins-x/jx/pkg/prow"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/golang-jenkins"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
// StartProtectionOptions contains the command line options
type StartProtectionOptions struct {
CommonOptions
Tail bool
Filter string
Jobs map[string]gojenkins.Job
}
var (
start_protection_long = templates.LongDesc(`
Starts protection checking on an app
`)
start_protection_example = templates.Examples(`
# Start protection
jx start protection <context> <org/repo>
# For example, to enable compliance on a repopository called "example" in the "acme" organization
jx start protection compliance-check acme/example
`)
)
// NewCmdStartProtection creates the command
func NewCmdStartProtection(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &StartProtectionOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "protection [flags]",
Short: "Starts protection",
Long: start_protection_long,
Example: start_protection_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
// TODO once we support get pipelines for Prow we can add support for a selector
//cmd.Flags().StringVarP(&options.Filter, "filter", "f", "", "Filters all the available jobs by those that contain the given text")
return cmd
}
// Run implements this command
func (o *StartProtectionOptions) Run() error {
kClient, ns, err := o.KubeClientAndDevNamespace()
if err != nil {
return err
}
if len(o.Args) == 0 {
return fmt.Errorf("No context specified.\n\n%s", start_protection_example)
}
if len(o.Args) == 1 {
return fmt.Errorf("No org/repo specified.\n\n%s", start_protection_example)
}
if len(o.Args) > 2 {
return fmt.Errorf("Too many arguments.\n\n%s", start_protection_example)
}
orgrepo := o.Args[1]
context := o.Args[0]
err = prow.AddProtection(kClient, []string{orgrepo}, context, ns)
if err != nil {
return err
}
log.Infof("%s enabled for %s\n", util.ColorInfo(context), util.ColorInfo(orgrepo))
return nil
}