-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cataloger: implement the yarn.lock parser
Signed-off-by: Alfredo Deza <adeza@anchore.com>
- Loading branch information
Alfredo Deza
committed
Jul 28, 2020
1 parent
146b4bd
commit 67fb132
Showing
2 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package javascript | ||
|
||
import ( | ||
"bufio" | ||
"fmt" | ||
"io" | ||
"regexp" | ||
"strings" | ||
|
||
"github.com/anchore/syft/internal/log" | ||
"github.com/anchore/syft/syft/pkg" | ||
) | ||
|
||
var composedNameExp = regexp.MustCompile("^\"(@{1}[^@]+)") | ||
var simpleNameExp = regexp.MustCompile(`^[a-zA-Z\-]+@`) | ||
var versionExp = regexp.MustCompile(`^\W+(version)\W+`) | ||
|
||
func parseYarnLock(_ string, reader io.Reader) ([]pkg.Package, error) { | ||
packages := make([]pkg.Package, 0) | ||
fields := make(map[string]string) | ||
var currentName string | ||
|
||
scanner := bufio.NewScanner(reader) | ||
|
||
for scanner.Scan() { | ||
line := scanner.Text() | ||
line = strings.TrimRight(line, "\n") | ||
|
||
// create the entry so that the loop can keep appending versions later | ||
_, ok := fields[currentName] | ||
if !ok { | ||
fields[currentName] = "" | ||
} | ||
|
||
switch { | ||
case composedNameExp.MatchString(line): | ||
name := composedNameExp.FindString(line) | ||
if len(name) == 0 { | ||
log.Errorf("unable to parse line: '%s'", line) | ||
} | ||
currentName = strings.TrimLeft(name, "\"") | ||
case simpleNameExp.MatchString(line): | ||
parts := strings.Split(line, "@") | ||
currentName = parts[0] | ||
case versionExp.MatchString(line): | ||
parts := strings.Split(line, " \"") | ||
version := parts[len(parts)-1] | ||
|
||
versions, ok := fields[currentName] | ||
if !ok { | ||
return nil, fmt.Errorf("no previous key exists, expecting: %s", currentName) | ||
} | ||
|
||
if strings.Contains(versions, version) { | ||
// already exists from another dependency declaration | ||
continue | ||
} | ||
|
||
// append the version as a string so that we can check on it later | ||
fields[currentName] = versions + " " + version | ||
packages = append(packages, pkg.Package{ | ||
Name: currentName, | ||
Version: strings.Trim(version, "\""), | ||
Language: pkg.JavaScript, | ||
Type: pkg.YarnPkg, | ||
}) | ||
} | ||
} | ||
|
||
if err := scanner.Err(); err != nil { | ||
return nil, fmt.Errorf("failed to parse yarn.lock file: %w", err) | ||
} | ||
|
||
return packages, nil | ||
} |