forked from solariumphp/solarium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFacetSet.php
More file actions
259 lines (238 loc) · 7.51 KB
/
FacetSet.php
File metadata and controls
259 lines (238 loc) · 7.51 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?php
/*
* This file is part of the Solarium package.
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code.
*/
namespace Solarium\Component;
use Solarium\Component\Facet\Field;
use Solarium\Component\Facet\FieldValueParametersInterface;
use Solarium\Component\Facet\FieldValueParametersTrait;
use Solarium\Component\Facet\Interval;
use Solarium\Component\Facet\JsonAggregation;
use Solarium\Component\Facet\JsonQuery;
use Solarium\Component\Facet\JsonRange;
use Solarium\Component\Facet\JsonTerms;
use Solarium\Component\Facet\MultiQuery;
use Solarium\Component\Facet\Pivot;
use Solarium\Component\Facet\PivotMinCountTrait;
use Solarium\Component\Facet\Query;
use Solarium\Component\Facet\Range;
use Solarium\Component\RequestBuilder\ComponentRequestBuilderInterface;
use Solarium\Component\RequestBuilder\FacetSet as RequestBuilder;
use Solarium\Component\ResponseParser\ComponentParserInterface;
use Solarium\Component\ResponseParser\FacetSet as ResponseParser;
/**
* FacetSet component.
*/
class FacetSet extends AbstractComponent implements FacetSetInterface, FieldValueParametersInterface
{
use FacetSetTrait;
use FieldValueParametersTrait;
use PivotMinCountTrait;
/**
* Facet type mapping.
*/
protected array $facetTypes = [
FacetSetInterface::FACET_FIELD => Field::class,
FacetSetInterface::FACET_QUERY => Query::class,
FacetSetInterface::FACET_MULTIQUERY => MultiQuery::class,
FacetSetInterface::FACET_RANGE => Range::class,
FacetSetInterface::FACET_PIVOT => Pivot::class,
FacetSetInterface::FACET_INTERVAL => Interval::class,
FacetSetInterface::JSON_FACET_AGGREGATION => JsonAggregation::class,
FacetSetInterface::JSON_FACET_TERMS => JsonTerms::class,
FacetSetInterface::JSON_FACET_QUERY => JsonQuery::class,
FacetSetInterface::JSON_FACET_RANGE => JsonRange::class,
];
/**
* Get component type.
*
* @return string
*/
public function getType(): string
{
return ComponentAwareQueryInterface::COMPONENT_FACETSET;
}
/**
* Get a requestbuilder for this query.
*
* @return RequestBuilder
*/
public function getRequestBuilder(): ComponentRequestBuilderInterface
{
return new RequestBuilder();
}
/**
* Get a response parser for this query.
*
* @return ResponseParser
*/
public function getResponseParser(): ?ComponentParserInterface
{
return new ResponseParser();
}
/**
* Allow extraction of facets without having to define
* them on the query.
*
* @param bool $extract
*
* @return self Provides fluent interface
*/
public function setExtractFromResponse(bool $extract): self
{
$this->setOption('extractfromresponse', $extract);
return $this;
}
/**
* Get the extractfromresponse option value.
*
* @return bool|null
*/
public function getExtractFromResponse(): ?bool
{
return $this->getOption('extractfromresponse');
}
/**
* Get a facet field instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return Field
*/
public function createFacetField(string|array|null $options = null, bool $add = true): Field
{
return $this->createFacet(FacetSetInterface::FACET_FIELD, $options, $add);
}
/**
* Get a facet query instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return Query
*/
public function createFacetQuery(string|array|null $options = null, bool $add = true): Query
{
return $this->createFacet(FacetSetInterface::FACET_QUERY, $options, $add);
}
/**
* Get a facet multiquery instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return MultiQuery
*/
public function createFacetMultiQuery(string|array|null $options = null, bool $add = true): MultiQuery
{
return $this->createFacet(FacetSetInterface::FACET_MULTIQUERY, $options, $add);
}
/**
* Get a facet range instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return Range
*/
public function createFacetRange(string|array|null $options = null, bool $add = true): Range
{
return $this->createFacet(FacetSetInterface::FACET_RANGE, $options, $add);
}
/**
* Get a facet pivot instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return Pivot
*/
public function createFacetPivot(string|array|null $options = null, bool $add = true): Pivot
{
return $this->createFacet(FacetSetInterface::FACET_PIVOT, $options, $add);
}
/**
* Get a facet interval instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return Interval
*/
public function createFacetInterval(string|array|null $options = null, bool $add = true): Interval
{
return $this->createFacet(FacetSetInterface::FACET_INTERVAL, $options, $add);
}
/**
* Get a json facet aggregation instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return JsonAggregation
*/
public function createJsonFacetAggregation(string|array|null $options = null, bool $add = true): JsonAggregation
{
return $this->createFacet(FacetSetInterface::JSON_FACET_AGGREGATION, $options, $add);
}
/**
* Get a json facet terms instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return JsonTerms
*/
public function createJsonFacetTerms(string|array|null $options = null, bool $add = true): JsonTerms
{
return $this->createFacet(FacetSetInterface::JSON_FACET_TERMS, $options, $add);
}
/**
* Get a json facet query instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return JsonQuery
*/
public function createJsonFacetQuery(string|array|null $options = null, bool $add = true): JsonQuery
{
return $this->createFacet(FacetSetInterface::JSON_FACET_QUERY, $options, $add);
}
/**
* Get a json facet range instance.
*
* @see FacetSetTrait::createFacet for more information on $options
*
* @param string|array|null $options
* @param bool $add
*
* @return JsonRange
*/
public function createJsonFacetRange(string|array|null $options = null, bool $add = true): JsonRange
{
return $this->createFacet(FacetSetInterface::JSON_FACET_RANGE, $options, $add);
}
}