Sha256: e7997695be234eca37879c373f4cd88afc5434df5f7d4fe706444120a0225dc6

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

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

require 'contrast/utils/job_servers_running'

module Contrast
  module Framework
    module Rails
      # A Railtie to allow for the automatic hooking of the Agent into a Rails application.
      class Railtie < ::Rails::Railtie
        include Contrast::Components::Interface
        access_component :agent, :app_context, :logging

        initializer 'Contrast Ruby Agent Initializer' do |app|
          Rails.logger.debug("In railtie ::#{ app.middleware.inspect }") if defined?(Rails) && defined?(Rails.logger)

          if APP_CONTEXT.instrument_middleware_stack?
            AGENT.insert_middleware(app)
          else
            Rails.logger.debug('Detected a running job server, skipping Contrast middleware insertion.')
            logger.debug('Disabling Contrast for process', p_id: Process.pid)
          end
        end

        rake_tasks do
          load 'contrast/tasks/service.rb'
          load 'contrast/tasks/config.rb'
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
contrast-agent-4.8.0 lib/contrast/framework/rails/railtie.rb