ce2cab65创建于 2023年12月14日历史提交
package golang

import (
	"io"

	"github.com/BurntSushi/toml"
	"github.com/xmirrorsecurity/opensca-cli/v3/opensca/model"
)

type GopkgToml struct {
	Constraint []struct {
		Name    string `json:"name"`
		Version string `json:"version"`
	} `toml:"constraint"`
}

type GopkgLock struct {
	Projects []struct {
		Name    string `json:"name"`
		Version string `json:"version"`
	} `toml:"projects"`
}

// ParseGopkgToml 解析Gopkg.toml文件
func ParseGopkgToml(f *model.File) *model.DepGraph {
	root := &model.DepGraph{Path: f.Relpath()}
	gopkg := GopkgToml{}
	f.OpenReader(func(reader io.Reader) {
		toml.NewDecoder(reader).Decode(&gopkg)
	})
	for _, dep := range gopkg.Constraint {
		root.AppendChild(&model.DepGraph{Name: dep.Name, Version: dep.Version})
	}
	return root
}

// ParseGopkgLock 解析Gopkg.lock文件
func ParseGopkgLock(f *model.File) *model.DepGraph {
	root := &model.DepGraph{Path: f.Relpath()}
	pkglock := GopkgLock{}
	f.OpenReader(func(reader io.Reader) {
		toml.NewDecoder(reader).Decode(&pkglock)
	})
	for _, dep := range pkglock.Projects {
		root.AppendChild(&model.DepGraph{Name: dep.Name, Version: dep.Version})
	}
	return root
}