Class: Split::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/split/configuration.rb', line 208

def initialize
  @ignore_ip_addresses = []
  @ignore_filter = proc{ |request| is_robot? || is_ignored_ip_address? }
  @db_failover = false
  @db_failover_on_db_error = proc{|error|} # e.g. use Rails logger here
  @on_experiment_reset = proc{|experiment|}
  @on_experiment_delete = proc{|experiment|}
  @on_before_experiment_reset = proc{|experiment|}
  @on_before_experiment_delete = proc{|experiment|}
  @db_failover_allow_parameter_override = false
  @allow_multiple_experiments = false
  @enabled = true
  @experiments = {}
  @persistence = Split::Persistence::SessionAdapter
  @persistence_cookie_length = 31536000 # One year from now
  @algorithm = Split::Algorithms::WeightedSample
  @include_rails_helper = true
  @beta_probability_simulations = 10000
  @winning_alternative_recalculation_interval = 60 * 60 * 24 # 1 day
  @redis = ENV.fetch(ENV.fetch('REDIS_PROVIDER', 'REDIS_URL'), 'redis://localhost:6379')
end

Instance Attribute Details

#algorithmObject

Returns the value of attribute algorithm.



15
16
17
# File 'lib/split/configuration.rb', line 15

def algorithm
  @algorithm
end

#allow_multiple_experimentsObject

Returns the value of attribute allow_multiple_experiments.



11
12
13
# File 'lib/split/configuration.rb', line 11

def allow_multiple_experiments
  @allow_multiple_experiments
end

#beta_probability_simulationsObject

Returns the value of attribute beta_probability_simulations.



27
28
29
# File 'lib/split/configuration.rb', line 27

def beta_probability_simulations
  @beta_probability_simulations
end

#botsObject

Returns the value of attribute bots.



4
5
6
# File 'lib/split/configuration.rb', line 4

def bots
  @bots
end

#db_failoverObject

Returns the value of attribute db_failover.



8
9
10
# File 'lib/split/configuration.rb', line 8

def db_failover
  @db_failover
end

#db_failover_allow_parameter_overrideObject

Returns the value of attribute db_failover_allow_parameter_override.



10
11
12
# File 'lib/split/configuration.rb', line 10

def db_failover_allow_parameter_override
  @db_failover_allow_parameter_override
end

#db_failover_on_db_errorObject

Returns the value of attribute db_failover_on_db_error.



9
10
11
# File 'lib/split/configuration.rb', line 9

def db_failover_on_db_error
  @db_failover_on_db_error
end

#enabledObject

Returns the value of attribute enabled.



12
13
14
# File 'lib/split/configuration.rb', line 12

def enabled
  @enabled
end

#experimentsObject

Returns the value of attribute experiments.



31
32
33
# File 'lib/split/configuration.rb', line 31

def experiments
  @experiments
end

#ignore_filterObject

Returns the value of attribute ignore_filter.



7
8
9
# File 'lib/split/configuration.rb', line 7

def ignore_filter
  @ignore_filter
end

#ignore_ip_addressesObject

Returns the value of attribute ignore_ip_addresses.



6
7
8
# File 'lib/split/configuration.rb', line 6

def ignore_ip_addresses
  @ignore_ip_addresses
end

#include_rails_helperObject

Returns the value of attribute include_rails_helper.



26
27
28
# File 'lib/split/configuration.rb', line 26

def include_rails_helper
  @include_rails_helper
end

#on_before_experiment_deleteObject

Returns the value of attribute on_before_experiment_delete.



25
26
27
# File 'lib/split/configuration.rb', line 25

def on_before_experiment_delete
  @on_before_experiment_delete
end

#on_before_experiment_resetObject

Returns the value of attribute on_before_experiment_reset.



24
25
26
# File 'lib/split/configuration.rb', line 24

def on_before_experiment_reset
  @on_before_experiment_reset
end

#on_experiment_deleteObject

Returns the value of attribute on_experiment_delete.



23
24
25
# File 'lib/split/configuration.rb', line 23

def on_experiment_delete
  @on_experiment_delete
end

#on_experiment_resetObject

Returns the value of attribute on_experiment_reset.



22
23
24
# File 'lib/split/configuration.rb', line 22

def on_experiment_reset
  @on_experiment_reset
end

#on_trialObject

Returns the value of attribute on_trial.



19
20
21
# File 'lib/split/configuration.rb', line 19

def on_trial
  @on_trial
end

#on_trial_chooseObject

Returns the value of attribute on_trial_choose.



20
21
22
# File 'lib/split/configuration.rb', line 20

def on_trial_choose
  @on_trial_choose
end

#on_trial_completeObject

