Sha256: b410a362d43ff11ae2cba3a167cde5b4889924d415d64d608cba87b8c0065a19
Contents?: true
Size: 1.59 KB
Versions: 19
Compression:
Stored size: 1.59 KB
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/agent/reporting/reporting_events/application_reporting_event' module Contrast module Agent module Reporting # This is the new Preflight class which will include all the needed information for the new reporting system # to report a Preflight message to TeamServer. This message represents the identifying information of a # collection of Findings/Traces, which TeamServer will use to determine if it requires the full information of # any of the Findings/Traces to be reported. class Preflight < Contrast::Agent::Reporting::ApplicationReportingEvent # For our purposes, we'll only ever send one message per request; however, # we must use an array to conform to the specification. # @return messages [Array<Contrast::Agent::Reporting::PreflightMessage>] attr_reader :messages def initialize @event_method = :PUT @event_endpoint = "#{ Contrast::API.api_url }/api/ng/preflight/" @messages = [] super end def file_name 'preflight' end # Convert the instance variables on the class, and other information, into the identifiers required for # TeamServer to process the JSON form of this message. # # @return [Hash] # @raise [ArgumentError] def to_controlled_hash { messages: @messages.map(&:to_controlled_hash) } end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems