-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclient_initialize_response.go
310 lines (292 loc) · 10.7 KB
/
client_initialize_response.go
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
package statsig
import (
"strings"
)
type ClientInitializeResponse struct {
FeatureGates map[string]GateInitializeResponse `json:"feature_gates"`
DynamicConfigs map[string]ConfigInitializeResponse `json:"dynamic_configs"`
LayerConfigs map[string]LayerInitializeResponse `json:"layer_configs"`
SdkParams map[string]string `json:"sdkParams"`
HasUpdates bool `json:"has_updates"`
Generator string `json:"generator"`
EvaluatedKeys map[string]interface{} `json:"evaluated_keys"`
Time int64 `json:"time"`
SDKInfo SDKInfo `json:"sdkInfo"`
User User `json:"user"`
HashUsed string `json:"hash_used"`
}
type SDKInfo struct {
SDKType string `json:"sdkType"`
SDKVersion string `json:"sdkVersion"`
}
type ConfigType = string
const (
FeatureGateType ConfigType = "feature_gate"
HoldoutType ConfigType = "holdout"
SegmentType ConfigType = "segment"
DynamicConfigType ConfigType = "dynamic_config"
ExperimentType ConfigType = "experiment"
AutotuneType ConfigType = "autotune"
LayerType ConfigType = "layer"
UnknownType ConfigType = "unknown"
)
type baseSpecInitializeResponse struct {
Name string `json:"name"`
RuleID string `json:"rule_id"`
SecondaryExposures []SecondaryExposure `json:"secondary_exposures"`
ConfigType ConfigType `json:"config_type,omitempty"`
}
type GateInitializeResponse struct {
baseSpecInitializeResponse
Value bool `json:"value"`
IDType string `json:"id_type,omitempty"`
}
type ConfigInitializeResponse struct {
baseSpecInitializeResponse
Value map[string]interface{} `json:"value"`
Group string `json:"group"`
IsDeviceBased bool `json:"is_device_based"`
IsExperimentActive *bool `json:"is_experiment_active,omitempty"`
IsUserInExperiment *bool `json:"is_user_in_experiment,omitempty"`
IsInLayer *bool `json:"is_in_layer,omitempty"`
ExplicitParameters *[]string `json:"explicit_parameters,omitempty"`
GroupName string `json:"group_name,omitempty"`
IDType string `json:"id_type,omitempty"`
RulePassed bool `json:"passed"`
}
type LayerInitializeResponse struct {
baseSpecInitializeResponse
Value map[string]interface{} `json:"value"`
Group string `json:"group"`
IsDeviceBased bool `json:"is_device_based"`
IsExperimentActive *bool `json:"is_experiment_active,omitempty"`
IsUserInExperiment *bool `json:"is_user_in_experiment,omitempty"`
ExplicitParameters *[]string `json:"explicit_parameters,omitempty"`
AllocatedExperimentName string `json:"allocated_experiment_name,omitempty"`
UndelegatedSecondaryExposures []SecondaryExposure `json:"undelegated_secondary_exposures"`
GroupName string `json:"group_name,omitempty"`
}
func mergeMaps(a map[string]interface{}, b map[string]interface{}) {
for k, v := range b {
a[k] = v
}
}
func getConfigType(spec configSpec) ConfigType {
switch spec.Entity {
case "feature_gate":
return FeatureGateType
case "holdout":
return HoldoutType
case "segment":
return SegmentType
case "dynamic_config":
return DynamicConfigType
case "experiment":
return ExperimentType
case "autotune":
return AutotuneType
case "layer":
return LayerType
default:
return UnknownType
}
}
func getClientInitializeResponse(
user User,
e *evaluator,
context *evalContext,
) ClientInitializeResponse {
hashAlgorithm := context.Hash
if hashAlgorithm != "none" && hashAlgorithm != "djb2" {
hashAlgorithm = "sha256"
}
evalResultToBaseResponse := func(name string, eval *evalResult) (string, baseSpecInitializeResponse) {
hashedName := hashName(hashAlgorithm, name)
result := baseSpecInitializeResponse{
Name: hashedName,
RuleID: eval.RuleID,
SecondaryExposures: eval.SecondaryExposures,
}
return hashedName, result
}
gateToResponse := func(gateName string, spec configSpec) (string, GateInitializeResponse) {
evalRes := &evalResult{}
if context.IncludeLocalOverrides {
if gateOverride, hasOverride := e.getGateOverrideEval(gateName); hasOverride {
evalRes = gateOverride
} else {
evalRes = e.eval(user, spec, 0, context)
}
} else {
evalRes = e.eval(user, spec, 0, context)
}
hashedName, base := evalResultToBaseResponse(gateName, evalRes)
result := GateInitializeResponse{
baseSpecInitializeResponse: base,
Value: evalRes.Value,
IDType: spec.IDType,
}
if context.IncludeConfigType {
result.ConfigType = getConfigType(spec)
}
return hashedName, result
}
configToResponse := func(configName string, spec configSpec) (string, ConfigInitializeResponse) {
evalRes := &evalResult{}
if context.IncludeLocalOverrides {
if configOverride, hasOverride := e.getConfigOverrideEval(configName); hasOverride {
evalRes = configOverride
} else {
evalRes = e.eval(user, spec, 0, context)
}
} else {
evalRes = e.eval(user, spec, 0, context)
}
hashedName, base := evalResultToBaseResponse(configName, evalRes)
result := ConfigInitializeResponse{
baseSpecInitializeResponse: base,
Value: evalRes.JsonValue,
Group: evalRes.RuleID,
IsDeviceBased: strings.EqualFold(spec.IDType, "stableid"),
IDType: spec.IDType,
RulePassed: evalRes.Value,
}
if context.IncludeConfigType {
result.ConfigType = getConfigType(spec)
}
if evalRes.GroupName != "" {
result.GroupName = evalRes.GroupName
}
if strings.EqualFold(spec.Entity, "experiment") {
result.IsUserInExperiment = new(bool)
*result.IsUserInExperiment = evalRes.IsExperimentGroup != nil && *evalRes.IsExperimentGroup
result.IsExperimentActive = new(bool)
*result.IsExperimentActive = spec.IsActive != nil && *spec.IsActive
if spec.HasSharedParams != nil && *spec.HasSharedParams {
result.IsInLayer = new(bool)
*result.IsInLayer = true
result.ExplicitParameters = new([]string)
*result.ExplicitParameters = spec.ExplicitParameters
layerName, _ := e.store.getExperimentLayer(spec.Name)
layer, exists := e.store.getLayerConfig(layerName)
defaultValue := make(map[string]interface{})
if exists {
mergeMaps(defaultValue, layer.DefaultValueJSON)
mergeMaps(defaultValue, result.Value)
result.Value = defaultValue
}
}
}
return hashedName, result
}
layerToResponse := func(layerName string, spec configSpec) (string, LayerInitializeResponse) {
evalResult := e.eval(user, spec, 0, &evalContext{Hash: hashAlgorithm})
hashedName, base := evalResultToBaseResponse(layerName, evalResult)
result := LayerInitializeResponse{
baseSpecInitializeResponse: base,
Value: evalResult.JsonValue,
Group: evalResult.RuleID,
IsDeviceBased: strings.EqualFold(spec.IDType, "stableid"),
UndelegatedSecondaryExposures: evalResult.UndelegatedSecondaryExposures,
}
if context.IncludeConfigType {
result.ConfigType = getConfigType(spec)
}
delegate := evalResult.ConfigDelegate
result.ExplicitParameters = new([]string)
if len(spec.ExplicitParameters) > 0 {
// spec.ExplicitParameters may be "null" due to how
// JSON Unmarshal works with fields with unallocated memory
*result.ExplicitParameters = spec.ExplicitParameters
} else {
*result.ExplicitParameters = make([]string, 0)
}
if delegate != "" {
delegateSpec, exists := e.store.getDynamicConfig(delegate)
delegateResult := e.eval(user, delegateSpec, 0, context)
if exists {
result.AllocatedExperimentName = hashName(hashAlgorithm, delegate)
result.IsUserInExperiment = new(bool)
*result.IsUserInExperiment = delegateResult.IsExperimentGroup != nil && *delegateResult.IsExperimentGroup
result.IsExperimentActive = new(bool)
*result.IsExperimentActive = delegateSpec.IsActive != nil && *delegateSpec.IsActive
if len(delegateSpec.ExplicitParameters) > 0 {
*result.ExplicitParameters = delegateSpec.ExplicitParameters
}
if delegateResult.GroupName != "" {
result.GroupName = delegateResult.GroupName
}
}
}
return hashedName, result
}
var appId string
if context.TargetAppID != "" {
appId = context.TargetAppID
} else {
appId, _ = e.store.getAppIDForSDKKey(context.ClientKey)
}
filterByEntities := false
gatesLookup := make(map[string]bool)
configsLookup := make(map[string]bool)
if entities, ok := e.store.getEntitiesForSDKKey(context.ClientKey); ok {
filterByEntities = true
for _, gate := range entities.Gates {
gatesLookup[gate] = true
}
for _, config := range entities.Configs {
configsLookup[config] = true
}
}
featureGates := make(map[string]GateInitializeResponse)
dynamicConfigs := make(map[string]ConfigInitializeResponse)
layerConfigs := make(map[string]LayerInitializeResponse)
for name, spec := range e.store.featureGates {
if !spec.hasTargetAppID(appId) {
continue
}
if filterByEntities {
if _, ok := gatesLookup[name]; !ok {
continue
}
}
if !strings.EqualFold(spec.Entity, SegmentType) && !strings.EqualFold(spec.Entity, HoldoutType) {
hashedName, res := gateToResponse(name, spec)
featureGates[hashedName] = res
}
}
for name, spec := range e.store.dynamicConfigs {
if !spec.hasTargetAppID(appId) {
continue
}
if filterByEntities {
if _, ok := configsLookup[name]; !ok {
continue
}
}
hashedName, res := configToResponse(name, spec)
dynamicConfigs[hashedName] = res
}
for name, spec := range e.store.layerConfigs {
if !spec.hasTargetAppID(appId) {
continue
}
hashedName, res := layerToResponse(name, spec)
layerConfigs[hashedName] = res
}
meta := getStatsigMetadata()
response := ClientInitializeResponse{
FeatureGates: featureGates,
DynamicConfigs: dynamicConfigs,
LayerConfigs: layerConfigs,
SdkParams: make(map[string]string),
HasUpdates: true,
Generator: "statsig-go-sdk",
EvaluatedKeys: map[string]interface{}{"userID": user.UserID, "customIDs": user.CustomIDs},
Time: e.store.lastSyncTime,
SDKInfo: SDKInfo{SDKVersion: meta.SDKVersion, SDKType: meta.SDKType},
User: *user.getCopyForLogging(),
HashUsed: hashAlgorithm,
}
return response
}