From 40ee46a6a001a35d2edf526c5474f22d19916bfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mantas=20Jonu=C5=A1as?= <mantas.jonusas@nfq.lt> Date: Fri, 13 Mar 2015 12:03:32 +0200 Subject: [PATCH] Added Geohash Cell filter --- Filter/GeohashCellFilter.php | 65 ++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 Filter/GeohashCellFilter.php diff --git a/Filter/GeohashCellFilter.php b/Filter/GeohashCellFilter.php new file mode 100644 index 0000000..9dd4d07 --- /dev/null +++ b/Filter/GeohashCellFilter.php @@ -0,0 +1,65 @@ +<?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 "Geohash Cell" filter. + */ +class GeohashCellFilter implements BuilderInterface +{ + use ParametersTrait; + + /** + * @var string + */ + private $field; + + /** + * @var mixed + */ + private $location; + + /** + * @param string $field + * @param mixed $location + * @param array $parameters + */ + public function __construct($field, $location, array $parameters = []) + { + $this->field = $field; + $this->location = $location; + + $this->setParameters($parameters); + } + + /** + * {@inheritdoc} + */ + public function getType() + { + return 'geohash_cell'; + } + + /** + * {@inheritdoc} + */ + public function toArray() + { + $query[$this->field] = $this->location; + $output = $this->processArray($query); + + return $output; + } +} -- GitLab