Class: ActionController::LogSubscriber

Inherits:
ActiveSupport::LogSubscriber
  • Object
show all
Defined in:
lib/action_controller/log_subscriber.rb

Constant Summary collapse

INTERNAL_PARAMS =
%w(controller action format _method only_path)

Instance Method Summary collapse

Instance Method Details

#halted_callback(event) ⇒ Object



45
46
47
# File 'lib/action_controller/log_subscriber.rb', line 45

def halted_callback(event)
  info { "Filter chain halted as #{event.payload[:filter].inspect} rendered or redirected" }
end

#loggerObject



88
89
90
# File 'lib/action_controller/log_subscriber.rb', line 88

def logger
  ActionController::Base.logger
end

#process_action(event) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/action_controller/log_subscriber.rb', line 24

def process_action(event)
  info do
    payload = event.payload
    additions = ActionController::Base.log_process_action(payload)
    status = payload[:status]

    if status.nil? && (exception_class_name = payload[:exception]&.first)
      status = ActionDispatch::ExceptionWrapper.status_code_for_exception(exception_class_name)
    end

    additions << "Allocations: #{event.allocations}"

    message = +"Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms" \
               " (#{additions.join(" | ")})"
    message << "\n\n" if defined?(Rails.env) && Rails.env.development?

    message
  end
end

#redirect_to(event) ⇒ Object



55
56
57
# File 'lib/action_controller/log_subscriber.rb', line 55

def redirect_to(event)
  info { "Redirected to #{event.payload[:location]}" }
end

#send_data(event) ⇒ Object



60
61
62
# File 'lib/action_controller/log_subscriber.rb', line 60

def send_data(event)
  info { "Sent data #{event.payload[:filename]} (#{event.duration.round(1)}ms)" }
end

#send_file(event) ⇒ Object



50
51
52
# File 'lib/action_controller/log_subscriber.rb', line 50

def send_file(event)
  info { "Sent file #{event.payload[:path]} (#{event.duration.round(1)}ms)" }
end

#start_processing(event) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/action_controller/log_subscriber.rb', line 7

def start_processing(event)
  return unless logger.info?

  payload = event.payload
  params = {}
  payload[:params].each_pair do |k, v|
    params[k] = v unless INTERNAL_PARAMS.include?(k)
  end
  format  = payload[:format]
  format  = format.to_s.upcase if format.is_a?(Symbol)
  format  = "*/*" if format.nil?

  info "Processing by #{payload[:controller]}##{payload[:action]} as #{format}"
  info "  Parameters: #{params.inspect}" unless params.empty?
end

#unpermitted_parameters(event) ⇒ Object



65
66
67
68
69
70
71
72
# File 'lib/action_controller/log_subscriber.rb', line 65

def unpermitted_parameters(event)
  debug do
    unpermitted_keys = event.payload[:keys]
    display_unpermitted_keys = unpermitted_keys.map { |e| ":#{e}" }.join(", ")
    context = event.payload[:context].map { |k, v| "#{k}: #{v}" }.join(", ")
    color("Unpermitted parameter#{'s' if unpermitted_keys.size > 1}: #{display_unpermitted_keys}. Context: { #{context} }", RED)
  end
end