debian-mirror-gitlab/lib/gitlab/ci/parsers/sbom/cyclonedx.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.2 KiB
Ruby
Raw Normal View History

2022-08-27 11:52:29 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Parsers
module Sbom
class Cyclonedx
SUPPORTED_SPEC_VERSIONS = %w[1.4].freeze
def parse!(blob, sbom_report)
@report = sbom_report
@data = Gitlab::Json.parse(blob)
return unless valid?
parse_report
rescue JSON::ParserError => e
report.add_error("Report JSON is invalid: #{e}")
end
private
attr_reader :json_data, :report, :data
def schema_validator
@schema_validator ||= Validators::CyclonedxSchemaValidator.new(data)
end
def valid?
valid_schema? && supported_spec_version?
end
def supported_spec_version?
return true if SUPPORTED_SPEC_VERSIONS.include?(data['specVersion'])
report.add_error(
"Unsupported CycloneDX spec version. Must be one of: %{versions}" \
% { versions: SUPPORTED_SPEC_VERSIONS.join(', ') }
)
false
end
def valid_schema?
return true if schema_validator.valid?
schema_validator.errors.each { |error| report.add_error(error) }
false
end
def parse_report
parse_metadata_properties
parse_components
end
def parse_metadata_properties
properties = data.dig('metadata', 'properties')
source = CyclonedxProperties.parse_source(properties)
report.set_source(source) if source
end
def parse_components
2023-01-13 00:05:48 +05:30
data['components']&.each_with_index do |component_data, index|
2022-10-11 01:57:18 +05:30
component = ::Gitlab::Ci::Reports::Sbom::Component.new(
2023-01-13 00:05:48 +05:30
type: component_data['type'],
2022-10-11 01:57:18 +05:30
name: component_data['name'],
2023-01-13 00:05:48 +05:30
purl: component_data['purl'],
2022-10-11 01:57:18 +05:30
version: component_data['version']
)
2023-01-13 00:05:48 +05:30
report.add_component(component) if component.ingestible?
rescue ::Sbom::PackageUrl::InvalidPackageUrl
report.add_error("/components/#{index}/purl is invalid")
2022-08-27 11:52:29 +05:30
end
end
end
end
end
end
end