-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathIndexBuilder.php
380 lines (326 loc) · 12.6 KB
/
IndexBuilder.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
declare(strict_types=1);
/*
* Copyright MacFJA
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
namespace MacFJA\RediSearch;
use function count;
use function in_array;
use function is_array;
use function is_float;
use function is_int;
use function is_string;
use function strlen;
use BadMethodCallException;
use InvalidArgumentException;
use MacFJA\RediSearch\Redis\Client;
use MacFJA\RediSearch\Redis\Command\AbstractCommand;
use MacFJA\RediSearch\Redis\Command\AddFieldOptionTrait;
use MacFJA\RediSearch\Redis\Command\Create;
use MacFJA\RediSearch\Redis\Command\CreateCommand\CreateCommandFieldOption;
use MacFJA\RediSearch\Redis\Command\CreateCommand\JSONFieldOption;
use RuntimeException;
/**
* @method IndexBuilder setIndex(string $name)
* @method IndexBuilder withIndex(string $name)
* @method IndexBuilder setStructure(string $type)
* @method IndexBuilder withStructure(string $type)
* @method IndexBuilder setPrefixes(array $prefixes)
* @method IndexBuilder withPrefixes(array $prefixes)
* @method IndexBuilder addPrefixes(string ...$prefixes)
* @method IndexBuilder withAddedPrefixes(string ...$prefixes)
* @method IndexBuilder setFilter(string $filter)
* @method IndexBuilder withFilter(string $filter)
* @method IndexBuilder setDefaultLanguage(string $language)
* @method IndexBuilder withDefaultLanguage(string $language)
* @method IndexBuilder setLanguageField(string $field)
* @method IndexBuilder withLanguageField(string $field)
* @method IndexBuilder setDefaultScore(float $score)
* @method IndexBuilder withDefaultScore(float $score)
* @method IndexBuilder setScoreField(string $field)
* @method IndexBuilder withScoreField(string $field)
* @method IndexBuilder setPayloadField(string $field)
* @method IndexBuilder withPayloadField(string $field)
* @method IndexBuilder setMaxTextFields(bool $active)
* @method IndexBuilder withMaxTextFields(bool $active)
* @method IndexBuilder setTemporary(int $seconds)
* @method IndexBuilder withTemporary(int $seconds)
* @method IndexBuilder setNoOffsets(bool $active)
* @method IndexBuilder withNoOffsets(bool $active)
* @method IndexBuilder setNoHighLight(bool $active)
* @method IndexBuilder withNoHighLight(bool $active)
* @method IndexBuilder setNoFields(bool $active)
* @method IndexBuilder withNoFields(bool $active)
* @method IndexBuilder setNoFrequencies(bool $active)
* @method IndexBuilder withNoFrequencies(bool $active)
* @method IndexBuilder setSkipInitialScan(bool $active)
* @method IndexBuilder withSkipInitialScan(bool $active)
* @method IndexBuilder setStopWords(array $words)
* @method IndexBuilder withStopWords(array $words)
* @method IndexBuilder addStopWords(string ...$words)
* @method IndexBuilder withAddedStopWords(string ...$words)
* @method IndexBuilder setFields(array $fields)
* @method IndexBuilder withFields(array $fields)
* @method IndexBuilder addFields(CreateCommandFieldOption ...$fields)
* @method IndexBuilder withAddedFields(CreateCommandFieldOption ...$fields)
* @method IndexBuilder withAddedTextField(string $name, bool $noStem = false, ?float $weight = null, ?string $phonetic = null, bool $sortable = false, bool $noIndex = false)
* @method IndexBuilder withAddedNumericField(string $name, bool $sortable = false, bool $noIndex = false)
* @method IndexBuilder withAddedGeoField(string $name, bool $noIndex = false)
* @method IndexBuilder withAddedTagField(string $name, ?string $separator = null, bool $sortable = false, bool $noIndex = false)
* @method IndexBuilder withAddedJSONTextField(string $path, string $attribute, bool $noStem = false, ?float $weight = null, ?string $phonetic = null, bool $sortable = false, bool $noIndex = false)
* @method IndexBuilder withAddedJSONNumericField(string $path, string $attribute, bool $sortable = false, bool $noIndex = false)
* @method IndexBuilder withAddedJSONGeoField(string $path, string $attribute, bool $noIndex = false)
* @method IndexBuilder withAddedJSONTagField(string $path, string $attribute, ?string $separator = null, bool $sortable = false, bool $noIndex = false)
*
* @SuppressWarnings(PHPMD.TooManyFields)
*/
class IndexBuilder
{
use AddFieldOptionTrait;
private const IS_ARRAY = ['prefixes', 'stopWords', 'fields'];
/** @var null|string */
private $index;
/** @var null|string */
private $structure;
/** @var array<string> */
private $prefixes = [];
/** @var null|string */
private $filter;
/** @var null|string */
private $defaultLanguage;
/** @var null|string */
private $languageField;
/** @var null|float */
private $defaultScore;
/** @var null|string */
private $scoreField;
/** @var null|string */
private $payloadField;
/** @var bool */
private $maxTextFields = false;
/** @var null|int */
private $temporary;
/** @var bool */
private $noOffsets = false;
/** @var bool */
private $noHighLight = false;
/** @var bool */
private $noFields = false;
/** @var bool */
private $noFrequencies = false;
/** @var bool */
private $skipInitialScan = false;
/** @var null|array<string> */
private $stopWords;
/** @var array<CreateCommandFieldOption> */
private $fields = [];
/**
* @param array<mixed> $arguments
*
* @return $this
*/
public function __call(string $name, array $arguments): self
{
$calls = ['set' => true, 'add' => false, 'withAdded' => false, 'with' => true];
foreach ($calls as $type => $singleArgument) {
$result = $this->doCall($type, $name, true === $singleArgument ? $arguments[0] ?? null : $arguments);
if ($result instanceof IndexBuilder) {
return $result;
}
}
throw new BadMethodCallException(sprintf('Call undefined %s method', $name));
}
public function reset(): self
{
$this->index = null;
$this->structure = null;
$this->prefixes = [];
$this->filter = null;
$this->defaultLanguage = null;
$this->languageField = null;
$this->defaultScore = null;
$this->scoreField = null;
$this->payloadField = null;
$this->maxTextFields = false;
$this->temporary = null;
$this->noOffsets = false;
$this->noHighLight = false;
$this->noFields = false;
$this->noFrequencies = false;
$this->skipInitialScan = false;
$this->stopWords = null;
$this->fields = [];
return $this;
}
public function setNoStopWords(): self
{
$this->stopWords = [];
return $this;
}
public function addField(CreateCommandFieldOption $option): self
{
$this->fields[] = $option;
return $this;
}
public function addJSONField(string $path, CreateCommandFieldOption $option): self
{
$this->fields[$option->getFieldName()] = new JSONFieldOption($path, $option);
return $this;
}
/**
* @return mixed|string
*/
public function create(Client $client, string $rediSearchVersion = AbstractCommand::MIN_IMPLEMENTED_VERSION)
{
$command = $this->getCommand($rediSearchVersion);
$this->reset();
return $client->execute($command);
}
/**
* @throws RuntimeException if the index is not defined
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
public function getCommand(string $rediSearchVersion = AbstractCommand::MIN_IMPLEMENTED_VERSION): Create
{
if (!is_string($this->index)) {
throw new RuntimeException('The index name is missing');
}
$command = new Create($rediSearchVersion);
$command
->setIndex($this->index)
->setMaxTextFields($this->maxTextFields)
->setNoOffsets($this->noOffsets)
->setNoHighLight($this->noHighLight)
->setNoFields($this->noFields)
->setNoFrequencies($this->noFrequencies)
->setSkipInitialScan($this->skipInitialScan)
;
if (is_string($this->structure)) {
$command->setStructure($this->structure);
}
if (count($this->prefixes) > 0) {
$command->setPrefixes(...$this->prefixes);
}
if (is_string($this->filter)) {
$command->setFilter($this->filter);
}
if (is_string($this->defaultLanguage)) {
$command->setDefaultLanguage($this->defaultLanguage);
}
if (is_string($this->languageField)) {
$command->setLanguageField($this->languageField);
}
if (is_float($this->defaultScore)) {
$command->setDefaultScore($this->defaultScore);
}
if (is_string($this->scoreField)) {
$command->setScoreField($this->scoreField);
}
if (is_string($this->payloadField)) {
$command->setPayloadField($this->payloadField);
}
if (is_int($this->temporary)) {
$command->setTemporary($this->temporary);
}
if (is_array($this->stopWords) && count($this->stopWords) > 0) {
$command->setStopWords(...$this->stopWords);
}
if (is_array($this->stopWords) && 0 === count($this->stopWords)) {
$command->setNoStopWords();
}
foreach ($this->fields as $field) {
$command->addField($field);
}
return $command;
}
/**
* @param array<mixed>|mixed $arguments
*
* @return null|$this
*/
private function doCall(string $type, string $name, $arguments): ?self
{
$typeLength = strlen($type);
if (0 === strpos($name, $type) && $name[$typeLength] === strtoupper($name[$typeLength])) {
return $this->{$type.'Call'}(substr($name, $typeLength), $arguments);
}
return null;
}
/**
* @param mixed $argument
*
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedPrivateMethod) -- Called in doCall
*/
private function withCall(string $name, $argument): self
{
$newInstance = clone $this;
return $newInstance->{'set'.$name}($argument);
}
/**
* @param array<mixed> $arguments
*
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedPrivateMethod) -- Called in doCall
*/
private function withAddedCall(string $name, array $arguments): self
{
$newInstance = clone $this;
return $newInstance->{'add'.$name}(...$arguments);
}
/**
* @param mixed $argument
*
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedPrivateMethod) -- Called in doCall
*/
private function setCall(string $name, $argument): self
{
$propertyName = lcfirst($name);
if (property_exists($this, $propertyName)) {
$this->{$propertyName} = $argument;
return $this;
}
throw new BadMethodCallException(sprintf('Call undefined set%s method', $name));
}
/**
* @param array<mixed> $arguments
*
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedPrivateMethod) -- Called in doCall
*/
private function addCall(string $name, array $arguments): self
{
$propertyName = lcfirst($name);
if (!in_array($propertyName, self::IS_ARRAY, true)) {
throw new BadMethodCallException(sprintf('Call undefined add%s method', $name));
}
if (0 === count($arguments)) {
throw new InvalidArgumentException(sprintf('add%s method need at least one parameter', $name));
}
if (null === $this->{$propertyName}) {
$this->{$propertyName} = [];
}
array_push($this->{$propertyName}, ...$arguments);
return $this;
}
}