mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
d62c09e2cc
* feat(repodb): index logic + tests Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com> * feat(cli): printing indexes support using the rest api Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com> --------- Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
37 lines
736 B
Go
37 lines
736 B
Go
package model
|
|
|
|
//nolint:tagliatelle // graphQL schema
|
|
type CVE struct {
|
|
ID string `json:"Id"`
|
|
Description string `json:"Description"`
|
|
Severity string `json:"Severity"`
|
|
Title string `json:"Title"`
|
|
PackageList []Package `json:"PackageList"`
|
|
}
|
|
|
|
//nolint:tagliatelle // graphQL schema
|
|
type Package struct {
|
|
Name string `json:"Name"`
|
|
InstalledVersion string `json:"InstalledVersion"`
|
|
FixedVersion string `json:"FixedVersion"`
|
|
}
|
|
|
|
const (
|
|
None = iota
|
|
Low
|
|
Medium
|
|
High
|
|
Critical
|
|
)
|
|
|
|
func SeverityValue(severity string) int {
|
|
sevMap := map[string]int{
|
|
"NONE": None,
|
|
"LOW": Low,
|
|
"MEDIUM": Medium,
|
|
"HIGH": High,
|
|
"CRITICAL": Critical,
|
|
}
|
|
|
|
return sevMap[severity]
|
|
}
|