| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Elasticsearch\Endpoints\Indices;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class ValidateQuery
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Indices
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class ValidateQuery extends AbstractEndpoint
- {
- /**
- * @param array $body
- *
- * @throws \Elasticsearch\Common\Exceptions\InvalidArgumentException
- * @return $this
- */
- public function setBody($body)
- {
- if (isset($body) !== true) {
- return $this;
- }
- $this->body = $body;
- return $this;
- }
- /**
- * @return string
- */
- public function getURI()
- {
- $index = $this->index;
- $type = $this->type;
- $uri = "/_validate/query";
- if (isset($index) === true && isset($type) === true) {
- $uri = "/$index/$type/_validate/query";
- } elseif (isset($index) === true) {
- $uri = "/$index/_validate/query";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'explain',
- 'ignore_unavailable',
- 'allow_no_indices',
- 'expand_wildcards',
- 'operation_threading',
- 'source',
- 'q',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|