mirror of
https://github.com/anchore/grype
synced 2024-11-14 00:07:08 +00:00
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
package cmd
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/anchore/grype/grype/vulnerability"
|
|
"github.com/anchore/grype/internal"
|
|
"github.com/anchore/grype/internal/version"
|
|
)
|
|
|
|
var versionOutputFormat string
|
|
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "show the version",
|
|
RunE: printVersion,
|
|
}
|
|
|
|
func init() {
|
|
versionCmd.Flags().StringVarP(&versionOutputFormat, "output", "o", "text", "format to display results (available=[text, json])")
|
|
|
|
rootCmd.AddCommand(versionCmd)
|
|
}
|
|
|
|
func printVersion(_ *cobra.Command, _ []string) error {
|
|
versionInfo := version.FromBuild()
|
|
switch versionOutputFormat {
|
|
case "text":
|
|
fmt.Println("Application: ", internal.ApplicationName)
|
|
fmt.Println("Version: ", versionInfo.Version)
|
|
fmt.Println("Syft Version: ", versionInfo.SyftVersion)
|
|
fmt.Println("BuildDate: ", versionInfo.BuildDate)
|
|
fmt.Println("GitCommit: ", versionInfo.GitCommit)
|
|
fmt.Println("GitDescription: ", versionInfo.GitDescription)
|
|
fmt.Println("Platform: ", versionInfo.Platform)
|
|
fmt.Println("GoVersion: ", versionInfo.GoVersion)
|
|
fmt.Println("Compiler: ", versionInfo.Compiler)
|
|
fmt.Println("Supported DB Schema: ", vulnerability.SchemaVersion)
|
|
case "json":
|
|
|
|
enc := json.NewEncoder(os.Stdout)
|
|
enc.SetEscapeHTML(false)
|
|
enc.SetIndent("", " ")
|
|
err := enc.Encode(&struct {
|
|
version.Version
|
|
Application string `json:"application"`
|
|
SchemaVersion int `json:"supportedDbSchema"`
|
|
}{
|
|
Version: versionInfo,
|
|
Application: internal.ApplicationName,
|
|
SchemaVersion: vulnerability.SchemaVersion,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("failed to show version information: %+v", err)
|
|
}
|
|
default:
|
|
return fmt.Errorf("unsupported output format: %s", versionOutputFormat)
|
|
}
|
|
return nil
|
|
}
|