Upload SBOMs/CSAF files flow #59
Replies: 2 comments
-
We do have the importers right now. They directly write into the database, using an existing Rust "service" style functionally. I think it would make sense to have a "single file upload" as well, going through some kind of HTTP based API. I also think that, long term, we should internalize the importer, and have them managed through the core system. Having the configuration and state reflected in the database too. Exposing their state on the UI. |
Beta Was this translation helpful? Give feedback.
-
In my mind, I'd ideally like the "eat my SBOM" to be an atomic blocking operation. Avoid async queue'ing and delays. So...
|
Beta Was this translation helpful? Give feedback.
-
We currently have a way of importing files using the
importer
e.g. https://github.com/trustification/trustify/blob/main/importer/src/csaf/mod.rs#L47What are your thoughts in regards of importing data through a REST Endpoint? What would be the flow? e.g.
I know my description above is quite vague, but I'd just like to understand where we stand in regards of the Upload Flow. I'm asking because I'm interested in giving the creation of the "advisories" rest endpoints a try and "uploading" them is one of them.
Beta Was this translation helpful? Give feedback.
All reactions