-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathImpressionDataEvent.php
145 lines (136 loc) · 3.82 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
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
<?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
{
/**
* @readonly
* @var string
*/
private $eventType;
/**
* @readonly
* @var string
*/
private $eventId;
/**
* @readonly
* @var \Unleash\Client\Configuration\UnleashConfiguration
*/
private $configuration;
/**
* @readonly
* @var \Unleash\Client\Configuration\Context
*/
private $context;
/**
* @readonly
* @var \Unleash\Client\DTO\Feature
*/
private $feature;
/**
* @readonly
* @var \Unleash\Client\DTO\Variant|null
*/
private $variant;
public function __construct(
#[\JetBrains\PhpStorm\ExpectedValues(valuesFromClass: \Unleash\Client\Enum\ImpressionDataEventType::class)]
string $eventType,
string $eventId,
UnleashConfiguration $configuration,
Context $context,
Feature $feature,
?Variant $variant
)
{
$this->eventType = $eventType;
$this->eventId = $eventId;
$this->configuration = $configuration;
$this->context = $context;
$this->feature = $feature;
$this->variant = $variant;
}
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 ($nullsafeVariable1 = $this->variant) ? $nullsafeVariable1->getName() : null;
}
/**
* @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
* }
*/
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;
}
}