-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathImpressionDataEvent.php
113 lines (101 loc) · 3.13 KB
/
ImpressionDataEvent.php
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
<?php
namespace Unleash\Client\Event;
use DateTimeInterface;
use JetBrains\PhpStorm\ExpectedValues;
use JsonSerializable;
use Override;
use Unleash\Client\Configuration\Context;
use Unleash\Client\Configuration\UnleashConfiguration;
use Unleash\Client\DTO\Feature;
use Unleash\Client\DTO\Variant;
use Unleash\Client\Enum\ImpressionDataEventType;
final class ImpressionDataEvent extends AbstractEvent implements JsonSerializable
{
public function __construct(
#[ExpectedValues(valuesFromClass: ImpressionDataEventType::class)]
private readonly string $eventType,
private readonly string $eventId,
private readonly UnleashConfiguration $configuration,
private readonly Context $context,
private readonly Feature $feature,
private readonly ?Variant $variant,
) {
}
#[ExpectedValues(valuesFromClass: ImpressionDataEventType::class)]
public function getEventType(): string
{
return $this->eventType;
}
public function getEventId(): string
{
return $this->eventId;
}
/**
* @return array{
* currentTime: DateTimeInterface,
* userId: string|null,
* sessionId: string|null,
* remoteAddress: string|null,
* environment: string|null,
* appName: string,
* properties: array<string, string>
* }
*/
public function getContext(): array
{
return [
'currentTime' => clone $this->context->getCurrentTime(),
'userId' => $this->context->getCurrentUserId(),
'sessionId' => $this->context->getSessionId(),
'remoteAddress' => $this->context->getIpAddress(),
'environment' => $this->context->getEnvironment(),
'appName' => $this->configuration->getAppName(),
'properties' => $this->context->getCustomProperties(),
];
}
public function isEnabled(): bool
{
return $this->feature->isEnabled();
}
public function getFeatureName(): string
{
return $this->feature->getName();
}
public function getVariant(): ?string
{
return $this->variant?->getName();
}
/**
* @return array{
* eventType: string,
* eventId: string,
* context: array{
* currentTime: DateTimeInterface,
* userId: string|null,
* sessionId: string|null,
* remoteAddress: string|null,
* environment: string|null,
* appName: string,
* properties: array<string, string>
* },
* enabled: bool,
* featureName: string,
* variant?: string
* }
*/
#[Override]
public function jsonSerialize(): array
{
$result = [
'eventType' => $this->getEventType(),
'eventId' => $this->getEventId(),
'context' => $this->getContext(),
'enabled' => $this->isEnabled(),
'featureName' => $this->getFeatureName(),
];
if ($this->getVariant() !== null) {
$result['variant'] = $this->getVariant();
}
return $result;
}
}