mirror of
https://github.com/anchore/syft.git
synced 2026-04-05 22:30:35 +02:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
package dart
|
|
|
|
import (
|
|
"github.com/anchore/packageurl-go"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
)
|
|
|
|
func newPubspecLockPackage(name string, raw pubspecLockPackage, locations ...file.Location) pkg.Package {
|
|
metadata := pkg.DartPubspecLockEntry{
|
|
Name: name,
|
|
Version: raw.Version,
|
|
HostedURL: raw.getHostedURL(),
|
|
VcsURL: raw.getVcsURL(),
|
|
}
|
|
|
|
p := pkg.Package{
|
|
Name: name,
|
|
Version: raw.Version,
|
|
Locations: file.NewLocationSet(locations...),
|
|
PURL: packageURL(metadata),
|
|
Language: pkg.Dart,
|
|
Type: pkg.DartPubPkg,
|
|
// since we capture no dependencies today we know that the dep info is unknown
|
|
Dependencies: pkg.UnknownDependencyCompleteness,
|
|
Metadata: metadata,
|
|
}
|
|
|
|
p.SetID()
|
|
|
|
return p
|
|
}
|
|
|
|
func packageURL(m pkg.DartPubspecLockEntry) string {
|
|
var qualifiers packageurl.Qualifiers
|
|
|
|
if m.HostedURL != "" {
|
|
qualifiers = append(qualifiers, packageurl.Qualifier{
|
|
Key: "hosted_url",
|
|
Value: m.HostedURL,
|
|
})
|
|
} else if m.VcsURL != "" { // Default to using Hosted if somehow both are provided
|
|
qualifiers = append(qualifiers, packageurl.Qualifier{
|
|
Key: "vcs_url",
|
|
Value: m.VcsURL,
|
|
})
|
|
}
|
|
|
|
return packageurl.NewPackageURL(
|
|
packageurl.TypePub,
|
|
"",
|
|
m.Name,
|
|
m.Version,
|
|
qualifiers,
|
|
"",
|
|
).ToString()
|
|
}
|