<?php
/**
* Bool query
*
* @uses Elastica_Query_Abstract
* @category Xodoa
* @package Elastica
* @author Nicolas Ruflin <hide@address.com>
* @link http://www.elasticsearch.org/guide/reference/query-dsl/bool-query.html
*/
class Elastica_Query_Bool extends Elastica_Query_Abstract
{
/**
* Add should part to query
*
* @param Elastica_Query_Abstract|array $args Should query
* @return Elastica_Query_Bool Current object
*/
public function addShould($args)
{
return $this->_addQuery('should', $args);
}
/**
* Add must part to query
*
* @param Elastica_Query_Abstract|array $args Must query
* @return Elastica_Query_Bool Current object
*/
public function addMust($args)
{
return $this->_addQuery('must', $args);
}
/**
* Add must not part to query
*
* @param Elastica_Query_Abstract|array $args Must not query
* @return Elastica_Query_Bool Current object
*/
public function addMustNot($args)
{
return $this->_addQuery('must_not', $args);
}
/**
* Adds a query to the current object
*
* @param string $type Query type
* @param Elastica_Query_Abstract|array $args Query
* @throws Elastica_Exception_Invalid If not valid query
*/
protected function _addQuery($type, $args)
{
if ($args instanceof Elastica_Query_Abstract) {
$args = $args->toArray();
}
if (!is_array($args)) {
throw new Elastica_Exception_Invalid('Invalid parameter. Has to be array or instance of Elastica_Query');
}
return $this->addParam($type, $args);
}
/**
* Sets boost value of this query
*
* @param float $boost Boost value
* @return Elastica_Query_Bool Current object
*/
public function setBoost($boost)
{
return $this->setParam('boost', $boost);
}
/**
* Set the minimum number of of should match
*
* @param int $minimumNumberShouldMatch Should match minimum
* @return Elastica_Query_Bool Current object
*/
public function setMinimumNumberShouldMatch($minimumNumberShouldMatch)
{
return $this->setParam('minimum_number_should_match', $minimumNumberShouldMatch);
}
}