1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | |
15: | |
16: | |
17: | |
18: | |
19: | |
20: | |
21: | |
22: | namespace OpenSearch\Serializers; |
23: | |
24: | use OpenSearch\Common\Exceptions\RuntimeException; |
25: | |
26: | if (!defined('JSON_INVALID_UTF8_SUBSTITUTE')) { |
27: | |
28: | define('JSON_INVALID_UTF8_SUBSTITUTE', 0); |
29: | } |
30: | |
31: | class EverythingToJSONSerializer implements SerializerInterface |
32: | { |
33: | |
34: | |
35: | |
36: | public function serialize($data): string |
37: | { |
38: | $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE); |
39: | if ($data === false) { |
40: | throw new RuntimeException("Failed to JSON encode: ".json_last_error()); |
41: | } |
42: | if ($data === '[]') { |
43: | return '{}'; |
44: | } else { |
45: | return $data; |
46: | } |
47: | } |
48: | |
49: | |
50: | |
51: | |
52: | public function deserialize(?string $data, array $headers) |
53: | { |
54: | return json_decode($data, true); |
55: | } |
56: | } |
57: | |