forked from jreinke/magento-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTerms.php
executable file
·79 lines (73 loc) · 1.53 KB
/
Terms.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
<?php
/**
* Terms filter
*
* @uses Elastica_Query_Abstract
* @category Xodoa
* @package Elastica
* @author Nicolas Ruflin <spam@ruflin.com>
* @link http://www.elasticsearch.org/guide/reference/query-dsl/terms-filter.html
*/
class Elastica_Filter_Terms extends Elastica_Filter_Abstract {
/**
* Terms
*
* @var array Terms
*/
protected $_terms = array();
/**
* Params
*
* @var array Params
*/
protected $_params = array();
/**
* Terms key
*
* @var string Terms key
*/
protected $_key = '';
/**
* Creates terms filter
*
* @param string $key Terms key
* @param array $terms Terms values
*/
public function __construct($key = '', array $terms = array()) {
$this->setTerms($key, $terms);
}
/**
* Sets key and terms for the filter
*
* @param string $key Terms key
* @param array $terms Terms for the query.
*/
public function setTerms($key, array $terms) {
$this->_key = $key;
$this->_terms = array_values($terms);
return $this;
}
/**
* Adds an additional term to the query
*
* @param string $term Filter term
* @return Elastica_Filter_Abstract Filter object
*/
public function addTerm($term) {
$this->_terms[] = $term;
return $this;
}
/**
* Convers object to an arrray
*
* @see Elastica_Filter_Abstract::toArray()
* @return array data array
*/
public function toArray() {
if (empty($this->_key)) {
throw new Elastica_Exception_Invalid('Terms key has to be set');
}
$this->_params[$this->_key] = $this->_terms;
return array('terms' => $this->_params);
}
}