mirror of
https://github.com/anchore/syft.git
synced 2026-08-22 01:53:35 +02:00
--------- Signed-off-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com> Co-authored-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
123 lines
3.0 KiB
Go
123 lines
3.0 KiB
Go
package lua
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/anchore/syft/internal/log"
|
|
"github.com/anchore/syft/syft/artifact"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/pkg/cataloger/generic"
|
|
)
|
|
|
|
type luaRocksPackage struct {
|
|
Name string
|
|
Version string
|
|
License string
|
|
Homepage string
|
|
Description string
|
|
Dependencies map[string]string
|
|
Repository repository
|
|
}
|
|
|
|
type repository struct {
|
|
URL string
|
|
}
|
|
|
|
// parseRockspec parses a package.rockspec and returns the discovered Lua packages.
|
|
func parseRockspec(ctx context.Context, resolver file.Resolver, _ *generic.Environment, reader file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error) {
|
|
doc, err := parseRockspecData(reader)
|
|
if err != nil {
|
|
log.WithFields("error", err).Trace("unable to parse Rockspec app")
|
|
return nil, nil, fmt.Errorf("unable to parse Rockspec app: %w", err)
|
|
}
|
|
|
|
var name, version, license, homepage, description, url string
|
|
var dependencies map[string]string
|
|
|
|
for _, node := range doc.value {
|
|
switch node.key {
|
|
case "package":
|
|
name = node.String()
|
|
case "version":
|
|
version = node.String()
|
|
case "source":
|
|
for _, child := range node.Slice() {
|
|
if child.key == "url" {
|
|
url = child.String()
|
|
break
|
|
}
|
|
}
|
|
case "description":
|
|
for _, child := range node.Slice() {
|
|
switch child.key {
|
|
case "summary":
|
|
description = child.String()
|
|
case "homepage":
|
|
homepage = child.String()
|
|
case "license":
|
|
license = strings.ReplaceAll(child.String(), " ", "-")
|
|
}
|
|
}
|
|
case "dependencies":
|
|
if dependencies == nil {
|
|
dependencies = make(map[string]string)
|
|
}
|
|
for _, child := range node.Slice() {
|
|
depName, depVersion := parseDependency(child.String())
|
|
if depName != "" {
|
|
dependencies[depName] = depVersion
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if name == "" {
|
|
log.WithFields("path", reader.Path()).Trace("rockspec has no package name, skipping")
|
|
return nil, nil, nil
|
|
}
|
|
|
|
p := newLuaRocksPackage(
|
|
ctx,
|
|
resolver,
|
|
luaRocksPackage{
|
|
Name: name,
|
|
Version: version,
|
|
License: license,
|
|
Repository: repository{
|
|
URL: url,
|
|
},
|
|
Homepage: homepage,
|
|
Description: description,
|
|
Dependencies: dependencies,
|
|
},
|
|
reader.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
|
)
|
|
|
|
return []pkg.Package{p}, nil, nil
|
|
}
|
|
|
|
// parseDependency extracts the package name and version constraint from a dependency string.
|
|
// Examples:
|
|
// - "lua >= 5.1" -> ("lua", ">= 5.1")
|
|
// - "lpeg" -> ("lpeg", "")
|
|
// - "lualogging >= 1.4.0, < 2.0.0" -> ("lualogging", ">= 1.4.0, < 2.0.0")
|
|
func parseDependency(dep string) (name string, version string) {
|
|
dep = strings.TrimSpace(dep)
|
|
if dep == "" {
|
|
return "", ""
|
|
}
|
|
|
|
// Find the first space which separates package name from version constraint
|
|
parts := strings.SplitN(dep, " ", 2)
|
|
name = strings.TrimSpace(parts[0])
|
|
|
|
if len(parts) == 2 {
|
|
version = strings.TrimSpace(parts[1])
|
|
}
|
|
|
|
return name, version
|
|
}
|