Sha256: d9455fbd437e19007f1804b7cba44420ebec0c45c14997241f00c7fc37f46a24

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

module CC
  module Analyzer
    class EngineOutputFilter
      ISSUE_TYPE = "issue".freeze

      def initialize(config = {})
        @config = config
      end

      def filter?(output)
        return true unless output.present?

        if (json = parse_as_json(output))
          issue?(json) && ignore_issue?(json)
        else
          false
        end
      end

      private

      def parse_as_json(output)
        JSON.parse(output)
      rescue JSON::ParserError
        nil
      end

      def issue?(json)
        json["type"] && json["type"].downcase == ISSUE_TYPE
      end

      def ignore_issue?(json)
        check_disabled?(json) || ignore_fingerprint?(json)
      end

      def check_disabled?(json)
        !check_config(json["check_name"]).fetch("enabled", true)
      end

      def ignore_fingerprint?(json)
        if (fingerprint = json["fingerprint"])
          @config.fetch("exclude_fingerprints", []).include?(fingerprint)
        else
          false
        end
      end

      def check_config(check_name)
        @checks ||= @config.fetch("checks", {})
        @checks.fetch(check_name, {})
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
codeclimate-0.15.2 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.15.1 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.15.0 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.14.7 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.14.6 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.14.5 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.14.4 lib/cc/analyzer/engine_output_filter.rb
codeclimate-0.14.3 lib/cc/analyzer/engine_output_filter.rb