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 ExistsAlias extends AbstractEndpoint |
31: | { |
32: | protected $name; |
33: | |
34: | public function getURI(): string |
35: | { |
36: | if (!isset($this->name) || $this->name === '') { |
37: | throw new RuntimeException('name is required for exists_alias'); |
38: | } |
39: | $name = $this->name; |
40: | $index = $this->index ?? null; |
41: | if (isset($index)) { |
42: | return "/$index/_alias/$name"; |
43: | } |
44: | return "/_alias/$name"; |
45: | } |
46: | |
47: | public function getParamWhitelist(): array |
48: | { |
49: | return [ |
50: | 'allow_no_indices', |
51: | 'expand_wildcards', |
52: | 'ignore_unavailable', |
53: | 'local', |
54: | 'pretty', |
55: | 'human', |
56: | 'error_trace', |
57: | 'source', |
58: | 'filter_path' |
59: | ]; |
60: | } |
61: | |
62: | public function getMethod(): string |
63: | { |
64: | return 'HEAD'; |
65: | } |
66: | |
67: | public function setName($name): static |
68: | { |
69: | if (isset($name) !== true) { |
70: | return $this; |
71: | } |
72: | if (is_array($name) === true) { |
73: | $name = implode(",", $name); |
74: | } |
75: | $this->name = $name; |
76: | |
77: | return $this; |
78: | } |
79: | } |
80: | |