| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace Elasticsearch\Endpoints;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class TermVectors
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class TermVectors 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;
- }
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- if (isset($this->index) !== true) {
- throw new Exceptions\RuntimeException(
- 'index is required for TermVectors'
- );
- }
- if (isset($this->type) !== true) {
- throw new Exceptions\RuntimeException(
- 'type is required for TermVectors'
- );
- }
- if (isset($this->id) !== true && isset($this->body['doc']) !== true) {
- throw new Exceptions\RuntimeException(
- 'id or doc is required for TermVectors'
- );
- }
- $index = $this->index;
- $type = $this->type;
- $id = $this->id;
- $uri = "/$index/$type/_termvectors";
- if ($id !== null) {
- $uri = "/$index/$type/$id/_termvectors";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'term_statistics',
- 'field_statistics',
- 'fields',
- 'offsets',
- 'positions',
- 'payloads',
- 'preference',
- 'routing',
- 'parent',
- 'realtime'
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'POST';
- }
- }
|