Sha256: be28815043baa049efa11669f1aecf174b28e423e8e936c595b257b44f45649a

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

require_relative 'base_conditions_filter'

module Gitlab
  module Triage
    module Filters
      class VotesConditionsFilter < BaseConditionsFilter
        ATTRIBUTES = %w[upvotes downvotes].freeze
        CONDITIONS = %w[greater_than less_than].freeze

        def self.filter_parameters
          [
            {
              name: :attribute,
              type: String,
              values: ATTRIBUTES
            },
            {
              name: :condition,
              type: String,
              values: CONDITIONS
            },
            {
              name: :threshold,
              type: Numeric
            }
          ]
        end

        def initialize_variables(condition)
          @attribute = condition[:attribute].to_sym
          @condition = condition[:condition].to_sym
          @threshold = condition[:threshold]
        end

        def resource_value
          @resource[@attribute]
        end

        def condition_value
          @threshold
        end

        def calculate
          case @condition
          when :greater_than
            resource_value > condition_value
          when :less_than
            resource_value < condition_value
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gitlab-triage-1.44.3 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.44.2 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.44.1 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.44.0 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.43.2 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.43.1 lib/gitlab/triage/filters/votes_conditions_filter.rb
gitlab-triage-1.43.0 lib/gitlab/triage/filters/votes_conditions_filter.rb