Class: Bibliothecary::MultiParsers::CycloneDX
- Inherits:
-
Object
- Object
- Bibliothecary::MultiParsers::CycloneDX
- Extended by:
- Analyser::TryCache
- Includes:
- Analyser
- Defined in:
- lib/bibliothecary/multi_parsers/cyclonedx.rb
Defined Under Namespace
Classes: ManifestEntries
Constant Summary collapse
- NoComponents =
Class.new(StandardError)
Class Method Summary collapse
- .mapping ⇒ Object
- .parse_cyclonedx_json(file_contents, options: {}) ⇒ Object
- .parse_cyclonedx_xml(file_contents, options: {}) ⇒ Object
- .platform_name ⇒ Object
Methods included from Analyser::TryCache
Methods included from Analyser
create_analysis, create_error_analysis, included
Class Method Details
.mapping ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/bibliothecary/multi_parsers/cyclonedx.rb', line 64 def self.mapping { match_filename("cyclonedx.json") => { kind: "lockfile", parser: :parse_cyclonedx_json, ungroupable: true, }, match_extension("cdx.json") => { kind: "lockfile", parser: :parse_cyclonedx_json, ungroupable: true, }, match_filename("cyclonedx.xml") => { kind: "lockfile", parser: :parse_cyclonedx_xml, ungroupable: true, }, match_extension(".cdx.xml") => { kind: "lockfile", parser: :parse_cyclonedx_xml, ungroupable: true, }, } end |
.parse_cyclonedx_json(file_contents, options: {}) ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/bibliothecary/multi_parsers/cyclonedx.rb', line 93 def self.parse_cyclonedx_json(file_contents, options: {}) manifest = try_cache(, [:filename]) do JSON.parse(file_contents) end raise NoComponents unless manifest["components"] manifest_entries = ManifestEntries.new( parse_queue: manifest["components"] ) manifest_entries.parse!(.fetch(:filename, nil)) do |component, parse_queue| parse_queue.concat(component["components"]) if component["components"] component["purl"] end ParserResult.new(dependencies: manifest_entries.entries.to_a) end |
.parse_cyclonedx_xml(file_contents, options: {}) ⇒ Object
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/bibliothecary/multi_parsers/cyclonedx.rb', line 113 def self.parse_cyclonedx_xml(file_contents, options: {}) manifest = try_cache(, [:filename]) do Ox.parse(file_contents) end root = manifest if root.respond_to?(:bom) root = root.bom end raise NoComponents unless root.locate("components").first manifest_entries = ManifestEntries.new( parse_queue: root.locate("components/*") ) manifest_entries.parse!(.fetch(:filename, nil)) do |component, parse_queue| # #locate returns an empty array if nothing is found, so we can # always safely concatenate it to the parse queue. parse_queue.concat(component.locate("components/*")) component.locate("purl").first&.text end ParserResult.new(dependencies: manifest_entries.entries.to_a) end |
.platform_name ⇒ Object
89 90 91 |
# File 'lib/bibliothecary/multi_parsers/cyclonedx.rb', line 89 def self.platform_name raise "CycloneDX is a multi-parser and does not have a platform name." end |