mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-02-04 07:43:13 +08:00
Signed-off-by: knqyf263 <knqyf263@gmail.com> Co-authored-by: DmitriyLewen <91113035+DmitriyLewen@users.noreply.github.com>
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
package packagejson
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
"regexp"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/dependency"
|
|
"github.com/aquasecurity/trivy/pkg/dependency/types"
|
|
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
)
|
|
|
|
var nameRegexp = regexp.MustCompile(`^(@[A-Za-z0-9-._]+/)?[A-Za-z0-9-._]+$`)
|
|
|
|
type packageJSON struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
License interface{} `json:"license"`
|
|
Dependencies map[string]string `json:"dependencies"`
|
|
OptionalDependencies map[string]string `json:"optionalDependencies"`
|
|
DevDependencies map[string]string `json:"devDependencies"`
|
|
Workspaces []string `json:"workspaces"`
|
|
}
|
|
|
|
type Package struct {
|
|
types.Library
|
|
Dependencies map[string]string
|
|
OptionalDependencies map[string]string
|
|
DevDependencies map[string]string
|
|
Workspaces []string
|
|
}
|
|
|
|
type Parser struct{}
|
|
|
|
func NewParser() *Parser {
|
|
return &Parser{}
|
|
}
|
|
|
|
func (p *Parser) Parse(r io.Reader) (Package, error) {
|
|
var pkgJSON packageJSON
|
|
if err := json.NewDecoder(r).Decode(&pkgJSON); err != nil {
|
|
return Package{}, xerrors.Errorf("JSON decode error: %w", err)
|
|
}
|
|
|
|
if !IsValidName(pkgJSON.Name) {
|
|
return Package{}, xerrors.Errorf("Name can only contain URL-friendly characters")
|
|
}
|
|
|
|
var id string
|
|
// Name and version fields are optional
|
|
// https://docs.npmjs.com/cli/v9/configuring-npm/package-json#name
|
|
if pkgJSON.Name != "" && pkgJSON.Version != "" {
|
|
id = dependency.ID(ftypes.NodePkg, pkgJSON.Name, pkgJSON.Version)
|
|
}
|
|
|
|
return Package{
|
|
Library: types.Library{
|
|
ID: id,
|
|
Name: pkgJSON.Name,
|
|
Version: pkgJSON.Version,
|
|
License: parseLicense(pkgJSON.License),
|
|
},
|
|
Dependencies: pkgJSON.Dependencies,
|
|
OptionalDependencies: pkgJSON.OptionalDependencies,
|
|
DevDependencies: pkgJSON.DevDependencies,
|
|
Workspaces: pkgJSON.Workspaces,
|
|
}, nil
|
|
}
|
|
|
|
func parseLicense(val interface{}) string {
|
|
// the license isn't always a string, check for legacy struct if not string
|
|
switch v := val.(type) {
|
|
case string:
|
|
return v
|
|
case map[string]interface{}:
|
|
if license, ok := v["type"]; ok {
|
|
return license.(string)
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func IsValidName(name string) bool {
|
|
// Name is optional field
|
|
// https://docs.npmjs.com/cli/v9/configuring-npm/package-json#name
|
|
if name == "" {
|
|
return true
|
|
}
|
|
return nameRegexp.MatchString(name)
|
|
}
|