-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchConditionBuilder.php
349 lines (295 loc) · 10.9 KB
/
SearchConditionBuilder.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
declare(strict_types=1);
/*
* This file is part of the RollerworksSearch package.
*
* (c) Sebastiaan Stok <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Rollerworks\Component\Search;
use Rollerworks\Component\Search\Exception\BadMethodCallException;
use Rollerworks\Component\Search\Exception\InvalidArgumentException;
use Rollerworks\Component\Search\Field\OrderField;
use Rollerworks\Component\Search\Value\ValuesBag;
use Rollerworks\Component\Search\Value\ValuesGroup;
final class SearchConditionBuilder
{
/**
* @var ValuesGroup
*/
private $valuesGroup;
/**
* @var SearchConditionBuilder|null
*/
private $parent;
/**
* @var FieldSet
*/
private $fieldSet;
/**
* @var ValuesGroup|null
*/
private $order;
/**
* @var self|true|null
*/
private $primaryCondition;
/**
* @param string $logical eg. one of the following ValuesGroup class constants value:
* GROUP_LOGICAL_OR or GROUP_LOGICAL_AND
*/
public static function create(FieldSet $fieldSet, string $logical = ValuesGroup::GROUP_LOGICAL_AND): self
{
return new self($logical, $fieldSet);
}
private function __construct(string $logical, FieldSet $fieldSet, ?self $parent = null)
{
$this->valuesGroup = new ValuesGroup($logical);
$this->parent = $parent;
$this->fieldSet = $fieldSet;
}
/**
* @param string $logical eg. one of the following ValuesGroup class constants value:
* GROUP_LOGICAL_OR or GROUP_LOGICAL_AND
*
* @return $this
*/
public function setGroupLogical(string $logical): self
{
$this->valuesGroup->setGroupLogical($logical);
return $this;
}
/**
* Add the result-ordering of the (primary) search condition
* and returns the SearchConditionBuilder.
*
* Note: This method can only be used at the root-level of the condition,
* or at the root-level of a primary condition. Unlike the other methods
* this doesn't require calling end() to close the condition level.
*
* ```
* ->order('@name', 'ASC')
* ->order('@id', 'DESC')
* ->field('name')
* ->addSimpleValue('my value')
* ->addSimpleValue('my value 2')
* ->end() // return back to the ValuesGroupBuilder or SearchConditionBuilder
* ```
*
* Or (with primary condition)
*
* ```
* ->order('@name', 'ASC')
* ->primaryCondition()
* ->order('@id', 'DESC')
* ->end() // Returns back to the main condition
* ```
*
* @param string $name The field-name (must be valid known ordering field like @id)
* @param string $direction ASC or DESC
*
* @return $this
*/
public function order(string $name, string $direction = 'ASC'): self
{
if ($this->parent && $this->primaryCondition !== true) {
throw new BadMethodCallException('Cannot add ordering at nested levels.');
}
if (! OrderField::isOrder($name)) {
throw new InvalidArgumentException(\sprintf('Field "%s" is not a valid ordering field. Expected either "@%1$s".', $name));
}
$this->fieldSet->get($name);
$direction = mb_strtoupper($direction);
if ($direction !== 'ASC' && $direction !== 'DESC') {
throw new InvalidArgumentException(\sprintf('Invalid direction provided "%s" for field "%s", must be either "ASC" or "DESC" (case insensitive).', $direction, $name));
}
if ($this->order === null) {
$this->order = new ValuesGroup();
}
$values = new ValuesBag();
$values->addSimpleValue($direction);
$this->order->addField($name, $values);
return $this;
}
/**
* Clears all the field sorting-orders (if any).
*
* @return $this
*/
public function clearOrder(): self
{
$this->order = null;
return $this;
}
/**
* Create a new ValuesGroup level and returns a SearchConditionBuilder instance
* for for building the nested group structure.
*
* Afterwards the group can be expended with fields or additional subgroups:
*
* ```
* ->group()
* ->field('name')
* ->...
* ->end() // return back to the ValuesGroup.
* ->end() // return back to the parent ValuesGroup level
* ```
*
* Note: Groups cannot be altered or removed with the builder after creation.
*
* @param string $logical eg. one of the following ValuesGroup class constants value:
* GROUP_LOGICAL_OR or GROUP_LOGICAL_AND
*/
public function group(string $logical = ValuesGroup::GROUP_LOGICAL_AND): self
{
$builder = new self($logical, $this->fieldSet, $this);
$this->valuesGroup->addGroup($builder->valuesGroup);
return $builder;
}
/**
* Add/expend a field's ValuesBag on 'this' ValuesGroup and returns
* a ValuesBagBuilder for adding values to the field.
*
* Note. Values must be in the model format, they are not transformed!
*
* The ValuesBagBuilder is subset of ValuesBag, which provides a developer
* friendly interface to construct a ValuesBag structure for the field.
*
* ```
* ->field('name')
* ->addSimpleValue('my value')
* ->addSimpleValue('my value 2')
* ->end() // return back to the ValuesGroup level
* ```
*/
public function field(string $name): ValuesBagBuilder
{
if (OrderField::isOrder($name)) {
throw new InvalidArgumentException(\sprintf('Unable to configure ordering of "%s" with field(), use the order() method instead.', $name));
}
if ($this->valuesGroup->hasField($name)) {
/** @var ValuesBagBuilder $valuesBag */
$valuesBag = $this->valuesGroup->getField($name);
} else {
$this->fieldSet->get($name);
$valuesBag = new ValuesBagBuilder($this);
$this->valuesGroup->addField($name, $valuesBag);
}
return $valuesBag;
}
/**
* Add/overwrites a field's ValuesBag on this ValuesGroup and returns
* a ValuesBagBuilder for adding values to the field.
*
* Note. Values must be in the model format, they are not transformed!
*
* The ValuesBagBuilder is subset of ValuesBag, which provides a developer
* friendly interface to construct a ValuesBag structure for the field.
*
* ```
* ->overwriteField('name')
* ->addSimpleValue('my value')
* ->addSimpleValue('my value 2')
* ->end() // return back to the ValuesGroup level
* ```
*/
public function overwriteField(string $name): ValuesBagBuilder
{
if (OrderField::isOrder($name)) {
throw new InvalidArgumentException(\sprintf('Unable to configure ordering of "%s" with overwriteField(), use the order() method instead. Call clearOrder() if you need to remove previously set orderings.', $name));
}
$this->fieldSet->get($name);
$valuesBag = new ValuesBagBuilder($this);
$this->valuesGroup->addField($name, $valuesBag);
return $valuesBag;
}
/**
* Close the condition building level (field or group) and return back
* to the previous builder level.
*/
public function end(): self
{
return $this->parent ?? $this;
}
/**
* Build a SearchPrimaryCondition structure.
*
* Note: This will overwrite any existing primary-condition of this builder.
*
* @return self A SearchConditionBuilder for the primary-condition structure
*/
public function primaryCondition(): self
{
if ($this->parent) {
throw new BadMethodCallException('Cannot add primaryCondition at nested level.');
}
$builder = new self(ValuesGroup::GROUP_LOGICAL_AND, $this->fieldSet, $this);
$builder->primaryCondition = true;
$this->primaryCondition = $builder;
return $builder;
}
/**
* Build and returns the SearchCondition object using the groups and fields.
*
* Tip: This method can be called at any level, explicitly calling end() is not required.
*/
public function getSearchCondition(): SearchCondition
{
if ($this->parent) {
return $this->parent->getSearchCondition();
}
// This the root of the condition so now traverse back up the hierarchy.
// We need to re-create the condition using actual objects.
$rootValuesGroup = new ValuesGroup($this->valuesGroup->getGroupLogical());
$this->normalizeValueGroup($this->valuesGroup, $rootValuesGroup);
$searchCondition = new SearchCondition($this->fieldSet, $rootValuesGroup);
if ($this->order) {
$searchCondition->setOrder(new SearchOrder($this->order));
}
$searchCondition->setPrimaryCondition($this->getPrimaryCondition());
return $searchCondition;
}
private function normalizeValueGroup(ValuesGroup $currentValuesGroup, ValuesGroup $rootValuesGroup): void
{
foreach ($currentValuesGroup->getGroups() as $group) {
$subGroup = new ValuesGroup($group->getGroupLogical());
$this->normalizeValueGroup($group, $subGroup);
$rootValuesGroup->addGroup($subGroup);
}
foreach ($currentValuesGroup->getFields() as $name => $values) {
if ($values instanceof ValuesBagBuilder) {
$values = $values->toValuesBag();
}
$rootValuesGroup->addField($name, $values);
}
}
/**
* Gets the resolved SearchPrimaryCondition (if any).
*
* This method can be used as an alternative to getSearchCondition()
* if you (only) need to get the PrimaryCondition.
*/
public function getPrimaryCondition(): ?SearchPrimaryCondition
{
if (! $this->primaryCondition) {
return null;
}
$rootValuesGroup = new ValuesGroup($this->primaryCondition->valuesGroup->getGroupLogical());
$this->normalizeValueGroup($this->primaryCondition->valuesGroup, $rootValuesGroup);
$primaryCondition = new SearchPrimaryCondition($rootValuesGroup);
if ($this->primaryCondition->order) {
$primaryCondition->setOrder(new SearchOrder($this->primaryCondition->order));
}
return $primaryCondition;
}
public function __serialize(): array
{
throw new \LogicException('Unable serialize a SearchConditionBuilder. Call getSearchCondition() and serialize the SearchCondition itself.');
}
public function __sleep(): array
{
throw new \LogicException('Unable serialize a SearchConditionBuilder. Call getSearchCondition() and serialize the SearchCondition itself.');
}
}