| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace Elastica\Aggregation;
- use Elastica\Exception\InvalidException;
- /**
- * Class BucketScript.
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-pipeline-bucket-script-aggregation.html
- */
- class BucketScript extends AbstractAggregation
- {
- /**
- * @param string $name
- * @param array|null $bucketsPath
- * @param string|null $script
- */
- public function __construct($name, $bucketsPath = null, $script = null)
- {
- parent::__construct($name);
- if (null !== $bucketsPath) {
- $this->setBucketsPath($bucketsPath);
- }
- if (null !== $script) {
- $this->setScript($script);
- }
- }
- /**
- * Set the buckets_path for this aggregation.
- *
- * @param array $bucketsPath
- *
- * @return $this
- */
- public function setBucketsPath($bucketsPath)
- {
- return $this->setParam('buckets_path', $bucketsPath);
- }
- /**
- * Set the script for this aggregation.
- *
- * @param string $script
- *
- * @return $this
- */
- public function setScript($script)
- {
- return $this->setParam('script', $script);
- }
- /**
- * Set the gap policy for this aggregation.
- *
- * @param string $gapPolicy
- *
- * @return $this
- */
- public function setGapPolicy($gapPolicy)
- {
- return $this->setParam('gap_policy', $gapPolicy);
- }
- /**
- * Set the format for this aggregation.
- *
- * @param string $format
- *
- * @return $this
- */
- public function setFormat($format)
- {
- return $this->setParam('format', $format);
- }
- /**
- * @throws InvalidException If buckets path or script is not set
- *
- * @return array
- */
- public function toArray()
- {
- if (!$this->hasParam('buckets_path')) {
- throw new InvalidException('Buckets path is required');
- } elseif (!$this->hasParam('script')) {
- throw new InvalidException('Script parameter is required');
- }
- return parent::toArray();
- }
- }
|