<?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\Filter; use ONGR\ElasticsearchBundle\DSL\BuilderInterface; use ONGR\ElasticsearchBundle\DSL\ParametersTrait; /** * Represents Elasticsearch "query" filter. */ class QueryFilter implements BuilderInterface { use ParametersTrait; /** * @var BuilderInterface */ private $query; /** * @param BuilderInterface $query Query. * @param array $parameters Optional parameters. */ public function __construct($query, array $parameters = []) { $this->query = $query; $this->setParameters($parameters); } /** * {@inheritdoc} */ public function getType() { if ($this->hasParameter('_cache')) { return 'fquery'; } return 'query'; } /** * {@inheritdoc} */ public function toArray() { if ($this->hasParameter('_cache')) { $query = []; $query['query'] = [$this->query->getType() => $this->query->toArray()]; $output = $this->processArray($query); return $output; } return [$this->query->getType() => $this->query->toArray()]; } }