-
Notifications
You must be signed in to change notification settings - Fork 347
/
Copy pathTypesenseEngine.php
632 lines (548 loc) · 18 KB
/
TypesenseEngine.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
<?php
namespace Laravel\Scout\Engines;
use Exception;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Collection;
use Illuminate\Support\LazyCollection;
use Laravel\Scout\Builder;
use stdClass;
use Typesense\Client as Typesense;
use Typesense\Collection as TypesenseCollection;
use Typesense\Exceptions\TypesenseClientError;
class TypesenseEngine extends Engine
{
/**
* The Typesense client instance.
*
* @var \Typesense\Client
*/
protected Typesense $typesense;
/**
* The specified search parameters.
*
* @var array
*/
protected array $searchParameters = [];
/**
* The maximum number of results that can be fetched per page.
*
* @var int
*/
private int $maxPerPage = 250;
/**
* The maximum number of results that can be fetched during pagination.
*
* @var int
*/
protected int $maxTotalResults;
/**
* Create new Typesense engine instance.
*
* @param Typesense $typesense
*/
public function __construct(Typesense $typesense, int $maxTotalResults)
{
$this->typesense = $typesense;
$this->maxTotalResults = $maxTotalResults;
}
/**
* Update the given model in the index.
*
* @param \Illuminate\Database\Eloquent\Collection<int, Model>|Model[] $models
*
* @throws \Http\Client\Exception
* @throws \JsonException
* @throws \Typesense\Exceptions\TypesenseClientError
*
* @noinspection NotOptimalIfConditionsInspection
*/
public function update($models)
{
if ($models->isEmpty()) {
return;
}
$collection = $this->getOrCreateCollectionFromModel($models->first());
if ($this->usesSoftDelete($models->first()) && config('scout.soft_delete', false)) {
$models->each->pushSoftDeleteMetadata();
}
$objects = $models->map(function ($model) {
if (empty($searchableData = $model->toSearchableArray())) {
return null;
}
return array_merge(
$searchableData,
$model->scoutMetadata(),
);
})->filter()->values()->all();
if (! empty($objects)) {
$this->importDocuments(
$collection,
$objects
);
}
}
/**
* Import the given documents into the index.
*
* @param TypesenseCollection $collectionIndex
* @param array $documents
* @param string $action
* @return \Illuminate\Support\Collection
*
* @throws \JsonException
* @throws \Typesense\Exceptions\TypesenseClientError
* @throws \Http\Client\Exception
*/
protected function importDocuments(TypesenseCollection $collectionIndex, array $documents, string $action = 'upsert'): Collection
{
$importedDocuments = $collectionIndex->getDocuments()->import($documents, ['action' => $action]);
$results = [];
foreach ($importedDocuments as $importedDocument) {
if (! $importedDocument['success']) {
throw new TypesenseClientError("Error importing document: {$importedDocument['error']}");
}
$results[] = $this->createImportSortingDataObject(
$importedDocument
);
}
return collect($results);
}
/**
* Create an import sorting data object for a given document.
*
* @param array $document
* @return \stdClass
*
* @throws \JsonException
*/
protected function createImportSortingDataObject($document)
{
$data = new stdClass;
$data->code = $document['code'] ?? 0;
$data->success = $document['success'];
$data->error = $document['error'] ?? null;
$data->document = json_decode($document['document'] ?? '[]', true, 512, JSON_THROW_ON_ERROR);
return $data;
}
/**
* Remove the given model from the index.
*
* @param \Illuminate\Database\Eloquent\Collection $models
* @return void
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
public function delete($models)
{
$models->each(function (Model $model) {
$this->deleteDocument(
$this->getOrCreateCollectionFromModel($model),
$model->getScoutKey()
);
});
}
/**
* Delete a document from the index.
*
* @param TypesenseCollection $collectionIndex
* @param mixed $modelId
* @return array
*
* @throws \Typesense\Exceptions\ObjectNotFound
* @throws \Typesense\Exceptions\TypesenseClientError
* @throws \Http\Client\Exception
*/
protected function deleteDocument(TypesenseCollection $collectionIndex, $modelId): array
{
$document = $collectionIndex->getDocuments()[(string) $modelId];
try {
$document->retrieve();
return $document->delete();
} catch (Exception $exception) {
return [];
}
}
/**
* Perform the given search on the engine.
*
* @param \Laravel\Scout\Builder $builder
* @return mixed
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
public function search(Builder $builder)
{
// If the limit exceeds Typesense's capabilities, perform a paginated search...
if ($builder->limit >= $this->maxPerPage) {
return $this->performPaginatedSearch($builder);
}
return $this->performSearch(
$builder,
$this->buildSearchParameters($builder, 1, $builder->limit ?? $this->maxPerPage)
);
}
/**
* Perform the given search on the engine with pagination.
*
* @param \Laravel\Scout\Builder $builder
* @param int $perPage
* @param int $page
* @return mixed
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
public function paginate(Builder $builder, $perPage, $page)
{
return $this->performSearch(
$builder,
$this->buildSearchParameters($builder, $page, $perPage)
);
}
/**
* Perform the given search on the engine.
*
* @param \Laravel\Scout\Builder $builder
* @param array $options
* @return mixed
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
protected function performSearch(Builder $builder, array $options = []): mixed
{
$documents = $this->getOrCreateCollectionFromModel($builder->model, false)->getDocuments();
if ($builder->callback) {
return call_user_func($builder->callback, $documents, $builder->query, $options);
}
return $documents->search($options);
}
/**
* Perform a paginated search on the engine.
*
* @param \Laravel\Scout\Builder $builder
* @return mixed
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
protected function performPaginatedSearch(Builder $builder)
{
$page = 1;
$limit = min($builder->limit ?? $this->maxPerPage, $this->maxPerPage, $this->maxTotalResults);
$remainingResults = min($builder->limit ?? $this->maxTotalResults, $this->maxTotalResults);
$results = new Collection;
while ($remainingResults > 0) {
$searchResults = $this->performSearch(
$builder,
$this->buildSearchParameters($builder, $page, $limit)
);
$results = $results->concat($searchResults['hits'] ?? []);
if ($page === 1) {
$totalFound = $searchResults['found'] ?? 0;
}
$remainingResults -= $limit;
$page++;
if (count($searchResults['hits'] ?? []) < $limit) {
break;
}
}
return [
'hits' => $results->all(),
'found' => $results->count(),
'out_of' => $totalFound,
'page' => 1,
'request_params' => $this->buildSearchParameters($builder, 1, $builder->limit ?? $this->maxPerPage),
];
}
/**
* Build the search parameters for a given Scout query builder.
*
* @param \Laravel\Scout\Builder $builder
* @param int $page
* @param int|null $perPage
* @return array
*/
public function buildSearchParameters(Builder $builder, int $page, int|null $perPage): array
{
$parameters = [
'q' => $builder->query,
'query_by' => config('scout.typesense.model-settings.'.get_class($builder->model).'.search-parameters.query_by') ?? '',
'filter_by' => $this->filters($builder),
'per_page' => $perPage,
'page' => $page,
'highlight_start_tag' => '<mark>',
'highlight_end_tag' => '</mark>',
'snippet_threshold' => 30,
'exhaustive_search' => false,
'use_cache' => false,
'cache_ttl' => 60,
'prioritize_exact_match' => true,
'enable_overrides' => true,
'highlight_affix_num_tokens' => 4,
];
if (method_exists($builder->model, 'typesenseSearchParameters')) {
$parameters = array_merge($parameters, $builder->model->typesenseSearchParameters());
}
if (! empty($builder->options)) {
$parameters = array_merge($parameters, $builder->options);
}
if (! empty($builder->orders)) {
if (! empty($parameters['sort_by'])) {
$parameters['sort_by'] .= ',';
} else {
$parameters['sort_by'] = '';
}
$parameters['sort_by'] .= $this->parseOrderBy($builder->orders);
}
return $parameters;
}
/**
* Prepare the filters for a given search query.
*
* @param \Laravel\Scout\Builder $builder
* @return string
*/
protected function filters(Builder $builder): string
{
$whereFilter = collect($builder->wheres)
->map(fn ($value, $key) => $this->parseWhereFilter($value, $key))
->values()
->implode(' && ');
$whereInFilter = collect($builder->whereIns)
->map(fn ($value, $key) => $this->parseWhereInFilter($value, $key))
->values()
->implode(' && ');
return $whereFilter.(
($whereFilter !== '' && $whereInFilter !== '') ? ' && ' : ''
).$whereInFilter;
}
/**
* Create a "where" filter string.
*
* @param array|string $value
* @param string $key
* @return string
*/
protected function parseWhereFilter(array|string $value, string $key): string
{
return is_array($value)
? sprintf('%s:%s', $key, implode('', $value))
: sprintf('%s:=%s', $key, $value);
}
/**
* Create a "where in" filter string.
*
* @param array $value
* @param string $key
* @return string
*/
protected function parseWhereInFilter(array $value, string $key): string
{
return sprintf('%s:=%s', $key, '['.implode(', ', $value).']');
}
/**
* Parse the order by fields for the query.
*
* @param array $orders
* @return string
*/
protected function parseOrderBy(array $orders): string
{
$orderBy = [];
foreach ($orders as $order) {
$orderBy[] = $order['column'].':'.$order['direction'];
}
return implode(',', $orderBy);
}
/**
* Pluck and return the primary keys of the given results.
*
* @param mixed $results
* @return \Illuminate\Support\Collection
*/
public function mapIds($results)
{
return collect($results['hits'])
->pluck('document.id')
->values();
}
/**
* Map the given results to instances of the given model.
*
* @param \Laravel\Scout\Builder $builder
* @param mixed $results
* @param \Illuminate\Database\Eloquent\Model $model
* @return \Illuminate\Database\Eloquent\Collection
*/
public function map(Builder $builder, $results, $model)
{
if ($this->getTotalCount($results) === 0) {
return $model->newCollection();
}
$hits = isset($results['grouped_hits']) && ! empty($results['grouped_hits'])
? $results['grouped_hits']
: $results['hits'];
$pluck = isset($results['grouped_hits']) && ! empty($results['grouped_hits'])
? 'hits.0.document.id'
: 'document.id';
$objectIds = collect($hits)
->pluck($pluck)
->values()
->all();
$objectIdPositions = array_flip($objectIds);
return $model->getScoutModelsByIds($builder, $objectIds)
->filter(static function ($model) use ($objectIds) {
return in_array($model->getScoutKey(), $objectIds, false);
})
->map(static function ($model) use ($hits, $objectIdPositions) {
$result = $hits[$objectIdPositions[$model->getScoutKey()]] ?? [];
foreach ($result as $key => $value) {
if ($key === 'document') {
continue;
}
$model->withScoutMetadata($key, $value);
}
return $model;
})
->sortBy(static function ($model) use ($objectIdPositions) {
return $objectIdPositions[$model->getScoutKey()];
})
->values();
}
/**
* Map the given results to instances of the given model via a lazy collection.
*
* @param \Laravel\Scout\Builder $builder
* @param mixed $results
* @param \Illuminate\Database\Eloquent\Model $model
* @return \Illuminate\Support\LazyCollection
*/
public function lazyMap(Builder $builder, $results, $model)
{
if ((int) ($results['found'] ?? 0) === 0) {
return LazyCollection::make($model->newCollection());
}
$objectIds = collect($results['hits'])
->pluck('document.id')
->values()
->all();
$objectIdPositions = array_flip($objectIds);
return $model->queryScoutModelsByIds($builder, $objectIds)
->cursor()
->filter(static function ($model) use ($objectIds) {
return in_array($model->getScoutKey(), $objectIds, false);
})
->sortBy(static function ($model) use ($objectIdPositions) {
return $objectIdPositions[$model->getScoutKey()];
})
->values();
}
/**
* Get the total count from a raw result returned by the engine.
*
* @param mixed $results
* @return int
*/
public function getTotalCount($results)
{
return (int) ($results['found'] ?? 0);
}
/**
* Flush all the model's records from the engine.
*
* @param \Illuminate\Database\Eloquent\Model $model
*
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\TypesenseClientError
*/
public function flush($model)
{
$this->getOrCreateCollectionFromModel($model)->delete();
}
/**
* Create a search index.
*
* @param string $name
* @param array $options
* @return void
*
* @throws \Exception
*/
public function createIndex($name, array $options = [])
{
throw new Exception('Typesense indexes are created automatically upon adding objects.');
}
/**
* Delete a search index.
*
* @param string $name
* @return array
*
* @throws \Typesense\Exceptions\TypesenseClientError
* @throws \Http\Client\Exception
* @throws \Typesense\Exceptions\ObjectNotFound
*/
public function deleteIndex($name)
{
return $this->typesense->getCollections()->{$name}->delete();
}
/**
* Get collection from model or create new one.
*
* @param \Illuminate\Database\Eloquent\Model $model
* @return TypesenseCollection
*
* @throws \Typesense\Exceptions\TypesenseClientError
* @throws \Http\Client\Exception
*/
protected function getOrCreateCollectionFromModel($model, bool $indexOperation = true): TypesenseCollection
{
$method = $indexOperation ? 'indexableAs' : 'searchableAs';
$collectionName = $model->{$method}();
$collection = $this->typesense->getCollections()->{$collectionName};
// Determine if the collection exists in Typesense...
try {
$collection->retrieve();
// No error means this collection exists on the server...
$collection->setExists(true);
return $collection;
} catch (TypesenseClientError $e) {
//
}
$schema = config('scout.typesense.model-settings.'.get_class($model).'.collection-schema') ?? [];
if (method_exists($model, 'typesenseCollectionSchema')) {
$schema = $model->typesenseCollectionSchema();
}
if (! isset($schema['name'])) {
$schema['name'] = $model->searchableAs();
}
$this->typesense->getCollections()->create($schema);
$collection->setExists(true);
return $collection;
}
/**
* Determine if model uses soft deletes.
*
* @param \Illuminate\Database\Eloquent\Model $model
* @return bool
*/
protected function usesSoftDelete($model): bool
{
return in_array(SoftDeletes::class, class_uses_recursive($model), true);
}
/**
* Dynamically proxy missing methods to the Typesense client instance.
*
* @param string $method
* @param array $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
return $this->typesense->$method(...$parameters);
}
}