-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathoptimizely_config.py
225 lines (166 loc) · 7.53 KB
/
optimizely_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
172
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# Copyright 2020, Optimizely
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import copy
from .project_config import ProjectConfig
class OptimizelyConfig(object):
def __init__(self, revision, experiments_map, features_map):
self.revision = revision
self.experiments_map = experiments_map
self.features_map = features_map
class OptimizelyExperiment(object):
def __init__(self, id, key, variations_map):
self.id = id
self.key = key
self.variations_map = variations_map
class OptimizelyFeature(object):
def __init__(self, id, key, experiments_map, variables_map):
self.id = id
self.key = key
self.experiments_map = experiments_map
self.variables_map = variables_map
class OptimizelyVariation(object):
def __init__(self, id, key, feature_enabled, variables_map):
self.id = id
self.key = key
self.feature_enabled = feature_enabled
self.variables_map = variables_map
class OptimizelyVariable(object):
def __init__(self, id, key, variable_type, value):
self.id = id
self.key = key
self.type = variable_type
self.value = value
class OptimizelyConfigService(object):
""" Class encapsulating methods to be used in creating instance of OptimizelyConfig. """
def __init__(self, project_config):
"""
Args:
project_config ProjectConfig
"""
self.is_valid = True
if not isinstance(project_config, ProjectConfig):
self.is_valid = False
return
self.experiments = project_config.experiments
self.feature_flags = project_config.feature_flags
self.groups = project_config.groups
self.revision = project_config.revision
self._create_lookup_maps()
def get_config(self):
""" Gets instance of OptimizelyConfig
Returns:
Optimizely Config instance or None if OptimizelyConfigService is invalid.
"""
if not self.is_valid:
return None
experiments_key_map, experiments_id_map = self._get_experiments_maps()
features_map = self._get_features_map(experiments_id_map)
return OptimizelyConfig(self.revision, experiments_key_map, features_map)
def _create_lookup_maps(self):
""" Creates lookup maps to avoid redundant iteration of config objects. """
self.exp_id_to_feature_map = {}
self.feature_key_variable_key_to_variable_map = {}
self.feature_key_variable_id_to_variable_map = {}
for feature in self.feature_flags:
for experiment_id in feature['experimentIds']:
self.exp_id_to_feature_map[experiment_id] = feature
variables_key_map = {}
variables_id_map = {}
for variable in feature.get('variables', []):
opt_variable = OptimizelyVariable(
variable['id'], variable['key'], variable['type'], variable['defaultValue']
)
variables_key_map[variable['key']] = opt_variable
variables_id_map[variable['id']] = opt_variable
self.feature_key_variable_key_to_variable_map[feature['key']] = variables_key_map
self.feature_key_variable_id_to_variable_map[feature['key']] = variables_id_map
def _get_variables_map(self, experiment, variation):
""" Gets variables map for given experiment and variation.
Args:
experiment dict -- Experiment parsed from the datafile.
variation dict -- Variation of the given experiment.
Returns:
dict - Map of variable key to OptimizelyVariable for the given variation.
"""
feature_flag = self.exp_id_to_feature_map.get(experiment['id'], None)
if feature_flag is None:
return {}
# set default variables for each variation
variables_map = {}
variables_map = copy.deepcopy(self.feature_key_variable_key_to_variable_map[feature_flag['key']])
# set variation specific variable value if any
if variation.get('featureEnabled'):
for variable in variation.get('variables', []):
feature_variable = self.feature_key_variable_id_to_variable_map[feature_flag['key']][variable['id']]
variables_map[feature_variable.key].value = variable['value']
return variables_map
def _get_variations_map(self, experiment):
""" Gets variation map for the given experiment.
Args:
experiment dict -- Experiment parsed from the datafile.
Returns:
dict -- Map of variation key to OptimizelyVariation.
"""
variations_map = {}
for variation in experiment.get('variations', []):
variables_map = self._get_variables_map(experiment, variation)
feature_enabled = variation.get('featureEnabled', None)
optly_variation = OptimizelyVariation(
variation['id'], variation['key'], feature_enabled, variables_map
)
variations_map[variation['key']] = optly_variation
return variations_map
def _get_all_experiments(self):
""" Gets all experiments in the project config.
Returns:
list -- List of dicts of experiments.
"""
experiments = self.experiments
for group in self.groups:
experiments = experiments + group['experiments']
return experiments
def _get_experiments_maps(self):
""" Gets maps for all the experiments in the project config.
Returns:
dict, dict -- experiment key/id to OptimizelyExperiment maps.
"""
# Key map is required for the OptimizelyConfig response.
experiments_key_map = {}
# Id map comes in handy to figure out feature experiment.
experiments_id_map = {}
all_experiments = self._get_all_experiments()
for exp in all_experiments:
optly_exp = OptimizelyExperiment(
exp['id'], exp['key'], self._get_variations_map(exp)
)
experiments_key_map[exp['key']] = optly_exp
experiments_id_map[exp['id']] = optly_exp
return experiments_key_map, experiments_id_map
def _get_features_map(self, experiments_id_map):
""" Gets features map for the project config.
Args:
experiments_id_map dict -- experiment id to OptimizelyExperiment map
Returns:
dict -- feaure key to OptimizelyFeature map
"""
features_map = {}
for feature in self.feature_flags:
exp_map = {}
for experiment_id in feature.get('experimentIds', []):
optly_exp = experiments_id_map[experiment_id]
exp_map[optly_exp.key] = optly_exp
variables_map = self.feature_key_variable_key_to_variable_map[feature['key']]
optly_feature = OptimizelyFeature(
feature['id'], feature['key'], exp_map, variables_map
)
features_map[feature['key']] = optly_feature
return features_map