-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCaptureExtensions.cs
More file actions
555 lines (523 loc) · 25.8 KB
/
Copy pathCaptureExtensions.cs
File metadata and controls
555 lines (523 loc) · 25.8 KB
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
using PostHog.Library;
namespace PostHog;
using static Ensure;
/// <summary>
/// Extensions of <see cref="IPostHogClient"/> related to capturing events.
/// </summary>
public static class CaptureExtensions
{
/// <summary>
/// Captures an event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: null,
flags: null);
/// <summary>
/// Captures an event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer Capture(..., flags: snapshot) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync. This overload will be removed in a future major version.", error: false)]
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
bool sendFeatureFlags)
#pragma warning disable CS0618
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: null,
sendFeatureFlags: sendFeatureFlags);
#pragma warning restore CS0618
/// <summary>
/// Captures an event with additional properties to add to the event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="properties">Optional: The properties to send along with the event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
Dictionary<string, object>? properties)
=> NotNull(client).Capture(
distinctId,
eventName,
properties,
groups: null,
flags: null);
/// <summary>
/// Captures an event with a custom timestamp.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: null,
flags: null,
timestamp: timestamp);
/// <summary>
/// Captures an event with a custom timestamp and additional properties.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <param name="properties">Optional: The properties to send along with the event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp,
Dictionary<string, object>? properties)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: properties,
groups: null,
flags: null,
timestamp: timestamp);
/// <summary>
/// Captures an event with a custom timestamp and groups.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <param name="groups">A set of groups to send with the event. The groups are identified by their group_type and group_key.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp,
GroupCollection groups)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: groups,
flags: null,
timestamp: timestamp);
/// <summary>
/// Captures an event with a custom timestamp, properties, and groups.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <param name="properties">Optional: The properties to send along with the event.</param>
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp,
Dictionary<string, object>? properties,
GroupCollection? groups)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: properties,
groups: groups,
flags: null,
timestamp: timestamp);
/// <summary>
/// Captures an event with a custom timestamp and feature flags.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <param name="sendFeatureFlags">If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer Capture(..., flags: snapshot, timestamp: timestamp) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync. This overload will be removed in a future major version.", error: false)]
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp,
bool sendFeatureFlags)
#pragma warning disable CS0618
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: null,
sendFeatureFlags: sendFeatureFlags,
timestamp: timestamp);
#pragma warning restore CS0618
/// <summary>
/// Captures an event with a custom timestamp, properties, groups, and feature flags.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="timestamp">The timestamp when the event occurred.</param>
/// <param name="properties">Optional: The properties to send along with the event.</param>
/// <param name="groups">Optional: Context of what groups are related to this event, example: { ["company"] = "id:5" }. Can be used to analyze companies instead of users.</param>
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer Capture(..., flags: snapshot, ...) using a FeatureFlagEvaluations snapshot from EvaluateFlagsAsync. This overload will be removed in a future major version.", error: false)]
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
DateTimeOffset timestamp,
Dictionary<string, object>? properties,
GroupCollection? groups,
bool sendFeatureFlags)
#pragma warning disable CS0618
=> NotNull(client).Capture(
distinctId,
eventName,
properties: properties,
groups: groups,
sendFeatureFlags: sendFeatureFlags,
timestamp: timestamp);
#pragma warning restore CS0618
/// <summary>
/// Captures an event with properties to set on the user.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="personPropertiesToSet">
/// Key value pairs to store as a property of the user. Any key value pairs in this dictionary that match
/// existing property keys will overwrite those properties.
/// </param>
/// <param name="personPropertiesToSetOnce">User properties to set only once (ex: Sign up date). If a property already exists, then the
/// value in this dictionary is ignored.
/// </param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
Dictionary<string, object> personPropertiesToSet,
Dictionary<string, object> personPropertiesToSetOnce)
=> client.Capture(distinctId, eventName, properties: null, personPropertiesToSet, personPropertiesToSetOnce);
/// <summary>
/// Captures an event with properties to set on the user.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="properties">Optional: The properties to send along with the event.</param>
/// <param name="personPropertiesToSet">
/// Key value pairs to store as a property of the user. Any key value pairs in this dictionary that match
/// existing property keys will overwrite those properties.
/// </param>
/// <param name="personPropertiesToSetOnce">User properties to set only once (ex: Sign up date). If a property already exists, then the
/// value in this dictionary is ignored.
/// </param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
Dictionary<string, object>? properties,
Dictionary<string, object> personPropertiesToSet,
Dictionary<string, object> personPropertiesToSetOnce)
{
properties ??= new Dictionary<string, object>();
properties["$set"] = personPropertiesToSet;
properties["$set_once"] = personPropertiesToSetOnce;
return NotNull(client).Capture(
distinctId,
eventName,
properties,
groups: null,
flags: null);
}
/// <summary>
/// Captures an event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="eventName">Human friendly name of the event. Recommended format [object] [verb] such as "Project created" or "User signed up".</param>
/// <param name="groups">A set of groups to send with the event. The groups are identified by their group_type and group_key.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool Capture(
this IPostHogClient client,
string distinctId,
string eventName,
GroupCollection groups)
=> NotNull(client).Capture(
distinctId,
eventName,
properties: null,
groups: groups,
flags: null);
/// <summary>
/// Captures a Page View ($pageview) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="pagePath">The URL or path of the page to capture.</param>
/// <param name="properties">Additional context to save with the event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CapturePageView(
this IPostHogClient client,
string distinctId,
string pagePath,
Dictionary<string, object>? properties)
=> NotNull(client).CaptureSpecialEvent(
distinctId,
eventName: "$pageview",
eventPropertyName: "$current_url",
eventPropertyValue: pagePath,
properties);
/// <summary>
/// Captures a Page View ($pageview) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="pagePath">The URL or path of the page to capture.</param>
/// <param name="properties">Additional context to save with the event.</param>
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer CapturePageView(distinctId, pagePath, properties) and forward a FeatureFlagEvaluations snapshot via Capture(..., flags: snapshot, ...) when needed. This overload will be removed in a future major version.", error: false)]
public static bool CapturePageView(
this IPostHogClient client,
string distinctId,
string pagePath,
Dictionary<string, object>? properties,
bool sendFeatureFlags)
{
if (!sendFeatureFlags)
{
return client.CapturePageView(distinctId, pagePath, properties);
}
#pragma warning disable CS0618
return NotNull(client).CaptureSpecialEvent(
distinctId,
eventName: "$pageview",
eventPropertyName: "$current_url",
eventPropertyValue: pagePath,
properties,
sendFeatureFlags: true);
#pragma warning restore CS0618
}
/// <summary>
/// Captures a Page View ($pageview) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="pagePath">The URL or path of the page to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CapturePageView(
this IPostHogClient client,
string distinctId,
string pagePath) => client.CapturePageView(distinctId, pagePath, properties: null);
/// <summary>
/// Captures a Page View ($pageview) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="pagePath">The URL or path of the page to capture.</param>
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer CapturePageView(distinctId, pagePath) and forward a FeatureFlagEvaluations snapshot via Capture(..., flags: snapshot, ...) when needed. This overload will be removed in a future major version.", error: false)]
public static bool CapturePageView(
this IPostHogClient client,
string distinctId,
string pagePath,
bool sendFeatureFlags)
#pragma warning disable CS0618
=> NotNull(client).CapturePageView(distinctId, pagePath, properties: null, sendFeatureFlags);
#pragma warning restore CS0618
/// <summary>
/// Captures a Screen View ($screen) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="screenName">The name of the screen to capture.</param>
/// <param name="properties">Additional context to save with the event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureScreenView(
this IPostHogClient client,
string distinctId,
string screenName,
Dictionary<string, object>? properties)
=> NotNull(client).CaptureSpecialEvent(
distinctId,
eventName: "$screen",
eventPropertyName: "$screen_name",
eventPropertyValue: screenName,
properties);
/// <summary>
/// Captures a Screen View ($screen) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="screenName">The name of the screen to capture.</param>
/// <param name="properties">Additional context to save with the event.</param>
/// <param name="sendFeatureFlags">Default: <c>false</c>. If <c>true</c>, feature flags are sent with the captured event.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
[Obsolete("Prefer CaptureScreenView(distinctId, screenName, properties) and forward a FeatureFlagEvaluations snapshot via Capture(..., flags: snapshot, ...) when needed. This overload will be removed in a future major version.", error: false)]
public static bool CaptureScreenView(
this IPostHogClient client,
string distinctId,
string screenName,
Dictionary<string, object>? properties,
bool sendFeatureFlags)
#pragma warning disable CS0618
=> NotNull(client).CaptureSpecialEvent(
distinctId,
eventName: "$screen",
eventPropertyName: "$screen_name",
eventPropertyValue: screenName,
properties,
sendFeatureFlags);
#pragma warning restore CS0618
/// <summary>
/// Captures a Screen View ($screen) event.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="screenName">The name of the screen to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureScreenView(
this IPostHogClient client,
string distinctId,
string screenName) => client.CaptureScreenView(distinctId, screenName, properties: null);
/// <summary>
/// Captures a survey response.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="surveyId">The id of the survey.</param>
/// <param name="surveyResponse">The survey response.</param>
/// <param name="properties">Additional properties to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureSurveyResponse(
this IPostHogClient client,
string distinctId,
string surveyId,
string surveyResponse,
Dictionary<string, object>? properties)
=> client.CaptureSurveyResponses(
distinctId,
surveyId,
surveyResponses: [surveyResponse],
properties);
/// <summary>
/// Captures a survey response.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="surveyId">The id of the survey.</param>
/// <param name="surveyResponses">The survey responses.</param>
/// <param name="properties">Additional properties to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureSurveyResponses(
this IPostHogClient client,
string distinctId,
string surveyId,
IReadOnlyList<string> surveyResponses,
Dictionary<string, object>? properties)
{
properties ??= new Dictionary<string, object>();
properties["$survey_id"] = surveyId;
if (NotNull(surveyResponses).Count > 0)
{
properties["$survey_response"] = surveyResponses[0];
}
for (var i = 1; i < surveyResponses.Count; i++)
{
properties[$"survey_response_{i}"] = surveyResponses[i];
}
return NotNull(client).Capture(distinctId, "survey sent", properties, groups: null, flags: null);
}
/// <summary>
/// Captures that a survey was shown.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="surveyId">The id of the survey.</param>
/// <param name="properties">Additional properties to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureSurveyShown(
this IPostHogClient client,
string distinctId,
string surveyId,
Dictionary<string, object>? properties)
=> NotNull(client).CaptureSpecialEvent(
distinctId,
eventName: "survey shown",
eventPropertyName: "$survey_id",
surveyId,
properties);
/// <summary>
/// Captures that a survey was dismissed.
/// </summary>
/// <param name="client">The <see cref="IPostHogClient"/>.</param>
/// <param name="distinctId">The identifier you use for the user.</param>
/// <param name="surveyId">The id of the survey.</param>
/// <param name="properties">Additional properties to capture.</param>
/// <returns><c>true</c> if the event was successfully enqueued. Otherwise <c>false</c>.</returns>
public static bool CaptureSurveyDismissed(
this IPostHogClient client,
string distinctId,
string surveyId,
Dictionary<string, object>? properties)
{
const string eventName = "survey dismissed";
return NotNull(client).CaptureSpecialEvent(
distinctId,
eventName,
eventPropertyName: "$survey_id",
eventPropertyValue: surveyId,
properties);
}
static bool CaptureSpecialEvent(
this IPostHogClient client,
string distinctId,
string eventName,
string eventPropertyName,
string eventPropertyValue,
Dictionary<string, object>? properties,
bool sendFeatureFlags = false)
{
properties ??= new Dictionary<string, object>();
properties[eventPropertyName] = eventPropertyValue;
if (!sendFeatureFlags)
{
return NotNull(client).Capture(distinctId, eventName, properties, groups: null, flags: null);
}
#pragma warning disable CS0618
return NotNull(client).Capture(distinctId, eventName, properties, null, sendFeatureFlags);
#pragma warning restore CS0618
}
}