-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathPostHog.php
More file actions
421 lines (380 loc) · 11.7 KB
/
PostHog.php
File metadata and controls
421 lines (380 loc) · 11.7 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
<?php
namespace PostHog;
use Exception;
class PostHog
{
public const VERSION = '4.2.0';
public const ENV_API_KEY = "POSTHOG_API_KEY";
public const ENV_HOST = "POSTHOG_HOST";
private static Client $client;
/**
* Initializes the default client to use. Uses the libcurl consumer by default.
* @param string|null $apiKey your project's API key
* @param array|null $options passed straight to the client
* @param Client|null $client
* @throws Exception
*/
public static function init(
?string $apiKey = null,
?array $options = [],
?Client $client = null,
?string $personalAPIKey = null
): void {
if (null === $client) {
$apiKey = $apiKey ?: getenv(self::ENV_API_KEY);
$rawHost = null;
if (array_key_exists("host", $options)) {
$rawHost = $options["host"];
$options["host"] = self::cleanHost($rawHost);
} else {
$envHost = getenv(self::ENV_HOST) ?: null;
if (null !== $envHost) {
$rawHost = $envHost;
$options["host"] = self::cleanHost($rawHost);
}
}
// Infer ssl from the host protocol if the user hasn't explicitly set it
if ($rawHost !== null && !array_key_exists("ssl", $options)) {
$normalizedHost = StringNormalizer::normalizeHost($rawHost);
if (str_starts_with($normalizedHost, "http://")) {
$options["ssl"] = false;
} elseif (str_starts_with($normalizedHost, "https://")) {
$options["ssl"] = true;
}
}
self::assert($apiKey, "PostHog::init() requires an apiKey");
self::$client = new Client($apiKey, $options, null, $personalAPIKey);
} else {
self::$client = $client;
}
}
/**
* Captures an exception as a PostHog error tracking event.
*
* @param \Throwable|string $exception
* @param string|null $distinctId
* @param array $additionalProperties
* @return bool
* @throws Exception
*/
public static function captureException(
\Throwable|string $exception,
?string $distinctId = null,
array $additionalProperties = []
): bool {
self::checkClient();
return self::$client->captureException($exception, $distinctId, $additionalProperties);
}
/**
* Captures a user action
*
* @param array $message
* @return boolean whether the capture call succeeded
* @throws Exception
*/
public static function capture(array $message)
{
self::checkClient();
$event = !empty($message["event"]);
self::assert($event, "PostHog::capture() expects an event");
self::validate($message, "capture");
return self::$client->capture($message);
}
/**
* Tags properties about the user.
*
* @param array $message
* @return boolean whether the identify call succeeded
* @throws Exception
*/
public static function identify(array $message)
{
self::checkClient();
$message["type"] = "identify";
self::validate($message, "identify");
return self::$client->identify($message);
}
/**
* Adds properties to a group.
*
* @param array $message Must contain keys `groupType`, `groupKey`, `properties`
* @return boolean whether the groupIdentify call succeeded
* @throws Exception
*/
public static function groupIdentify(array $message)
{
self::assert(!empty($message["groupType"]), "PostHog::groupIdentify() expects a groupType");
self::assert(!empty($message["groupKey"]), "PostHog::groupIdentify() expects a groupKey");
if (!isset($message["properties"])) {
$message["properties"] = array();
}
$msg = array(
"event" => "\$groupidentify",
"distinctId" => "\${$message['groupType']}_{$message['groupKey']}",
"properties" => array(
"\$group_type" => $message["groupType"],
"\$group_key" => $message["groupKey"],
"\$group_set" => $message["properties"],
)
);
return self::capture($msg);
}
/**
* decide if the feature flag is enabled for this distinct id.
*
* @param string $key
* @param string $distinctId
* @param array $groups
* @param array $personProperties
* @param array $groupProperties
* @return boolean
* @throws Exception
*/
public static function isFeatureEnabled(
string $key,
string $distinctId,
array $groups = array(),
array $personProperties = array(),
array $groupProperties = array(),
bool $onlyEvaluateLocally = false,
bool $sendFeatureFlagEvents = true
): null | bool {
self::checkClient();
return self::$client->isFeatureEnabled(
$key,
$distinctId,
$groups,
$personProperties,
$groupProperties,
$onlyEvaluateLocally,
$sendFeatureFlagEvents
);
}
/**
* get the feature flag value for this distinct id.
*
* @param string $key
* @param string $distinctId
* @param array $groups
* @param array $personProperties
* @param array $groupProperties
* @return boolean | string
* @throws Exception
*/
public static function getFeatureFlag(
string $key,
string $distinctId,
array $groups = array(),
array $personProperties = array(),
array $groupProperties = array(),
bool $onlyEvaluateLocally = false,
bool $sendFeatureFlagEvents = true
): null | bool | string {
self::checkClient();
return self::$client->GetFeatureFlag(
$key,
$distinctId,
$groups,
$personProperties,
$groupProperties,
$onlyEvaluateLocally,
$sendFeatureFlagEvents
);
}
/**
* Get the feature flag result including value and payload.
*
* This is the recommended method for getting feature flag data as it returns
* both the flag value and payload in a single call, while properly tracking analytics.
*
* @param string $key
* @param string $distinctId
* @param array $groups
* @param array $personProperties
* @param array $groupProperties
* @param bool $onlyEvaluateLocally
* @param bool $sendFeatureFlagEvents
* @return FeatureFlagResult|null
* @throws Exception
*/
public static function getFeatureFlagResult(
string $key,
string $distinctId,
array $groups = array(),
array $personProperties = array(),
array $groupProperties = array(),
bool $onlyEvaluateLocally = false,
bool $sendFeatureFlagEvents = true
): ?FeatureFlagResult {
self::checkClient();
return self::$client->getFeatureFlagResult(
$key,
$distinctId,
$groups,
$personProperties,
$groupProperties,
$onlyEvaluateLocally,
$sendFeatureFlagEvents
);
}
/**
* @deprecated Use getFeatureFlagResult() instead. This method does not send
* the $feature_flag_called event, leading to missing analytics.
*
* @param string $key
* @param string $distinctId
* @param array $groups
* @param array $personProperties
* @param array $groupProperties
* @return mixed
*/
public static function getFeatureFlagPayload(
string $key,
string $distinctId,
array $groups = array(),
array $personProperties = array(),
array $groupProperties = array(),
): mixed {
return self::$client->getFeatureFlagPayload(
$key,
$distinctId,
$groups,
$personProperties,
$groupProperties
);
}
/**
* get all enabled flags for distinct_id
*
* @param string $distinctId
* @param array $groups
* @param array $personProperties
* @param array $groupProperties
* @return array
* @throws Exception
*/
public static function getAllFlags(
string $distinctId,
array $groups = array(),
array $personProperties = array(),
array $groupProperties = array(),
bool $onlyEvaluateLocally = false
): array {
self::checkClient();
return self::$client->getAllFlags(
$distinctId,
$groups,
$personProperties,
$groupProperties,
$onlyEvaluateLocally
);
}
/**
*
* @param string $distinctId
* @return array
* @throws Exception
*/
public static function fetchFeatureVariants(string $distinctId, array $groups = array()): array
{
self::checkClient();
return self::$client->fetchFeatureVariants($distinctId, $groups);
}
/**
* Aliases the distinct id from a temporary id to a permanent one
*
* @param array $message distinct id to alias from
* @return boolean whether the alias call succeeded
* @throws Exception
*/
public static function alias(array $message)
{
self::checkClient();
$alias = !empty($message["alias"]);
self::assert($alias, "PostHog::alias() requires an alias");
self::validate($message, "alias");
return self::$client->alias($message);
}
/**
* Send a raw (prepared) message
*
* @param array $message distinct id to alias from
* @return boolean whether the alias call succeeded
*/
public static function raw(array $message)
{
return self::$client->raw($message);
}
/**
* Validate common properties.
*
* @param array $msg
* @param string $type
* @throws Exception
*/
public static function validate($msg, $type)
{
$distinctId = !empty($msg["distinctId"]);
self::assert($distinctId, "PostHog::{$type}() requires distinctId");
}
/**
* Flush the client
*/
public static function flush()
{
self::checkClient();
return self::$client->flush();
}
/**
* Get the underlying client instance.
* Useful for accessing client-level functionality like loadFlags() or getFlagsEtag().
*
* @return Client
* @throws Exception
*/
public static function getClient(): Client
{
self::checkClient();
return self::$client;
}
private static function cleanHost(?string $host): string
{
$host = StringNormalizer::normalizeHost($host);
// remove protocol
if (substr($host, 0, 8) === "https://") {
$host = str_replace('https://', '', $host);
} elseif (substr($host, 0, 7) === "http://") {
$host = str_replace('http://', '', $host);
}
// remove trailing slash
if (substr($host, strlen($host) - 1, 1) === "/") {
$host = substr($host, 0, strlen($host) - 1);
}
return $host;
}
/**
* Check the client.
*
* @throws Exception
*/
private static function checkClient()
{
if (null != self::$client) {
return;
}
throw new Exception("PostHog::init() must be called before any other capturing method.");
}
/**
* Assert `value` or throw.
*
* @param mixed $value
* @param string $msg
* @throws Exception
*/
private static function assert($value, $msg)
{
if (!$value) {
throw new Exception($msg);
}
}
}