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\Endpoints\Indices; |
23: | |
24: | use OpenSearch\Exception\RuntimeException; |
25: | use OpenSearch\Endpoints\AbstractEndpoint; |
26: | |
27: | |
28: | |
29: | |
30: | class GetFieldMapping extends AbstractEndpoint |
31: | { |
32: | protected $fields; |
33: | |
34: | public function getURI(): string |
35: | { |
36: | if (!isset($this->fields) || $this->fields === '') { |
37: | throw new RuntimeException('fields is required for get_field_mapping'); |
38: | } |
39: | $fields = $this->fields; |
40: | $index = $this->index ?? null; |
41: | if (isset($index)) { |
42: | return "/$index/_mapping/field/$fields"; |
43: | } |
44: | return "/_mapping/field/$fields"; |
45: | } |
46: | |
47: | public function getParamWhitelist(): array |
48: | { |
49: | return [ |
50: | 'allow_no_indices', |
51: | 'expand_wildcards', |
52: | 'ignore_unavailable', |
53: | 'include_defaults', |
54: | 'local', |
55: | 'pretty', |
56: | 'human', |
57: | 'error_trace', |
58: | 'source', |
59: | 'filter_path' |
60: | ]; |
61: | } |
62: | |
63: | public function getMethod(): string |
64: | { |
65: | return 'GET'; |
66: | } |
67: | |
68: | public function setFields($fields): static |
69: | { |
70: | if (isset($fields) !== true) { |
71: | return $this; |
72: | } |
73: | if (is_array($fields) === true) { |
74: | $fields = implode(",", $fields); |
75: | } |
76: | $this->fields = $fields; |
77: | |
78: | return $this; |
79: | } |
80: | } |
81: | |