Class: Kameleoon::Configuration::Rule

Inherits:
Object
  • Object
show all
Defined in:
lib/kameleoon/configuration/rule.rb

Overview

Rule is a class for new rules of feature flags

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ Rule

Returns a new instance of Rule.



43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/kameleoon/configuration/rule.rb', line 43

def initialize(hash)
  @id = hash['id']
  @order = hash['order']
  @type = RuleType.from_literal(hash['type'])
  @exposition = hash['exposition']
  @experiment_id = hash['experimentId']
  @respool_time = hash['respoolTime']
  @variation_by_exposition = VariationByExposition.create_from_array(hash['variationByExposition'])
  @variation_by_exposition.freeze
  @first_variation = @variation_by_exposition.first
  @targeting_segment = Kameleoon::Targeting::Segment.new((hash['segment'])) if hash['segment']
  @segment_id = @targeting_segment != nil ? targeting_segment.id : -1
end

Instance Attribute Details

#experiment_idObject (readonly)

Returns the value of attribute experiment_id.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def experiment_id
  @experiment_id
end

#expositionObject (readonly)

Returns the value of attribute exposition.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def exposition
  @exposition
end

#first_variationObject (readonly)

Returns the value of attribute first_variation.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def first_variation
  @first_variation
end

#idObject (readonly)

Returns the value of attribute id.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def id
  @id
end

#orderObject (readonly)

Returns the value of attribute order.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def order
  @order
end

#respool_timeObject (readonly)

Returns the value of attribute respool_time.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def respool_time
  @respool_time
end

#segment_idObject (readonly)

Returns the value of attribute segment_id.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def segment_id
  @segment_id
end

#targeting_segmentObject

Returns the value of attribute targeting_segment.



33
34
35
# File 'lib/kameleoon/configuration/rule.rb', line 33

def targeting_segment
  @targeting_segment
end

#typeObject (readonly)

Returns the value of attribute type.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def type
  @type
end

#variation_by_expositionObject (readonly)

Returns the value of attribute variation_by_exposition.



32
33
34
# File 'lib/kameleoon/configuration/rule.rb', line 32

def variation_by_exposition
  @variation_by_exposition
end

Class Method Details

.create_from_array(array) ⇒ Object



35
36
37
# File 'lib/kameleoon/configuration/rule.rb', line 35

def self.create_from_array(array)
  array&.map { |it| Rule.new(it) }
end

Instance Method Details

#experimentation_type?Boolean

Returns:

  • (Boolean)


70
71
72
# File 'lib/kameleoon/configuration/rule.rb', line 70

def experimentation_type?
  @type == RuleType::EXPERIMENTATION
end

#get_variation(hash_double) ⇒ Object



57
58
59
60
61
62
63
64
# File 'lib/kameleoon/configuration/rule.rb', line 57

def get_variation(hash_double)
  total = 0.0
  variation_by_exposition.each do |var_by_exp|
    total += var_by_exp.exposition
    return var_by_exp if total >= hash_double
  end
  nil
end

#get_variation_id_by_key(key) ⇒ Object



66
67
68
# File 'lib/kameleoon/configuration/rule.rb', line 66

def get_variation_id_by_key(key)
  variation_by_exposition.select { |v| v.variation_key == key }.first&.variation_id
end

#targeted_delivery_type?Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/kameleoon/configuration/rule.rb', line 74

def targeted_delivery_type?
  @type == RuleType::TARGETED_DELIVERY
end

#to_sObject



39
40
41
# File 'lib/kameleoon/configuration/rule.rb', line 39

def to_s
  "Rule{id:#{@id}}"
end