mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* add new format pattern Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add syftjson format Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add internal formats helper Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add SBOM encode/decode to lib API Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove json presenter + update presenter tests to use common utils Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove presenter format enum type + add formats shim in presenter helper Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add MustCPE helper for tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update usage of format enum Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add test fixtures for encode/decode tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix integration test Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * migrate format detection to use reader Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * address review comments Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
32 lines
590 B
Go
32 lines
590 B
Go
package syftjson
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/anchore/syft/internal/formats/syftjson/model"
|
|
)
|
|
|
|
func validator(reader io.Reader) error {
|
|
type Document struct {
|
|
Schema model.Schema `json:"schema"`
|
|
}
|
|
|
|
dec := json.NewDecoder(reader)
|
|
|
|
var doc Document
|
|
err := dec.Decode(&doc)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode: %w", err)
|
|
}
|
|
|
|
// note: we accept all schema versions
|
|
// TODO: add per-schema version parsing
|
|
if strings.Contains(doc.Schema.URL, "anchore/syft") {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("could not extract syft schema")
|
|
}
|