log_subscriber.rb 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9
require 'active_support/core_ext/object/blank'

module ActionController
  class LogSubscriber < ActiveSupport::LogSubscriber
    INTERNAL_PARAMS = %w(controller action format _method only_path)

    def start_processing(event)
      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 18 19 20
      info "  Parameters: #{params.inspect}" unless params.empty?
    end

    def process_action(event)
      payload   = event.payload
      additions = ActionController::Base.log_process_action(payload)

21 22
      status = payload[:status]
      if status.nil? && payload[:exception].present?
23 24
        status = Rack::Utils.status_code(ActionDispatch::ShowExceptions.rescue_responses[payload[:exception].first]) rescue nil
      end
25
      message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in %.0fms" % event.duration
26
      message << " (#{additions.join(" | ")})" unless additions.blank?
27
      message << "\n"
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

      info(message)
    end

    def send_file(event)
      message = "Sent file %s"
      message << " (%.1fms)"
      info(message % [event.payload[:path], event.duration])
    end

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

    def send_data(event)
      info("Sent data %s (%.1fms)" % [event.payload[:filename], event.duration])
    end

    %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)
          key_or_path = event.payload[:key] || event.payload[:path]
          human_name  = #{method.to_s.humanize.inspect}
52
          info("\#{human_name} \#{key_or_path} \#{"(%.1fms)" % event.duration}")
53 54 55 56 57 58 59 60 61 62
        end
      METHOD
    end

    def logger
      ActionController::Base.logger
    end
  end
end

63
ActionController::LogSubscriber.attach_to :action_controller