Sha256: 6810c3696f019dedb7e68416659640d4b1ef69d48f695ad5e4b57f4d65245607
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
module SplitIoClient class BetweenMatcher < NoMethodError attr_reader :matcher_type def initialize(attribute_hash) @matcher_type = "BETWEEN" @attribute = attribute_hash[:attribute] @data_type = attribute_hash[:data_type] @start_value = get_formatted_value attribute_hash[:start_value], true @end_value = get_formatted_value attribute_hash[:end_value], true end def match?(value, _matching_key, _bucketing_key, _evaluator) matches = false if !value.nil? param_value = get_formatted_value(value) matches = param_value.is_a?(Integer) ? ((param_value >= @start_value) && (param_value <= @end_value)) : false end matches end def equals?(obj) if obj.nil? false elsif !obj.instance_of?(BetweenMatcher) false elsif self.equal?(obj) true else false end end private def get_formatted_value(value, is_sdk_data = false) case @data_type when "NUMBER" return value when "DATETIME" value = value/1000 if is_sdk_data return SplitIoClient::Utilities.to_milis_zero_out_from_seconds value else @logger.error('Invalid data type') end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
splitclient-rb-4.3.0.canary.2 | lib/splitclient-rb/engine/matchers/between_matcher.rb |
splitclient-rb-4.3.0.canary.1 | lib/splitclient-rb/engine/matchers/between_matcher.rb |