posthog-ruby 2.4.0 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/posthog/client.rb +31 -0
- data/lib/posthog/feature_flags.rb +9 -9
- data/lib/posthog/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f17b77ed0648665e282dc6f9483695eebcb955c08f4873350d5bbd01277c6534
|
4
|
+
data.tar.gz: e4e638cd17a013f3b3c1e012a5fd08f825fe6e43ce741050c31f7b084a718b96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b22dfa3f6765ffbfeb912d775ce5eee8ee4db21be2236dc13679d816c43fff161a707f33ff280ccc4d101e729d593fd909df8ff38c4d8ac8187da48071a506d
|
7
|
+
data.tar.gz: df159e86bc400f53d3d85b4068fc158f600fc32bc5015e022305d27d8cf65487ae946a90934fc7737efdc8086b387a9988883490d7298d261c9520c68c9e1078
|
data/lib/posthog/client.rb
CHANGED
@@ -174,6 +174,7 @@ class PostHog
|
|
174
174
|
# group_properties: {"organization": {"name": "PostHog", "employees": 11}}
|
175
175
|
# ```
|
176
176
|
def get_feature_flag(key, distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false, send_feature_flag_events: true)
|
177
|
+
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
|
177
178
|
feature_flag_response, flag_was_locally_evaluated = @feature_flags_poller.get_feature_flag(key, distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
|
178
179
|
|
179
180
|
feature_flag_reported_key = "#{key}_#{feature_flag_response}"
|
@@ -204,6 +205,7 @@ class PostHog
|
|
204
205
|
#
|
205
206
|
# @return [Hash] String (not symbol) key value pairs of flag and their values
|
206
207
|
def get_all_flags(distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
|
208
|
+
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
|
207
209
|
return @feature_flags_poller.get_all_flags(distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
|
208
210
|
end
|
209
211
|
|
@@ -218,6 +220,7 @@ class PostHog
|
|
218
220
|
# @option [Boolean] only_evaluate_locally
|
219
221
|
#
|
220
222
|
def get_feature_flag_payload(key, distinct_id, match_value: nil, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
|
223
|
+
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
|
221
224
|
@feature_flags_poller.get_feature_flag_payload(key, distinct_id, match_value, groups, person_properties, group_properties, only_evaluate_locally)
|
222
225
|
end
|
223
226
|
|
@@ -230,6 +233,7 @@ class PostHog
|
|
230
233
|
# @option [Boolean] only_evaluate_locally
|
231
234
|
#
|
232
235
|
def get_all_flags_and_payloads(distinct_id, groups: {}, person_properties: {}, group_properties: {}, only_evaluate_locally: false)
|
236
|
+
person_properties, group_properties = add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
|
233
237
|
@feature_flags_poller.get_all_flags_and_payloads(distinct_id, groups, person_properties, group_properties, only_evaluate_locally)
|
234
238
|
end
|
235
239
|
|
@@ -288,5 +292,32 @@ class PostHog
|
|
288
292
|
def worker_running?
|
289
293
|
@worker_thread && @worker_thread.alive?
|
290
294
|
end
|
295
|
+
|
296
|
+
def add_local_person_and_group_properties(distinct_id, groups, person_properties, group_properties)
|
297
|
+
|
298
|
+
groups ||= {}
|
299
|
+
person_properties ||= {}
|
300
|
+
group_properties ||= {}
|
301
|
+
|
302
|
+
symbolize_keys! groups
|
303
|
+
symbolize_keys! person_properties
|
304
|
+
symbolize_keys! group_properties
|
305
|
+
|
306
|
+
group_properties.each do |key, value|
|
307
|
+
symbolize_keys! value
|
308
|
+
end
|
309
|
+
|
310
|
+
all_person_properties = { "distinct_id" => distinct_id }.merge(person_properties)
|
311
|
+
|
312
|
+
all_group_properties = {}
|
313
|
+
if groups
|
314
|
+
groups.each do |group_name, group_key|
|
315
|
+
all_group_properties[group_name] = {
|
316
|
+
"$group_key" => group_key}.merge(group_properties&.dig(group_name) || {})
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
return all_person_properties, all_group_properties
|
321
|
+
end
|
291
322
|
end
|
292
323
|
end
|
@@ -220,7 +220,7 @@ class PostHog
|
|
220
220
|
end
|
221
221
|
|
222
222
|
def self.relative_date_parse_for_feature_flag_matching(value)
|
223
|
-
match =
|
223
|
+
match = /^-?([0-9]+)([a-z])$/.match(value)
|
224
224
|
parsed_dt = DateTime.now.new_offset(0)
|
225
225
|
if match
|
226
226
|
number = match[1].to_i
|
@@ -310,20 +310,20 @@ class PostHog
|
|
310
310
|
else
|
311
311
|
self.compare(override_value.to_s, value.to_s, operator)
|
312
312
|
end
|
313
|
-
when 'is_date_before', 'is_date_after'
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
313
|
+
when 'is_date_before', 'is_date_after'
|
314
|
+
override_date = PostHog::Utils.convert_to_datetime(override_value.to_s)
|
315
|
+
parsed_date = self.relative_date_parse_for_feature_flag_matching(value.to_s)
|
316
|
+
|
317
|
+
if parsed_date.nil?
|
318
318
|
parsed_date = PostHog::Utils.convert_to_datetime(value.to_s)
|
319
|
-
override_date = PostHog::Utils.convert_to_datetime(override_value.to_s)
|
320
319
|
end
|
320
|
+
|
321
321
|
if !parsed_date
|
322
322
|
raise InconclusiveMatchError.new("Invalid date format")
|
323
323
|
end
|
324
|
-
if operator == 'is_date_before'
|
324
|
+
if operator == 'is_date_before'
|
325
325
|
return override_date < parsed_date
|
326
|
-
elsif operator == 'is_date_after'
|
326
|
+
elsif operator == 'is_date_after'
|
327
327
|
return override_date > parsed_date
|
328
328
|
end
|
329
329
|
else
|
data/lib/posthog/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: posthog-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|