Sha256: d45fc0415a5fbdad6c677cbbe91a7c6825ace57adbc97ec5007e0316d6983fce
Contents?: true
Size: 1.58 KB
Versions: 8
Compression:
Stored size: 1.58 KB
Contents
require 'active_support/all' require_relative 'base_conditions_limiter' module Gitlab module Triage module Limiters class DateConditionsLimiter < BaseConditionsLimiter ATTRIBUTES = %w[updated_at created_at].freeze CONDITIONS = %w[older_than newer_than].freeze INTERVAL_TYPES = %w[days weeks months years].freeze def self.limiter_parameters [ { name: :attribute, type: String, values: ATTRIBUTES }, { name: :condition, type: String, values: CONDITIONS }, { name: :interval_type, type: String, values: INTERVAL_TYPES }, { name: :interval, type: Numeric } ] end def initialize_variables(condition) @attribute = condition[:attribute].to_sym @condition = condition[:condition].to_sym @interval_type = condition[:interval_type].to_sym @interval = condition[:interval] end def resource_value @resource[@attribute].to_date end def condition_value @interval.public_send(@interval_type).ago.to_date # rubocop:disable GitlabSecurity/PublicSend end def calculate case @condition when :older_than resource_value < condition_value when :newer_than resource_value > condition_value end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems