Newer
Older
<?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\MetricTrait;
use ONGR\ElasticsearchBundle\DSL\Sort\Sorts;
/**
* Top hits aggregation.
*/
class TopHitsAggregation extends AbstractAggregation
{
use MetricTrait;
/**
* @var int Number of top matching hits to return per bucket.
* @var int The offset from the first result you want to fetch.
* @var Sorts How the top matching hits should be sorted.
*/
private $sort;
/**
* Constructor for top hits.
*
* @param string $name Aggregation name.
* @param null|int $size Number of top matching hits to return per bucket.
* @param null|int $from The offset from the first result you want to fetch.
* @param null|Sorts $sort How the top matching hits should be sorted.
*/
public function __construct($name, $size = null, $from = null, $sort = null)
{
parent::__construct($name);
$this->setFrom($from);
$this->setSize($size);
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
}
/**
* Return from.
*
* @return int
*/
public function getFrom()
{
return $this->from;
}
/**
* Set from.
*
* @param int $from
*/
public function setFrom($from)
{
$this->from = $from;
}
/**
* Return sort.
*
* @return Sorts
*/
public function getSort()
{
return $this->sort;
}
/**
* Set sort.
*
* @param Sorts $sort
*/
public function setSort($sort)
{
$this->sort = $sort;
}
/**
* Set size.
*
* @param int $size
*/
public function setSize($size)
{
$this->size = $size;
}
/**
* Return size.
*
* @return int
*/
public function getSize()
{
return $this->size;
}
/**
* {@inheritdoc}
*/
public function getType()
{
return 'top_hits';
}
/**
* {@inheritdoc}
*/
public function getArray()
{
$data = new \stdClass();
$filteredData = $this->getFilteredData();
foreach ($filteredData as $key => $value) {
$data->{$key} = $value;
/**
* Filters the data.
*
* @return array
*/
private function getFilteredData()
{
$fd = array_filter(
[
'sort' => $this->getSort() ? $this->getSort()->toArray() : [],
'size' => $this->getSize(),
'from' => $this->getFrom(),
],
function ($val) {
return (($val || is_array($val) || ($val || is_numeric($val))));
}
);
return $fd;
}