1<?php
2/**
3 * Elasticsearch PHP client
4 *
5 * @link      https://github.com/elastic/elasticsearch-php/
6 * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co)
7 * @license   http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
8 * @license   https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1
9 *
10 * Licensed to Elasticsearch B.V under one or more agreements.
11 * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or
12 * the GNU Lesser General Public License, Version 2.1, at your option.
13 * See the LICENSE file in the project root for more information.
14 */
15declare(strict_types = 1);
16
17namespace Elasticsearch\Endpoints;
18
19use Elasticsearch\Common\Exceptions\InvalidArgumentException;
20use Elasticsearch\Endpoints\AbstractEndpoint;
21use Elasticsearch\Serializers\SerializerInterface;
22use Traversable;
23
24/**
25 * Class Msearch
26 * Elasticsearch API name msearch
27 *
28 * NOTE: this file is autogenerated using util/GenerateEndpoints.php
29 * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee)
30 */
31class Msearch extends AbstractEndpoint
32{
33
34    public function __construct(SerializerInterface $serializer)
35    {
36        $this->serializer = $serializer;
37    }
38
39    public function getURI(): string
40    {
41        $index = $this->index ?? null;
42        $type = $this->type ?? null;
43        if (isset($type)) {
44            @trigger_error('Specifying types in urls has been deprecated', E_USER_DEPRECATED);
45        }
46
47        if (isset($index) && isset($type)) {
48            return "/$index/$type/_msearch";
49        }
50        if (isset($index)) {
51            return "/$index/_msearch";
52        }
53        return "/_msearch";
54    }
55
56    public function getParamWhitelist(): array
57    {
58        return [
59            'search_type',
60            'max_concurrent_searches',
61            'typed_keys',
62            'pre_filter_shard_size',
63            'max_concurrent_shard_requests',
64            'rest_total_hits_as_int',
65            'ccs_minimize_roundtrips'
66        ];
67    }
68
69    public function getMethod(): string
70    {
71        return isset($this->body) ? 'POST' : 'GET';
72    }
73
74    public function setBody($body): Msearch
75    {
76        if (isset($body) !== true) {
77            return $this;
78        }
79        if (is_array($body) === true || $body instanceof Traversable) {
80            foreach ($body as $item) {
81                $this->body .= $this->serializer->serialize($item) . "\n";
82            }
83        } elseif (is_string($body)) {
84            $this->body = $body;
85            if (substr($body, -1) != "\n") {
86                $this->body .= "\n";
87            }
88        } else {
89            throw new InvalidArgumentException("Body must be an array, traversable object or string");
90        }
91        return $this;
92    }
93}
94