-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmain.go
71 lines (56 loc) · 1.5 KB
/
main.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
/*
Copyright 2022 The OpenVEX Authors
SPDX-License-Identifier: Apache-2.0
*/
package cmd
import (
"fmt"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"sigs.k8s.io/release-utils/log"
"sigs.k8s.io/release-utils/version"
)
const appname = "vexctl"
var rootCmd = &cobra.Command{
Short: "A tool for working with VEX data",
Long: `A tool for working with VEX data
vexctl is a tool to work with VEX (Vulnerability Exploitability eXchange)
data and to use it to interpret security scanner results.
It enables users to attach vex information to container images and to
filter result sets using the VEX information to get a clear view of which
vulnerabilities apply to their project.
For more information see the --attest and --filter subcomands
`,
Use: appname,
SilenceUsage: false,
PersistentPreRunE: initLogging,
}
type commandLineOptions struct {
logLevel string
}
var commandLineOpts = commandLineOptions{}
func init() {
rootCmd.PersistentFlags().StringVar(
&commandLineOpts.logLevel,
"log-level",
"info",
fmt.Sprintf("the logging verbosity, either %s", log.LevelNames()),
)
addFilter(rootCmd)
addAttest(rootCmd)
addMerge(rootCmd)
addCreate(rootCmd)
addList(rootCmd)
addAdd(rootCmd)
addGenerate(rootCmd)
rootCmd.AddCommand(version.WithFont("doom"))
}
func initLogging(*cobra.Command, []string) error {
return log.SetupGlobalLogger(commandLineOpts.logLevel)
}
// Execute builds the command
func Execute() {
if err := rootCmd.Execute(); err != nil {
logrus.Fatal(err)
}
}