Sha256: 614ccf694d151cc7ef8d38e3cbb719e3e614072cd2757c10896db44d4670eee6

Contents?: true

Size: 1.91 KB

Versions: 15

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # Checks for the use of output calls like puts and print
      #
      # @safety
      #   This cop's autocorrection is unsafe because depending on the Rails log level configuration,
      #   changing from `puts` to `Rails.logger.debug` could result in no output being shown.
      #
      # @example
      #   # bad
      #   puts 'A debug message'
      #   pp 'A debug message'
      #   print 'A debug message'
      #
      #   # good
      #   Rails.logger.debug 'A debug message'
      class Output < Base
        include RangeHelp
        extend AutoCorrector

        MSG = "Do not write to stdout. Use Rails's logger if you want to log."
        RESTRICT_ON_SEND = %i[ap p pp pretty_print print puts binwrite syswrite write write_nonblock].freeze
        ALLOWED_TYPES = %i[send csend block numblock].freeze

        def_node_matcher :output?, <<~PATTERN
          (send nil? {:ap :p :pp :pretty_print :print :puts} ...)
        PATTERN

        def_node_matcher :io_output?, <<~PATTERN
          (send
            {
              (gvar #match_gvar?)
              (const {nil? cbase} {:STDOUT :STDERR})
            }
            {:binwrite :syswrite :write :write_nonblock}
            ...)
        PATTERN

        def on_send(node)
          return if ALLOWED_TYPES.include?(node.parent&.type)
          return if !output?(node) && !io_output?(node)

          range = offense_range(node)

          add_offense(range) do |corrector|
            corrector.replace(range, 'Rails.logger.debug')
          end
        end

        private

        def match_gvar?(sym)
          %i[$stdout $stderr].include?(sym)
        end

        def offense_range(node)
          if node.receiver
            range_between(node.source_range.begin_pos, node.loc.selector.end_pos)
          else
            node.loc.selector
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 4 rubygems

Version Path
rubocop-rails-2.27.0 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.26.2 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.26.1 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.26.0 lib/rubocop/cop/rails/output.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.25.1/lib/rubocop/cop/rails/output.rb
rubocop-rails-2.25.1 lib/rubocop/cop/rails/output.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.25.0/lib/rubocop/cop/rails/output.rb
rubocop-rails-2.24.1 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.24.0 lib/rubocop/cop/rails/output.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.23.1/lib/rubocop/cop/rails/output.rb
rubocop-rails-2.23.1 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.23.0 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.22.2 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.22.1 lib/rubocop/cop/rails/output.rb
rubocop-rails-2.22.0 lib/rubocop/cop/rails/output.rb