|
1
|
|
|
<?php |
|
|
|
|
|
|
2
|
|
|
namespace Triadev\Leopard\Business\Dsl; |
|
|
|
|
|
|
3
|
|
|
|
|
4
|
|
|
use ONGR\ElasticsearchDSL\BuilderInterface; |
|
5
|
|
|
use ONGR\ElasticsearchDSL\Query\Compound\BoolQuery; |
|
6
|
|
|
use ONGR\ElasticsearchDSL\Search; |
|
|
|
|
|
|
7
|
|
|
use Triadev\Leopard\Busines\Dsl\Query\Specialized; |
|
8
|
|
|
use Triadev\Leopard\Business\Dsl\Query\TermLevel; |
|
9
|
|
|
use Triadev\Leopard\Business\Dsl\Query\Fulltext; |
|
10
|
|
|
use Triadev\Leopard\Business\Dsl\Query\Geo; |
|
11
|
|
|
use Triadev\Leopard\Business\Dsl\Query\Joining; |
|
12
|
|
|
use Triadev\Leopard\Business\Dsl\Query\InnerHit; |
|
13
|
|
|
|
|
14
|
|
|
abstract class AbstractQuery |
|
|
|
|
|
|
15
|
|
|
{ |
|
|
|
|
|
|
16
|
|
|
/** @var \ONGR\ElasticsearchDSL\Search */ |
|
|
|
|
|
|
17
|
|
|
public $search; |
|
|
|
|
|
|
18
|
|
|
|
|
19
|
|
|
/** @var string */ |
|
|
|
|
|
|
20
|
|
|
public $boolState = BoolQuery::MUST; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* BoolQuery constructor. |
|
24
|
|
|
* @param Search|null $search |
|
|
|
|
|
|
25
|
|
|
*/ |
|
26
|
35 |
|
public function __construct(?Search $search = null) |
|
|
|
|
|
|
27
|
|
|
{ |
|
28
|
35 |
|
$this->search = $search ?: new Search(); |
|
|
|
|
|
|
29
|
35 |
|
} |
|
|
|
|
|
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* To dsl |
|
33
|
|
|
* |
|
34
|
|
|
* @return array |
|
35
|
|
|
*/ |
|
36
|
32 |
|
public function toDsl() : array |
|
37
|
|
|
{ |
|
38
|
32 |
|
return $this->search->toArray(); |
|
39
|
|
|
} |
|
|
|
|
|
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* Get search |
|
43
|
|
|
* |
|
44
|
|
|
* @return Search |
|
45
|
|
|
*/ |
|
46
|
4 |
|
public function getSearch() : Search |
|
47
|
|
|
{ |
|
48
|
4 |
|
return $this->search; |
|
49
|
|
|
} |
|
|
|
|
|
|
50
|
|
|
|
|
51
|
|
|
/** |
|
52
|
|
|
* Get query |
|
53
|
|
|
* |
|
54
|
|
|
* @return BuilderInterface |
|
55
|
|
|
*/ |
|
56
|
11 |
|
public function getQuery() : BuilderInterface |
|
57
|
|
|
{ |
|
58
|
11 |
|
return $this->search->getQueries(); |
|
59
|
|
|
} |
|
|
|
|
|
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* Append |
|
63
|
|
|
* |
|
64
|
|
|
* @param BuilderInterface $query |
|
|
|
|
|
|
65
|
|
|
* @return AbstractQuery|TermLevel|Fulltext|Geo|\Triadev\Leopard\Business\Dsl\Search|Joining|Specialized|InnerHit |
|
|
|
|
|
|
66
|
|
|
*/ |
|
67
|
31 |
|
public function append(BuilderInterface $query) : AbstractQuery |
|
68
|
|
|
{ |
|
69
|
31 |
|
$this->search->addQuery($query, $this->boolState); |
|
70
|
31 |
|
return $this; |
|
71
|
|
|
} |
|
|
|
|
|
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* Bool state: must |
|
75
|
|
|
* |
|
76
|
|
|
* @return AbstractQuery|TermLevel|Fulltext|Geo|\Triadev\Leopard\Business\Dsl\Search|Joining|Specialized|InnerHit |
|
|
|
|
|
|
77
|
|
|
*/ |
|
78
|
3 |
|
public function must(): AbstractQuery |
|
79
|
|
|
{ |
|
80
|
3 |
|
$this->boolState = BoolQuery::MUST; |
|
81
|
3 |
|
return $this; |
|
82
|
|
|
} |
|
|
|
|
|
|
83
|
|
|
|
|
84
|
|
|
/** |
|
85
|
|
|
* Bool state: must not |
|
86
|
|
|
* |
|
87
|
|
|
* @return AbstractQuery|TermLevel|Fulltext|Geo|\Triadev\Leopard\Business\Dsl\Search|Joining|Specialized|InnerHit |
|
|
|
|
|
|
88
|
|
|
*/ |
|
89
|
1 |
|
public function mustNot(): AbstractQuery |
|
90
|
|
|
{ |
|
91
|
1 |
|
$this->boolState = BoolQuery::MUST_NOT; |
|
92
|
1 |
|
return $this; |
|
93
|
|
|
} |
|
|
|
|
|
|
94
|
|
|
|
|
95
|
|
|
/** |
|
96
|
|
|
* Bool state: should |
|
97
|
|
|
* |
|
98
|
|
|
* @return AbstractQuery|TermLevel|Fulltext|Geo|\Triadev\Leopard\Business\Dsl\Search|Joining|Specialized|InnerHit |
|
|
|
|
|
|
99
|
|
|
*/ |
|
100
|
1 |
|
public function should(): AbstractQuery |
|
101
|
|
|
{ |
|
102
|
1 |
|
$this->boolState = BoolQuery::SHOULD; |
|
103
|
1 |
|
return $this; |
|
104
|
|
|
} |
|
|
|
|
|
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* Bool state: filter |
|
108
|
|
|
* |
|
109
|
|
|
* @return AbstractQuery|TermLevel|Fulltext|Geo|\Triadev\Leopard\Business\Dsl\Search|Joining|Specialized|InnerHit |
|
|
|
|
|
|
110
|
|
|
*/ |
|
111
|
7 |
|
public function filter(): AbstractQuery |
|
112
|
|
|
{ |
|
113
|
7 |
|
$this->boolState = BoolQuery::FILTER; |
|
114
|
7 |
|
return $this; |
|
115
|
|
|
} |
|
|
|
|
|
|
116
|
|
|
} |
|
|
|
|
|
|
117
|
|
|
|