forked from statsig-io/go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
229 lines (206 loc) · 6.87 KB
/
types.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
package statsig
// User specific attributes for evaluating Feature Gates, Experiments, and DynamicConfigs
//
// NOTE: UserID is **required** - see https://docs.statsig.com/messages/serverRequiredUserID\
// PrivateAttributes are only used for user targeting/grouping in feature gates, dynamic configs,
// experiments and etc; they are omitted in logs.
type User struct {
UserID string `json:"userID"`
Email string `json:"email,omitempty"`
IpAddress string `json:"ip,omitempty"`
UserAgent string `json:"userAgent,omitempty"`
Country string `json:"country,omitempty"`
Locale string `json:"locale,omitempty"`
AppVersion string `json:"appVersion,omitempty"`
Custom map[string]interface{} `json:"custom,omitempty"`
PrivateAttributes map[string]interface{} `json:"privateAttributes,omitempty"`
StatsigEnvironment map[string]string `json:"statsigEnvironment,omitempty"`
CustomIDs map[string]string `json:"customIDs"`
}
// an event to be sent to Statsig for logging and analysis
type Event struct {
EventName string `json:"eventName"`
User User `json:"user"`
Value string `json:"value"`
Metadata map[string]string `json:"metadata"`
Time int64 `json:"time"`
}
type configBase struct {
Name string `json:"name"`
Value map[string]interface{} `json:"value"`
RuleID string `json:"rule_id"`
GroupName string `json:"group_name"`
EvaluationDetails *EvaluationDetails `json:"evaluation_details"`
}
type FeatureGate struct {
Name string `json:"name"`
Value bool `json:"value"`
RuleID string `json:"rule_id"`
GroupName string `json:"group_name"`
EvaluationDetails *EvaluationDetails `json:"evaluation_details"`
}
// A json blob configured in the Statsig Console
type DynamicConfig struct {
configBase
}
type Layer struct {
configBase
LogExposure *func(Layer, string) `json:"log_exposure"`
AllocatedExperimentName string `json:"allocated_experiment_name"`
}
func NewGate(name string, value bool, ruleID string, groupName string, evaluationDetails *EvaluationDetails) *FeatureGate {
return &FeatureGate{
Name: name,
Value: value,
RuleID: ruleID,
GroupName: groupName,
EvaluationDetails: evaluationDetails,
}
}
func NewConfig(name string, value map[string]interface{}, ruleID string, groupName string, evaluationDetails *EvaluationDetails) *DynamicConfig {
if value == nil {
value = make(map[string]interface{})
}
return &DynamicConfig{
configBase: configBase{
Name: name,
Value: value,
RuleID: ruleID,
GroupName: groupName,
EvaluationDetails: evaluationDetails,
},
}
}
func NewLayer(name string, value map[string]interface{}, ruleID string, groupName string, logExposure *func(Layer, string), allocatedExperimentName string) *Layer {
if value == nil {
value = make(map[string]interface{})
}
return &Layer{
configBase: configBase{
Name: name,
Value: value,
RuleID: ruleID,
GroupName: groupName,
},
AllocatedExperimentName: allocatedExperimentName,
LogExposure: logExposure,
}
}
// Gets the string value at the given key in the DynamicConfig
// Returns the fallback string if the item at the given key is not found or not of type string
func (d *configBase) GetString(key string, fallback string) string {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case string:
return val
}
}
return fallback
}
// Gets the string value at the given key in the DynamicConfig
// Returns the fallback string if the item at the given key is not found or not of type string
func (d *Layer) GetString(key string, fallback string) string {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case string:
logExposure(d, key)
return val
}
}
return fallback
}
// Gets the float64 value at the given key in the DynamicConfig
// Returns the fallback float64 if the item at the given key is not found or not of type float64
func (d *configBase) GetNumber(key string, fallback float64) float64 {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case float64:
return val
}
}
return fallback
}
// Gets the float64 value at the given key in the DynamicConfig
// Returns the fallback float64 if the item at the given key is not found or not of type float64
func (d *Layer) GetNumber(key string, fallback float64) float64 {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case float64:
logExposure(d, key)
return val
}
}
return fallback
}
// Gets the boolean value at the given key in the DynamicConfig
// Returns the fallback boolean if the item at the given key is not found or not of type boolean
func (d *configBase) GetBool(key string, fallback bool) bool {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case bool:
return val
}
}
return fallback
}
// Gets the boolean value at the given key in the DynamicConfig
// Returns the fallback boolean if the item at the given key is not found or not of type boolean
func (d *Layer) GetBool(key string, fallback bool) bool {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case bool:
logExposure(d, key)
return val
}
}
return fallback
}
// Gets the slice value at the given key in the DynamicConfig
// Returns the fallback slice if the item at the given key is not found or not of type slice
func (d *configBase) GetSlice(key string, fallback []interface{}) []interface{} {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case []interface{}:
return val
}
}
return fallback
}
// Gets the slice value at the given key in the DynamicConfig
// Returns the fallback slice if the item at the given key is not found or not of type slice
func (d *Layer) GetSlice(key string, fallback []interface{}) []interface{} {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case []interface{}:
logExposure(d, key)
return val
}
}
return fallback
}
func (d *configBase) GetMap(key string, fallback map[string]interface{}) map[string]interface{} {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case map[string]interface{}:
return val
}
}
return fallback
}
func (d *Layer) GetMap(key string, fallback map[string]interface{}) map[string]interface{} {
if v, ok := d.Value[key]; ok {
switch val := v.(type) {
case map[string]interface{}:
logExposure(d, key)
return val
}
}
return fallback
}
func logExposure(c *Layer, parameterName string) {
if c == nil || c.LogExposure == nil {
return
}
l := *c.LogExposure
l(*c, parameterName)
}