Class: Unleash::FeatureToggle

Inherits:
Object
  • Object
show all
Defined in:
lib/unleash/feature_toggle.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}, segment_map = {}) ⇒ FeatureToggle

Returns a new instance of FeatureToggle.



12
13
14
15
16
17
18
19
20
# File 'lib/unleash/feature_toggle.rb', line 12

def initialize(params = {}, segment_map = {})
  params = {} if params.nil?

  self.name       = params.fetch('name', nil)
  self.enabled    = params.fetch('enabled', false)

  self.strategies = initialize_strategies(params, segment_map)
  self.variant_definitions = initialize_variant_definitions(params)
end

Instance Attribute Details

#enabledObject

Returns the value of attribute enabled.



10
11
12
# File 'lib/unleash/feature_toggle.rb', line 10

def enabled
  @enabled
end

#nameObject

Returns the value of attribute name.



10
11
12
# File 'lib/unleash/feature_toggle.rb', line 10

def name
  @name
end

#strategiesObject

Returns the value of attribute strategies.



10
11
12
# File 'lib/unleash/feature_toggle.rb', line 10

def strategies
  @strategies
end

#variant_definitionsObject

Returns the value of attribute variant_definitions.



10
11
12
# File 'lib/unleash/feature_toggle.rb', line 10

def variant_definitions
  @variant_definitions
end

Class Method Details

.disabled_variantObject



48
49
50
# File 'lib/unleash/feature_toggle.rb', line 48

def self.disabled_variant
  Unleash::Variant.new(name: 'disabled', enabled: false)
end

Instance Method Details

#get_variant(context, fallback_variant = Unleash::FeatureToggle.disabled_variant) ⇒ Object

Raises:

  • (ArgumentError)


35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/unleash/feature_toggle.rb', line 35

def get_variant(context, fallback_variant = Unleash::FeatureToggle.disabled_variant)
  raise ArgumentError, "Provided fallback_variant is not of type Unleash::Variant" if fallback_variant.class.name != 'Unleash::Variant'

  context = ensure_valid_context(context)

  toggle_enabled = am_enabled?(context)
  variant = resolve_variant(context, toggle_enabled)

  choice = toggle_enabled ? :yes : :no
  Unleash.toggle_metrics.increment_variant(self.name, choice, variant.name) unless Unleash.configuration.disable_metrics
  variant
end

#is_enabled?(context) ⇒ Boolean

Returns:

  • (Boolean)


26
27
28
29
30
31
32
33
# File 'lib/unleash/feature_toggle.rb', line 26

def is_enabled?(context)
  result = am_enabled?(context)

  choice = result ? :yes : :no
  Unleash.toggle_metrics.increment(name, choice) unless Unleash.configuration.disable_metrics

  result
end

#to_sObject



22
23
24
# File 'lib/unleash/feature_toggle.rb', line 22

def to_s
  "<FeatureToggle: name=#{name},enabled=#{enabled},strategies=#{strategies},variant_definitions=#{variant_definitions}>"
end