| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- namespace Elastica\Query;
- use Elastica\Script\AbstractScript;
- use Elastica\Script\ScriptFields;
- /**
- * Nested query.
- *
- * @author Guillaume Affringue <wamania@yahoo.fr>
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-inner-hits.html
- */
- class InnerHits extends AbstractQuery
- {
- /**
- * @return array
- */
- public function toArray()
- {
- $array = parent::toArray();
- // if there are no params, it's ok, but ES will throw exception if json
- // will be like {"top_hits":[]} instead of {"top_hits":{}}
- if (empty($array['inner_hits'])) {
- $array['inner_hits'] = new \stdClass();
- }
- return $array['inner_hits'];
- }
- /**
- * The name to be used for the particular inner hit definition in the response.
- * Useful when multiple inner hits have been defined in a single search request.
- *
- * @param string $name
- *
- * @return $this
- */
- public function setName($name)
- {
- return $this->setParam('name', $name);
- }
- /**
- * The maximum number of inner matching hits to return per bucket. By default the top three matching hits are returned.
- *
- * @param int $size
- *
- * @return $this
- */
- public function setSize($size)
- {
- return $this->setParam('size', (int) $size);
- }
- /**
- * The offset from the first result you want to fetch.
- *
- * @param int $from
- *
- * @return $this
- */
- public function setFrom($from)
- {
- return $this->setParam('from', (int) $from);
- }
- /**
- * How the inner matching hits should be sorted. By default the hits are sorted by the score of the main query.
- *
- * @param array $sortArgs
- *
- * @return $this
- */
- public function setSort(array $sortArgs)
- {
- return $this->setParam('sort', $sortArgs);
- }
- /**
- * Allows to control how the _source field is returned with every hit.
- *
- * @param array|bool $params Fields to be returned or false to disable source
- *
- * @return $this
- */
- public function setSource($params)
- {
- return $this->setParam('_source', $params);
- }
- /**
- * Returns a version for each search hit.
- *
- * @param bool $version
- *
- * @return $this
- */
- public function setVersion($version)
- {
- return $this->setParam('version', (bool) $version);
- }
- /**
- * Enables explanation for each hit on how its score was computed.
- *
- * @param bool $explain
- *
- * @return $this
- */
- public function setExplain($explain)
- {
- return $this->setParam('explain', (bool) $explain);
- }
- /**
- * Set script fields.
- *
- * @param \Elastica\Script\ScriptFields $scriptFields
- *
- * @return $this
- */
- public function setScriptFields(ScriptFields $scriptFields)
- {
- return $this->setParam('script_fields', $scriptFields);
- }
- /**
- * Adds a Script to the aggregation.
- *
- * @param string $name
- * @param \Elastica\Script\AbstractScript $script
- *
- * @return $this
- */
- public function addScriptField($name, AbstractScript $script)
- {
- if (!isset($this->_params['script_fields'])) {
- $this->_params['script_fields'] = new ScriptFields();
- }
- $this->_params['script_fields']->addScript($name, $script);
- return $this;
- }
- /**
- * Sets highlight arguments for the results.
- *
- * @param array $highlightArgs
- *
- * @return $this
- */
- public function setHighlight(array $highlightArgs)
- {
- return $this->setParam('highlight', $highlightArgs);
- }
- /**
- * Allows to return the field data representation of a field for each hit.
- *
- * @param array $fields
- *
- * @return $this
- */
- public function setFieldDataFields(array $fields)
- {
- return $this->setParam('docvalue_fields', $fields);
- }
- }
|