Returns the value of attribute on_trial_complete.



21
22
23
# File 'lib/split/configuration.rb', line 21

def on_trial_complete
  @on_trial_complete
end

#persistenceObject

Returns the value of attribute persistence.



13
14
15
# File 'lib/split/configuration.rb', line 13

def persistence
  @persistence
end

Returns the value of attribute persistence_cookie_length.



14
15
16
# File 'lib/split/configuration.rb', line 14

def persistence_cookie_length
  @persistence_cookie_length
end

#redisObject

Returns the value of attribute redis.



29
30
31
# File 'lib/split/configuration.rb', line 29

def redis
  @redis
end

#reset_manuallyObject

Returns the value of attribute reset_manually.



18
19
20
# File 'lib/split/configuration.rb', line 18

def reset_manually
  @reset_manually
end

#robot_regexObject

Returns the value of attribute robot_regex.



5
6
7
# File 'lib/split/configuration.rb', line 5

def robot_regex
  @robot_regex
end

#start_manuallyObject

Returns the value of attribute start_manually.



17
18
19
# File 'lib/split/configuration.rb', line 17

def start_manually
  @start_manually
end

#store_overrideObject

Returns the value of attribute store_override.



16
17
18
# File 'lib/split/configuration.rb', line 16

def store_override
  @store_override
end

#winning_alternative_recalculation_intervalObject

Returns the value of attribute winning_alternative_recalculation_interval.



28
29
30
# File 'lib/split/configuration.rb', line 28

def winning_alternative_recalculation_interval
  @winning_alternative_recalculation_interval
end

Instance Method Details

#disabled?Boolean

Returns:

  • (Boolean)


116
117
118
# File 'lib/split/configuration.rb', line 116

def disabled?
  !enabled
end

#experiment_for(name) ⇒ Object



120
121
122
123
124
125
# File 'lib/split/configuration.rb', line 120

def experiment_for(name)
  if normalized_experiments
    # TODO symbols
    normalized_experiments[name.to_sym]
  end
end

#metricsObject



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/split/configuration.rb', line 127

def metrics
  return @metrics if defined?(@metrics)
  @metrics = {}
  if self.experiments
    self.experiments.each do |key, value|
      metrics = value_for(value, :metric) rescue nil
      Array(metrics).each do |metric_name|
        if metric_name
          @metrics[metric_name.to_sym] ||= []
          @metrics[metric_name.to_sym] << Split::Experiment.new(key)
        end
      end
    end
  end
  @metrics
end

#normalize_alternatives(alternatives) ⇒ Object



173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'lib/split/configuration.rb', line 173

def normalize_alternatives(alternatives)
  given_probability, num_with_probability = alternatives.inject([0,0]) do |a,v|
    p, n = a
    if percent = value_for(v, :percent)
      [p + percent, n + 1]
    else
      a
    end
  end

  num_without_probability = alternatives.length - num_with_probability
  unassigned_probability = ((100.0 - given_probability) / num_without_probability / 100.0)

  if num_with_probability.nonzero?
    alternatives = alternatives.map do |v|
      if (name = value_for(v, :name)) && (percent = value_for(v, :percent))
        { name => percent / 100.0 }
      elsif name = value_for(v, :name)
        { name => unassigned_probability }
      else
        { v => unassigned_probability }
      end
    end

    [alternatives.shift, alternatives]
  else
    alternatives = alternatives.dup
    [alternatives.shift, alternatives]
  end
end

#normalized_experimentsObject



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/split/configuration.rb', line 144

def normalized_experiments
  return nil if @experiments.nil?

  experiment_config = {}
  @experiments.keys.each do |name|
    experiment_config[name.to_sym] = {}
  end

  @experiments.each do |experiment_name, settings|
    alternatives = if (alts = value_for(settings, :alternatives))
                     normalize_alternatives(alts)
                   end

    experiment_data = {
      alternatives: alternatives,
      goals: value_for(settings, :goals),
      metadata: value_for(settings, :metadata),
      algorithm: value_for(settings, :algorithm),
      resettable: value_for(settings, :resettable)
    }

    experiment_data.each do |name, value|
      experiment_config[experiment_name.to_sym][name] = value if value != nil
    end
  end

  experiment_config
end

#redis_urlObject



235
236
237
238
# File 'lib/split/configuration.rb', line 235

def redis_url
  warn '[DEPRECATED] `redis_url` is deprecated in favor of `redis`'
  self.redis
end

#redis_url=(value) ⇒ Object



230
231
232
233
# File 'lib/split/configuration.rb', line 230

def redis_url=(value)
  warn '[DEPRECATED] `redis_url=` is deprecated in favor of `redis=`'
  self.redis = value
end