Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions DSL/Aggregation/FiltersAggregation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?php

/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace ONGR\ElasticsearchBundle\DSL\Aggregation;

use ONGR\ElasticsearchBundle\DSL\Aggregation\Type\BucketingTrait;
use ONGR\ElasticsearchBundle\DSL\BuilderInterface;

/**
* Class representing filters aggregation.
*/
class FiltersAggregation extends AbstractAggregation
{
use BucketingTrait;

/**
* @var BuilderInterface[]
*/
private $filters = [];

/**
* @var bool
*/
private $anonymous = false;

/**
* @param bool $anonymous
*
* @return FiltersAggregation
*/
public function setAnonymous($anonymous)
{
$this->anonymous = $anonymous;

return $this;
}

/**
* @param BuilderInterface $filter
* @param string $name
*
* @throws \LogicException
*
* @return FiltersAggregation
*/
public function addFilter(BuilderInterface $filter, $name = '')
{
if ($this->anonymous === false && empty($name)) {
throw new \LogicException('In not anonymous filters filter name must be set.');
} elseif ($this->anonymous === false && !empty($name)) {
$this->filters['filters'][$name] = [$filter->getType() => $filter->toArray()];
} else {
$this->filters['filters'][] = [$filter->getType() => $filter->toArray()];
}

return $this;
}

/**
* {@inheritdoc}
*/
public function getArray()
{
return $this->filters;
}

/**
* {@inheritdoc}
*/
public function getType()
{
return 'filters';
}
}
68 changes: 68 additions & 0 deletions DSL/Aggregation/GeoBoundsAggregation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?php

/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace ONGR\ElasticsearchBundle\DSL\Aggregation;

use ONGR\ElasticsearchBundle\DSL\Aggregation\Type\BucketingTrait;

/**
* Class representing geo bounds aggregation.
*/
class GeoBoundsAggregation extends AbstractAggregation
{
use BucketingTrait;

/**
* @var bool
*/
private $wrapLongitude = true;

/**
* @return bool
*/
public function isWrapLongitude()
{
return $this->wrapLongitude;
}

/**
* @param bool $wrapLongitude
*/
public function setWrapLongitude($wrapLongitude)
{
$this->wrapLongitude = $wrapLongitude;
}

/**
* {@inheritdoc}
*/
public function getArray()
{
$data = [];
if ($this->getField()) {
$data['field'] = $this->getField();
} else {
throw new \LogicException('Geo bounds aggregation must have a field set.');
}

$data['wrap_longitude'] = $this->isWrapLongitude();

return $data;
}

/**
* {@inheritdoc}
*/
public function getType()
{
return 'geo_bounds';
}
}
158 changes: 158 additions & 0 deletions DSL/Aggregation/GeoDistanceAggregation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
<?php

/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace ONGR\ElasticsearchBundle\DSL\Aggregation;

use ONGR\ElasticsearchBundle\DSL\Aggregation\Type\BucketingTrait;

/**
* Class representing geo distance aggregation.
*/
class GeoDistanceAggregation extends AbstractAggregation
{
use BucketingTrait;

/**
* @var mixed
*/
private $origin;

/**
* @var string
*/
private $distanceType;

/**
* @var string
*/
private $unit;

/**
* @var array
*/
private $ranges = [];

/**
* @return string
*/
public function getOrigin()
{
return $this->origin;
}

/**
* @param mixed $origin
*/
public function setOrigin($origin)
{
$this->origin = $origin;
}

/**
* @return string
*/
public function getDistanceType()
{
return $this->distanceType;
}

/**
* @param string $distanceType
*/
public function setDistanceType($distanceType)
{
$this->distanceType = $distanceType;
}

/**
* @return string
*/
public function getUnit()
{
return $this->unit;
}

/**
* @param string $unit
*/
public function setUnit($unit)
{
$this->unit = $unit;
}

/**
* Add range to aggregation.
*
* @param int|float|null $from
* @param int|float|null $to
*
* @throws \LogicException
*
* @return GeoDistanceAggregation
*/
public function addRange($from = null, $to = null)
{
$range = array_filter(
[
'from' => $from,
'to' => $to,
]
);

if (empty($range)) {
throw new \LogicException('Either from or to must be set. Both cannot be null.');
}

$this->ranges[] = $range;

return $this;
}

/**
* {@inheritdoc}
*/
public function getArray()
{
$data = [];

if ($this->getField()) {
$data['field'] = $this->getField();
} else {
throw new \LogicException('Geo distance aggregation must have a field set.');
}

if ($this->getOrigin()) {
$data['origin'] = $this->getOrigin();
} else {
throw new \LogicException('Geo distance aggregation must have an origin set.');
}

if ($this->getUnit()) {
$data['unit'] = $this->getUnit();
}

if ($this->getDistanceType()) {
$data['distance_type'] = $this->getDistanceType();
}

$data['ranges'] = $this->ranges;

return $data;
}

/**
* {@inheritdoc}
*/
public function getType()
{
return 'geo_distance';
}
}
Loading