-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHit.php
More file actions
211 lines (152 loc) · 3.78 KB
/
Hit.php
File metadata and controls
211 lines (152 loc) · 3.78 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
<?php
declare(strict_types = 1);
namespace Spameri\ElasticQuery\Response\Result;
class Hit
{
public function __construct(
private array $source,
private int $position,
private string $index,
private string $type,
private string $id,
private float $score,
private int $version,
)
{
}
public function source(): array
{
return $this->source;
}
public function getValue(
string $key,
): mixed
{
$value = $this->getSubValue($key);
return $value ?? $this->source[$key] ?? null;
}
public function getStringValue(string $key): string
{
if (
\is_string($this->getValue($key)) === true
) {
return $this->getValue($key);
}
throw new \Spameri\ElasticQuery\Exception\InvalidArgumentException(\sprintf('Value for key %s is not string.', $key));
}
public function getStringOrNullValue(string $key): string|null
{
try {
return $this->getStringValue($key);
} catch (\Spameri\ElasticQuery\Exception\InvalidArgumentException $exception) {
return null;
}
}
public function getArrayValue(string $key): array
{
if (
\is_array($this->getValue($key)) === true
) {
return $this->getValue($key);
}
throw new \Spameri\ElasticQuery\Exception\InvalidArgumentException(\sprintf('Value for key %s is not array.', $key));
}
public function getArrayOrNullValue(string $key): array|null
{
try {
return $this->getArrayValue($key);
} catch (\Spameri\ElasticQuery\Exception\InvalidArgumentException $exception) {
return null;
}
}
public function getBoolValue(string $key): bool
{
if (
\is_bool($this->getValue($key)) === true
) {
return $this->getValue($key);
}
throw new \Spameri\ElasticQuery\Exception\InvalidArgumentException(\sprintf('Value for key %s is not bool.', $key));
}
public function getBoolOrNullValue(string $key): bool|null
{
try {
return $this->getBoolValue($key);
} catch (\Spameri\ElasticQuery\Exception\InvalidArgumentException $exception) {
return null;
}
}
public function getIntegerValue(string $key): int
{
if (
\is_int($this->getValue($key)) === true
) {
return $this->getValue($key);
}
throw new \Spameri\ElasticQuery\Exception\InvalidArgumentException(\sprintf('Value for key %s is not integer.', $key));
}
public function getIntegerOrNullValue(string $key): int|null
{
try {
return $this->getIntegerValue($key);
} catch (\Spameri\ElasticQuery\Exception\InvalidArgumentException $exception) {
return null;
}
}
public function getFloatValue(string $key): float
{
if (
\is_float($this->getValue($key)) === true
) {
return $this->getValue($key);
}
throw new \Spameri\ElasticQuery\Exception\InvalidArgumentException(\sprintf('Value for key %s is not float.', $key));
}
public function getFloatOrNullValue(string $key): float|null
{
try {
return $this->getFloatValue($key);
} catch (\Spameri\ElasticQuery\Exception\InvalidArgumentException $exception) {
return null;
}
}
public function getSubValue(string $key): mixed
{
if (\str_contains($key, \Spameri\ElasticQuery\Mapping\Settings\Mapping\FieldSeparator::FIELD_SEPARATOR) === true) {
$levels = \explode(\Spameri\ElasticQuery\Mapping\Settings\Mapping\FieldSeparator::FIELD_SEPARATOR, $key);
$value = $this->source[$levels[0]] ?? null;
unset($levels[0]);
foreach ($levels as $subKey) {
$value = $value[$subKey] ?? null;
}
if ($value !== null) {
return $value;
}
}
return null;
}
public function position(): int
{
return $this->position;
}
public function index(): string
{
return $this->index;
}
public function type(): string
{
return $this->type;
}
public function id(): string
{
return $this->id;
}
public function score(): float
{
return $this->score;
}
public function version(): int
{
return $this->version;
}
}