mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 07:10:41 -08:00
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package gemspec
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
|
|
"github.com/aquasecurity/go-dep-parser/pkg/ruby/gemspec"
|
|
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
|
|
"github.com/aquasecurity/trivy/pkg/fanal/analyzer/language"
|
|
"github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
)
|
|
|
|
func init() {
|
|
analyzer.RegisterAnalyzer(&gemspecLibraryAnalyzer{})
|
|
}
|
|
|
|
const version = 1
|
|
|
|
var fileRegex = regexp.MustCompile(`.*/specifications/.+\.gemspec`)
|
|
|
|
type gemspecLibraryAnalyzer struct{}
|
|
|
|
func (a gemspecLibraryAnalyzer) Analyze(_ context.Context, input analyzer.AnalysisInput) (*analyzer.AnalysisResult, error) {
|
|
return language.AnalyzePackage(types.GemSpec, input.FilePath, input.Content,
|
|
gemspec.NewParser(), input.Options.FileChecksum)
|
|
}
|
|
|
|
func (a gemspecLibraryAnalyzer) Required(filePath string, _ os.FileInfo) bool {
|
|
return fileRegex.MatchString(filepath.ToSlash(filePath))
|
|
}
|
|
|
|
func (a gemspecLibraryAnalyzer) Type() analyzer.Type {
|
|
return analyzer.TypeGemSpec
|
|
}
|
|
|
|
func (a gemspecLibraryAnalyzer) Version() int {
|
|
return version
|
|
}
|