Sha256: 4d58caea327d115f574068d63d524ea6cf6ce15be062b99de5e6c94c6ffdb3f0

Contents?: true

Size: 1.56 KB

Versions: 9

Compression:

Stored size: 1.56 KB

Contents

# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

module Contrast
  module Framework
    module Rails
      module Patch
        # This class acts as our patch into the ActionController::Live::Buffer
        # class, allowing us to track the close event on streamed responses.
        module ActionControllerLiveBuffer
          class << self
            def send_messages
              return unless (context = Contrast::Agent::REQUEST_TRACKER.current)

              [context.server_activity, context.activity, context.observed_route].each do |msg|
                Contrast::Agent.messaging_queue.send_event_immediately(msg)
              end
            end

            def instrument
              @_instrument ||= begin
                ::ActionController::Live::Buffer.class_eval do
                  # normally pre->in->post filters are applied however, in a streamed response
                  # we can run into a case where it's pre -> in -> post -> more infilters
                  # in order to submit anything found during the infilters after the response has
                  # been written we need to explicitly send them
                  alias_method :cs__close, :close
                  def close
                    Contrast::Framework::Rails::Patch::ActionControllerLiveBuffer.send_messages
                    cs__close
                  end
                end
                true
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
contrast-agent-4.12.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.11.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.10.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.9.1 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.9.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.8.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.7.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.6.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb
contrast-agent-4.5.0 lib/contrast/framework/rails/patch/action_controller_live_buffer.rb