forked from PostHog/posthog-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.rb
321 lines (279 loc) · 11.5 KB
/
client.rb
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
311
312
313
314
315
316
317
318
319
320
321
require 'thread'
require 'time'
require 'posthog/defaults'
require 'posthog/logging'
require 'posthog/utils'
require 'posthog/send_worker'
require 'posthog/noop_worker'
require 'posthog/feature_flags'
class PostHog
class Client
include PostHog::Utils
include PostHog::Logging
# @param [Hash] opts
# @option opts [String] :api_key Your project's api_key
# @option opts [String] :personal_api_key Your personal API key
# @option opts [FixNum] :max_queue_size Maximum number of calls to be
# remain queued. Defaults to 10_000.
# @option opts [Bool] :test_mode +true+ if messages should remain
# queued for testing. Defaults to +false+.
# @option opts [Proc] :on_error Handles error calls from the API.
# @option opts [String] :host Fully qualified hostname of the PostHog server. Defaults to `https://app.posthog.com`
# @option opts [Integer] :feature_flags_polling_interval How often to poll for feature flag definition changes. Measured in seconds, defaults to 30.
def initialize(opts = {})
symbolize_keys!(opts)
opts[:host] ||= 'https://app.posthog.com'
@queue = Queue.new
@api_key = opts[:api_key]
@max_queue_size = opts[:max_queue_size] || Defaults::Queue::MAX_SIZE
@worker_mutex = Mutex.new
@worker = if opts[:test_mode]
NoopWorker.new(@queue)
else
SendWorker.new(@queue, @api_key, opts)
end
@worker_thread = nil
@feature_flags_poller = nil
@personal_api_key = opts[:personal_api_key]
check_api_key!
@feature_flags_poller =
FeatureFlagsPoller.new(
opts[:feature_flags_polling_interval],
opts[:personal_api_key],
@api_key,
opts[:host]
)
@distinct_id_has_sent_flag_calls = SizeLimitedHash.new(Defaults::MAX_HASH_SIZE) { |hash, key| hash[key] = Array.new }
end
# Synchronously waits until the worker has cleared the queue.
#
# Use only for scripts which are not long-running, and will specifically
# exit
def flush
while !@queue.empty? || @worker.is_requesting?
ensure_worker_running
sleep(0.1)
end
end
# Clears the queue without waiting.
#
# Use only in test mode
def clear
@queue.clear
end
# @!macro common_attrs
# @option attrs [String] :message_id ID that uniquely
# identifies a message across the API. (optional)
# @option attrs [Time] :timestamp When the event occurred (optional)
# @option attrs [String] :distinct_id The ID for this user in your database
# Captures an event
#
# @param [Hash] attrs
#
# @option attrs [String] :event Event name
# @option attrs [Hash] :properties Event properties (optional)
# @option attrs [Bool] :send_feature_flags Whether to send feature flags with this event (optional)
# @macro common_attrs
def capture(attrs)
symbolize_keys! attrs
if attrs[:send_feature_flags]
feature_variants = @feature_flags_poller._get_active_feature_variants(attrs[:distinct_id], attrs[:groups])
attrs[:feature_variants] = feature_variants
end
enqueue(FieldParser.parse_for_capture(attrs))
end
# Identifies a user
#
# @param [Hash] attrs
#
# @option attrs [Hash] :properties User properties (optional)
# @macro common_attrs
def identify(attrs)
symbolize_keys! attrs
enqueue(FieldParser.parse_for_identify(attrs))
end
# Identifies a group
#
# @param [Hash] attrs
#
# @option attrs [String] :group_type Group type
# @option attrs [String] :group_key Group key
# @option attrs [Hash] :properties Group properties (optional)
# @macro common_attrs
def group_identify(attrs)
symbolize_keys! attrs
enqueue(FieldParser.parse_for_group_identify(attrs))
end
# Aliases a user from one id to another
#
# @param [Hash] attrs
#
# @option attrs [String] :alias The alias to give the distinct id
# @macro common_attrs
def alias(attrs)
symbolize_keys! attrs
enqueue(FieldParser.parse_for_alias(attrs))
end
# @return [Hash] pops the last message from the queue
def dequeue_last_message
@queue.pop
end
# @return [Fixnum] number of messages in the queue
def queued_messages
@queue.length
end
def is_feature_enabled(flag_key, distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false, send_feature_flag_events: true)
response = get_feature_flag(flag_key, distinct_id, groups: groups, person_properties: person_properties, group_properties: group_properties, only_evaluate_locally: only_evaluate_locally, send_feature_flag_events: send_feature_flag_events)
if response.nil?
return nil
end
!!response
end
# Returns whether the given feature flag is enabled for the given user or not
#
# @param [String] key The key of the feature flag
# @param [String] distinct_id The distinct id of the user
# @param [Hash] groups
# @param [Hash] person_properties key-value pairs of properties to associate with the user.
# @param [Hash] group_properties
#
# @return [String, nil] The value of the feature flag
#
# The provided properties are used to calculate feature flags locally, if possible.
#
# `groups` are a mapping from group type to group key. So, if you have a group type of "organization" and a group key of "5",
# you would pass groups={"organization": "5"}.
# `group_properties` take the format: { group_type_name: { group_properties } }
# So, for example, if you have the group type "organization" and the group key "5", with the properties name, and employee count,
# you'll send these as:
# ```ruby
# group_properties: {"organization": {"name": "PostHog", "employees": 11}}
# ```
def get_feature_flag(key, distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false, send_feature_flag_events: true)
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
feature_flag_response, flag_was_locally_evaluated = @feature_flags_poller.get_feature_flag(key, distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
feature_flag_reported_key = "#{key}_#{feature_flag_response}"
if !@distinct_id_has_sent_flag_calls[distinct_id].include?(feature_flag_reported_key) && send_feature_flag_events
capture(
{
'distinct_id': distinct_id,
'event': '$feature_flag_called',
'properties': {
'$feature_flag' => key,
'$feature_flag_response' => feature_flag_response,
'locally_evaluated' => flag_was_locally_evaluated
},
'groups': groups,
}
)
@distinct_id_has_sent_flag_calls[distinct_id] << feature_flag_reported_key
end
feature_flag_response
end
# Returns all flags for a given user
#
# @param [String] distinct_id The distinct id of the user
# @param [Hash] groups
# @param [Hash] person_properties key-value pairs of properties to associate with the user.
# @param [Hash] group_properties
#
# @return [Hash] String (not symbol) key value pairs of flag and their values
def get_all_flags(distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
return @feature_flags_poller.get_all_flags(distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
end
# Returns payload for a given feature flag
#
# @param [String] key The key of the feature flag
# @param [String] distinct_id The distinct id of the user
# @option [String or boolean] match_value The value of the feature flag to be matched
# @option [Hash] groups
# @option [Hash] person_properties key-value pairs of properties to associate with the user.
# @option [Hash] group_properties
# @option [Boolean] only_evaluate_locally
#
def get_feature_flag_payload(key, distinct_id, match_value: nil, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
@feature_flags_poller.get_feature_flag_payload(key, distinct_id, match_value, groups, person_properties, group_properties, only_evaluate_locally)
end
# Returns all flags and payloads for a given user
#
# @param [String] distinct_id The distinct id of the user
# @option [Hash] groups
# @option [Hash] person_properties key-value pairs of properties to associate with the user.
# @option [Hash] group_properties
# @option [Boolean] only_evaluate_locally
#
def get_all_flags_and_payloads(distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
@feature_flags_poller.get_all_flags_and_payloads(distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
end
def reload_feature_flags
unless @personal_api_key
logger.error(
'You need to specify a personal_api_key to locally evaluate feature flags'
)
return
end
@feature_flags_poller.load_feature_flags(true)
end
def shutdown
@feature_flags_poller.shutdown_poller
flush
end
private
# private: Enqueues the action.
#
# returns Boolean of whether the item was added to the queue.
def enqueue(action)
# add our request id for tracing purposes
action[:messageId] ||= uid
if @queue.length < @max_queue_size
@queue << action
ensure_worker_running
true
else
logger.warn(
'Queue is full, dropping events. The :max_queue_size ' \
'configuration parameter can be increased to prevent this from ' \
'happening.'
)
false
end
end
# private: Checks that the api_key is properly initialized
def check_api_key!
raise ArgumentError, 'API key must be initialized' if @api_key.nil?
end
def ensure_worker_running
return if worker_running?
@worker_mutex.synchronize do
return if worker_running?
@worker_thread = Thread.new { @worker.run }
end
end
def worker_running?
@worker_thread && @worker_thread.alive?
end
def add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
groups ||= {}
person_properties ||= {}
group_properties ||= {}
symbolize_keys! groups
symbolize_keys! person_properties
symbolize_keys! group_properties
group_properties.each do |key, value|
symbolize_keys! value
end
all_person_properties = { "distinct_id" => distinct_id }.merge(person_properties)
all_group_properties = {}
if groups
groups.each do |group_name, group_key|
all_group_properties[group_name] = {
"$group_key" => group_key}.merge(group_properties&.dig(group_name) || {})
end
end
return all_person_properties, all_group_properties
end
end
end