log_subscriber.rb 2.4 KB
Newer Older
1 2 3 4 5
module ActionController
  class LogSubscriber < ActiveSupport::LogSubscriber
    INTERNAL_PARAMS = %w(controller action format _method only_path)

    def start_processing(event)
6 7
      return unless logger.info?

8 9
      payload = event.payload
      params  = payload[:params].except(*INTERNAL_PARAMS)
J
José Valim 已提交
10 11
      format  = payload[:format]
      format  = format.to_s.upcase if format.is_a?(Symbol)
12

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

    def process_action(event)
18 19 20 21 22 23 24 25 26 27
      info do
        payload   = event.payload
        additions = ActionController::Base.log_process_action(payload)

        status = payload[:status]
        if status.nil? && payload[:exception].present?
          exception_class_name = payload[:exception].first
          status = ActionDispatch::ExceptionWrapper.status_code_for_exception(exception_class_name)
        end
        message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms"
28
        message << " (#{additions.join(" | ".freeze)})" unless additions.blank?
29
        message
30
      end
31 32
    end

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

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

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

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

49
    def unpermitted_parameters(event)
50 51 52 53
      debug do
        unpermitted_keys = event.payload[:keys]
        "Unpermitted parameter#{'s' if unpermitted_keys.size > 1}: #{unpermitted_keys.join(", ")}"
      end
54 55
    end

56 57 58 59
    %w(write_fragment read_fragment exist_fragment?
       expire_fragment expire_page write_page).each do |method|
      class_eval <<-METHOD, __FILE__, __LINE__ + 1
        def #{method}(event)
60
          return unless logger.info?
61 62
          key_or_path = event.payload[:key] || event.payload[:path]
          human_name  = #{method.to_s.humanize.inspect}
63
          info("\#{human_name} \#{key_or_path} (\#{event.duration.round(1)}ms)")
64 65 66 67 68 69 70 71 72 73
        end
      METHOD
    end

    def logger
      ActionController::Base.logger
    end
  end
end

74
ActionController::LogSubscriber.attach_to :action_controller