Skip to content
Snippets Groups Projects
NotFilter.php 1.87 KiB
Newer Older
ONGR Team's avatar
ONGR Team committed
<?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\ElasticsearchDSL\Filter;
ONGR Team's avatar
ONGR Team committed

Mantas Varatiejus's avatar
Mantas Varatiejus committed
@trigger_error(
    'The NotFilter class is deprecated and will be removed in 2.0. Use BoolQuery instead.',
    E_USER_DEPRECATED
);

use ONGR\ElasticsearchDSL\BuilderInterface;
use ONGR\ElasticsearchDSL\ParametersTrait;
ONGR Team's avatar
ONGR Team committed

/**
 * Represents Elasticsearch "not" filter.
 *
 * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-not-filter.html
Mantas Varatiejus's avatar
Mantas Varatiejus committed
 *
 * @deprecated Will be removed in 2.0. Use the BoolQuery instead.
ONGR Team's avatar
ONGR Team committed
 */
class NotFilter implements BuilderInterface
{
    use ParametersTrait;

    /**
     * @var BuilderInterface
     */
    private $filter;

    /**
     * @param BuilderInterface $filter     Filter.
     * @param array            $parameters Optional parameters.
     */
    public function __construct(BuilderInterface $filter = null, array $parameters = [])
ONGR Team's avatar
ONGR Team committed
    {
        if ($filter !== null) {
            $this->setFilter($filter);
        }
ONGR Team's avatar
ONGR Team committed
        $this->setParameters($parameters);
    }
    
    /**
     * Returns filter.
     *
     * @return BuilderInterface
     */
    public function getFilter()
    {
        return $this->filter;
    }

    /**
     * Sets filter.
     *
     * @param BuilderInterface $filter
     */
    public function setFilter(BuilderInterface $filter)
    {
        $this->filter = $filter;
    }
ONGR Team's avatar
ONGR Team committed

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

    /**
     * {@inheritdoc}
     */
    public function toArray()
    {
        $query = [];
ONGR Team's avatar
ONGR Team committed
        $query['filter'] = [$this->filter->getType() => $this->filter->toArray()];

        $output = $this->processArray($query);

        return $output;
    }
}