2021-08-02 11:08:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Reports
|
|
|
|
module Security
|
|
|
|
class Report
|
|
|
|
attr_reader :created_at, :type, :pipeline, :findings, :scanners, :identifiers
|
2022-03-02 19:20:18 -05:00
|
|
|
attr_accessor :scan, :scanned_resources, :errors, :analyzer, :version, :schema_validation_status, :warnings
|
2021-08-02 11:08:56 -04:00
|
|
|
|
|
|
|
delegate :project_id, to: :pipeline
|
|
|
|
|
|
|
|
def initialize(type, pipeline, created_at)
|
|
|
|
@type = type
|
|
|
|
@pipeline = pipeline
|
|
|
|
@created_at = created_at
|
|
|
|
@findings = []
|
|
|
|
@scanners = {}
|
|
|
|
@identifiers = {}
|
|
|
|
@scanned_resources = []
|
|
|
|
@errors = []
|
2022-03-02 19:20:18 -05:00
|
|
|
@warnings = []
|
2021-08-02 11:08:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit_sha
|
|
|
|
pipeline.sha
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_error(type, message = 'An unexpected error happened!')
|
|
|
|
errors << { type: type, message: message }
|
|
|
|
end
|
|
|
|
|
2022-03-02 19:20:18 -05:00
|
|
|
def add_warning(type, message)
|
|
|
|
warnings << { type: type, message: message }
|
|
|
|
end
|
|
|
|
|
2021-08-02 11:08:56 -04:00
|
|
|
def errored?
|
|
|
|
errors.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_scanner(scanner)
|
|
|
|
scanners[scanner.key] ||= scanner
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_identifier(identifier)
|
|
|
|
identifiers[identifier.key] ||= identifier
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_finding(finding)
|
|
|
|
findings << finding
|
|
|
|
end
|
|
|
|
|
|
|
|
def clone_as_blank
|
|
|
|
Report.new(type, pipeline, created_at)
|
|
|
|
end
|
|
|
|
|
|
|
|
def replace_with!(other)
|
|
|
|
instance_variables.each do |ivar|
|
2021-12-14 07:13:33 -05:00
|
|
|
instance_variable_set(ivar, other.public_send(ivar.to_s[1..])) # rubocop:disable GitlabSecurity/PublicSend
|
2021-08-02 11:08:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge!(other)
|
|
|
|
replace_with!(::Security::MergeReportsService.new(self, other).execute)
|
|
|
|
end
|
|
|
|
|
|
|
|
def primary_scanner
|
|
|
|
scanners.first&.second
|
|
|
|
end
|
|
|
|
|
|
|
|
def primary_scanner_order_to(other)
|
|
|
|
return 1 unless primary_scanner
|
|
|
|
return -1 unless other.primary_scanner
|
|
|
|
|
|
|
|
primary_scanner <=> other.primary_scanner
|
|
|
|
end
|
2021-11-09 13:13:13 -05:00
|
|
|
|
|
|
|
def has_signatures?
|
|
|
|
findings.any?(&:has_signatures?)
|
|
|
|
end
|
2021-08-02 11:08:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|