mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 23:26:39 -08:00
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
package flag
|
|
|
|
import (
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
)
|
|
|
|
var (
|
|
ArtifactTypeFlag = Flag{
|
|
Name: "artifact-type",
|
|
ConfigName: "sbom.artifact-type",
|
|
Value: "",
|
|
Usage: "deprecated",
|
|
Deprecated: true,
|
|
}
|
|
SBOMFormatFlag = Flag{
|
|
Name: "sbom-format",
|
|
ConfigName: "sbom.format",
|
|
Value: "",
|
|
Usage: "deprecated",
|
|
Deprecated: true,
|
|
}
|
|
)
|
|
|
|
type SBOMFlagGroup struct {
|
|
ArtifactType *Flag // deprecated
|
|
SBOMFormat *Flag // deprecated
|
|
}
|
|
|
|
type SBOMOptions struct {
|
|
ArtifactType string // deprecated
|
|
SBOMFormat string // deprecated
|
|
}
|
|
|
|
func NewSBOMFlagGroup() *SBOMFlagGroup {
|
|
return &SBOMFlagGroup{
|
|
ArtifactType: &ArtifactTypeFlag,
|
|
SBOMFormat: &SBOMFormatFlag,
|
|
}
|
|
}
|
|
|
|
func (f *SBOMFlagGroup) Name() string {
|
|
return "SBOM"
|
|
}
|
|
|
|
func (f *SBOMFlagGroup) Flags() []*Flag {
|
|
return []*Flag{f.ArtifactType, f.SBOMFormat}
|
|
}
|
|
|
|
func (f *SBOMFlagGroup) ToOptions() (SBOMOptions, error) {
|
|
artifactType := getString(f.ArtifactType)
|
|
sbomFormat := getString(f.SBOMFormat)
|
|
|
|
if artifactType != "" || sbomFormat != "" {
|
|
log.Logger.Error("'trivy sbom' is now for scanning SBOM. " +
|
|
"See https://github.com/aquasecurity/trivy/discussions/2407 for the detail")
|
|
return SBOMOptions{}, xerrors.New("'--artifact-type' and '--sbom-format' are no longer available")
|
|
}
|
|
|
|
return SBOMOptions{}, nil
|
|
}
|